HomeSort by relevance Sort by last modified time
    Searched refs:CountLeadingZeroBits32 (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/
bits.h 63 ALWAYS_INLINE uint32_t CountLeadingZeroBits32(uint32_t x) {
85 ALWAYS_INLINE uint32_t CountLeadingZeroBits32(uint32_t x) {
104 return CountLeadingZeroBits32(x);
bits_unittest.cc 65 EXPECT_EQ(32u, CountLeadingZeroBits32(0u));
66 EXPECT_EQ(31u, CountLeadingZeroBits32(1u));
67 EXPECT_EQ(1u, CountLeadingZeroBits32(1u << 30));
68 EXPECT_EQ(0u, CountLeadingZeroBits32(1u << 31));
  /external/pdfium/third_party/base/
bits.h 64 ALWAYS_INLINE uint32_t CountLeadingZeroBits32(uint32_t x) {
86 ALWAYS_INLINE uint32_t CountLeadingZeroBits32(uint32_t x) {
105 return CountLeadingZeroBits32(x);

Completed in 205 milliseconds