Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dfixed_point.c97 int32_t MaskIfNonZero(int32_t a) { return a ? BitNot(0) : 0; } in MaskIfNonZero() function
99 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()