Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dfixed_point.c103 int CountLeadingZeroBits(uint32_t x) { in CountLeadingZeroBits() function
124 …return x >= 0 ? CountLeadingZeroBits((uint32_t)x) - 1 : x != INT32_MIN ? CountLeadingZeroBits(2 * … in CountLeadingSignBits()
167 int leading_zreos_plus_one = CountLeadingZeroBits((uint32_t)x); in ComputerReciprocal()