OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:countLeadingZeros32
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
BitwiseOperations.h
53
ALWAYS_INLINE uint32_t
countLeadingZeros32
(uint32_t x)
77
ALWAYS_INLINE uint32_t
countLeadingZeros32
(uint32_t x)
95
ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return
countLeadingZeros32
(x); }
PartitionAllocTest.cpp
699
EXPECT_EQ(32u, WTF::
countLeadingZeros32
(0));
700
EXPECT_EQ(31u, WTF::
countLeadingZeros32
(1));
701
EXPECT_EQ(1u, WTF::
countLeadingZeros32
(1 << 30));
702
EXPECT_EQ(0u, WTF::
countLeadingZeros32
(1 << 31));
/external/qemu/fpu/
softfloat-macros.h
628
static int8
countLeadingZeros32
( uint32_t a )
694
shiftCount +=
countLeadingZeros32
( a );
softfloat.c
263
shiftCount =
countLeadingZeros32
( aSig ) - 8;
380
shiftCount =
countLeadingZeros32
( zSig ) - 1;
[
all
...]
Completed in 61 milliseconds