Searched refs:bmp1 (Results 1 – 1 of 1) sorted by relevance
211 ice_and_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, 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()248 ice_or_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, 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()279 ice_xor_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, 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()310 ice_andnot_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, in ice_andnot_bitmap() argument[all …]