Searched defs:CountLeadingZeros (Results 1 - 5 of 5) sorted by relevance

/external/libcxx/test/support/
H A Dhexfloat.h26 static int CountLeadingZeros(unsigned long long n) { function in class:hexfloat
43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4);
/external/v8/src/arm64/
H A Dutils-arm64.cc16 int CountLeadingZeros(uint64_t value, int width) { function in namespace:v8::internal
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width) - 1;
/external/vixl/src/
H A Dcompiler-intrinsics-vixl.h121 inline int CountLeadingZeros(V value, int width = (sizeof(V) * 8)) { function in namespace:vixl
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
H A Dreference_ops.h52 int CountLeadingZeros(T integer_input) { function in namespace:tflite::reference_ops
2180 CountLeadingZeros(static_cast<uint32>(fixed_sum_of_exps));
/external/valgrind/VEX/priv/
H A Dhost_arm64_isel.c972 // CountLeadingZeros CountTrailingZeros CountSetBits isImmLogical
1004 static Int CountLeadingZeros(ULong value, Int width) function
1107 UInt lead_zero = CountLeadingZeros(value, width);
1108 UInt lead_one = CountLeadingZeros(~value, width);

Completed in 496 milliseconds