Searched refs:bmp1 (Results 1 – 1 of 1) sorted by relevance
174 ice_and_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, in ice_and_bitmap() argument182 dst[i] = bmp1[i] & bmp2[i]; in ice_and_bitmap()193 dst[i] = (dst[i] & ~mask) | ((bmp1[i] & bmp2[i]) & mask); in ice_and_bitmap()211 ice_or_bitmap(ice_bitmap_t *dst, const ice_bitmap_t *bmp1, in ice_or_bitmap() argument219 dst[i] = bmp1[i] | bmp2[i]; in ice_or_bitmap()227 dst[i] = (dst[i] & ~mask) | ((bmp1[i] | bmp2[i]) & mask); in ice_or_bitmap()250 dst[i] = bmp1[i] ^ bmp2[i]; in ice_xor_bitmap()258 dst[i] = (dst[i] & ~mask) | ((bmp1[i] ^ bmp2[i]) & mask); in ice_xor_bitmap()281 dst[i] = bmp1[i] & ~bmp2[i]; in ice_andnot_bitmap()441 if (bmp1[i] != bmp2[i]) in ice_cmp_bitmap()[all …]