Home
last modified time | relevance | path

Searched refs:CountLeadingZeros (Results 1 – 3 of 3) 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/operations/
DSoftmax.cpp149 int32_t headroom_plus_one = tflite::CountLeadingZeros(fixed_sum_of_exps); in softmaxQuant8Impl()