OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CountLeadingZeros
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/v8/src/arm64/
utils-arm64.cc
16
int
CountLeadingZeros
(uint64_t value, int width) {
33
return
CountLeadingZeros
(value, width) - 1;
35
return
CountLeadingZeros
(~value, width) - 1;
utils-arm64.h
56
int
CountLeadingZeros
(uint64_t value, int width);
assembler-arm64.cc
85
int index =
CountLeadingZeros
(list_, kRegListSizeInBits);
[
all
...]
simulator-arm64.cc
[
all
...]
macro-assembler-arm64.cc
455
int shift_high =
CountLeadingZeros
(imm, reg_size);
[
all
...]
/art/compiler/dex/quick/arm64/
utility_arm64.cc
160
static int
CountLeadingZeros
(bool is_wide, uint64_t value) {
211
unsigned lead_zero =
CountLeadingZeros
(is_wide, value);
212
unsigned lead_one =
CountLeadingZeros
(is_wide, ~value);
[
all
...]
Completed in 152 milliseconds