Searched refs:bmp2 (Results 1 – 1 of 1) sorted by relevance
212 const ice_bitmap_t *bmp2, u16 size) in ice_and_bitmap() argument219 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() argument256 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() argument287 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 …]