Lines Matching defs:fill

89  * @len:	Count of bits to fill
188 * @fill: Destination bitmap to be filled with current match result
200 * working bitmap, @fill.
214 static int nft_pipapo_avx2_lookup_4b_2(unsigned long *map, unsigned long *fill,
243 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
263 * @fill: Destination bitmap to be filled with current match result
277 static int nft_pipapo_avx2_lookup_4b_4(unsigned long *map, unsigned long *fill,
320 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
340 * @fill: Destination bitmap to be filled with current match result
354 static int nft_pipapo_avx2_lookup_4b_8(unsigned long *map, unsigned long *fill,
415 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
436 * @fill: Destination bitmap to be filled with current match result
450 static int nft_pipapo_avx2_lookup_4b_12(unsigned long *map, unsigned long *fill,
506 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
526 * @fill: Destination bitmap to be filled with current match result
540 static int nft_pipapo_avx2_lookup_4b_32(unsigned long *map, unsigned long *fill,
642 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
662 * @fill: Destination bitmap to be filled with current match result
676 static int nft_pipapo_avx2_lookup_8b_1(unsigned long *map, unsigned long *fill,
700 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
720 * @fill: Destination bitmap to be filled with current match result
734 static int nft_pipapo_avx2_lookup_8b_2(unsigned long *map, unsigned long *fill,
765 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
785 * @fill: Destination bitmap to be filled with current match result
799 static int nft_pipapo_avx2_lookup_8b_4(unsigned long *map, unsigned long *fill,
840 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
861 * @fill: Destination bitmap to be filled with current match result
875 static int nft_pipapo_avx2_lookup_8b_6(unsigned long *map, unsigned long *fill,
926 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
947 * @fill: Destination bitmap to be filled with current match result
961 static int nft_pipapo_avx2_lookup_8b_16(unsigned long *map, unsigned long *fill,
1019 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last);
1040 * @fill: Destination bitmap to be filled with current match result
1054 static int nft_pipapo_avx2_lookup_slow(unsigned long *map, unsigned long *fill,
1072 b = pipapo_refill(map, bsize, f->rules, fill, f->mt, last);
1136 unsigned long *res, *fill;
1162 fill = scratch->map + (map_index ? 0 : m->bsize_max);
1173 (ret = nft_pipapo_avx2_lookup_##b##b_##n(res, fill, f, \
1189 ret = nft_pipapo_avx2_lookup_slow(res, fill, f,
1205 ret = nft_pipapo_avx2_lookup_slow(res, fill, f,
1228 swap(res, fill);