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

/external/chromium_org/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 Dutils-vixl.cc60 int CountLeadingZeros(uint64_t value, int width) { function in namespace:vixl
75 return CountLeadingZeros(value, width) - 1;
77 return CountLeadingZeros(~value, width) - 1;
/external/valgrind/main/VEX/priv/
H A Dhost_arm64_isel.c1135 // CountLeadingZeros CountTrailingZeros CountSetBits isImmLogical
1167 static Int CountLeadingZeros(ULong value, Int width) function
1270 UInt lead_zero = CountLeadingZeros(value, width);
1271 UInt lead_one = CountLeadingZeros(~value, width);

Completed in 195 milliseconds