Searched refs:MaskIfNonZero (Results 1 – 1 of 1) sorted by relevance
97 int32_t MaskIfNonZero(int32_t a) { return a ? BitNot(0) : 0; } in MaskIfNonZero() function99 int32_t MaskIfZero(int32_t a) { return MaskIfNonZero(!a); } in MaskIfZero()101 int32_t MaskIfLessThan(int32_t a, int32_t b) { return MaskIfNonZero((a < b)); } in MaskIfLessThan()193 *result = BitsSelect(MaskIfNonZero(BitAnd(remainder, (1 << (uint32_t)total_shift))), in exp_barrel_shifter()