Home
last modified time | relevance | path

Searched refs:bmp2 (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/dev/ice/
H A Dice_bitops.h212 const ice_bitmap_t *bmp2, u16 size) in ice_and_bitmap() argument
219 dst[i] = bmp1[i] & bmp2[i]; in ice_and_bitmap()
230 dst[i] = (dst[i] & ~mask) | ((bmp1[i] & bmp2[i]) & mask); in ice_and_bitmap()
249 const ice_bitmap_t *bmp2, u16 size) in ice_or_bitmap() argument
256 dst[i] = bmp1[i] | bmp2[i]; in ice_or_bitmap()
264 dst[i] = (dst[i] & ~mask) | ((bmp1[i] | bmp2[i]) & mask); in ice_or_bitmap()
280 const ice_bitmap_t *bmp2, u16 size) in ice_xor_bitmap() argument
287 dst[i] = bmp1[i] ^ bmp2[i]; in ice_xor_bitmap()
295 dst[i] = (dst[i] & ~mask) | ((bmp1[i] ^ bmp2[i]) & mask); in ice_xor_bitmap()
311 const ice_bitmap_t *bmp2, u16 size) in ice_andnot_bitmap() argument
[all …]