Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DSparseBitSet.cpp102 int SparseBitSet::CountLeadingZeros(element x) { in CountLeadingZeros() function in minikin::SparseBitSet
116 return (fromIndex & ~kElMask) + CountLeadingZeros(e); in nextSetBit()
121 return (fromIndex & ~kPageMask) + (j << kLogBitsPerEl) + CountLeadingZeros(e); in nextSetBit()
134 return (page << kLogValuesPerPage) + (j << kLogBitsPerEl) + CountLeadingZeros(e); in nextSetBit()
/frameworks/minikin/include/minikin/
DSparseBitSet.h81 static int CountLeadingZeros(element x);
/frameworks/ml/nn/common/
DQuantUtils.h59 int CountLeadingZeros(T integer_input) { in CountLeadingZeros() function
97 const unsigned max_left_shift_bits = CountLeadingZeros(static_cast<uint32_t>(input)) - 1; in GetInvSqrtQuantizedMultiplierExp()
/frameworks/ml/nn/common/operations/
DSoftmax.cpp158 int32_t headroom_plus_one = tflite::CountLeadingZeros(fixed_sum_of_exps); in softmaxQuant8Impl()