HomeSort by relevance Sort by last modified time
    Searched defs:highBit (Results 1 - 14 of 14) sorted by null

  /external/icu4c/layout/
OpenTypeUtilities.cpp 18 le_int8 OpenTypeUtilities::highBit(le_int32 value)
56 le_uint8 bit = highBit(recordCount);
83 le_uint8 bit = highBit(recordCount);
114 le_int32 power = 1 << highBit(count);
136 le_int32 power = 1 << highBit(count);
  /external/icu4c/layoutex/
LXUtilities.cpp 17 le_int8 LXUtilities::highBit(le_int32 value)
55 le_int32 power = 1 << highBit(count);
  /external/chromium/third_party/icu/source/test/letest/
cmaps.cpp 21 le_int8 highBit(le_uint32 value)
167 le_uint8 bit = highBit(nGroups);
PortableFontInstance.cpp 31 le_int8 PortableFontInstance::highBit(le_int32 value)
111 fDirPower = 1 << highBit(numTables);
  /external/icu4c/extra/scrptrun/
scrptrun.cpp 44 const int32_t ScriptRun::pairedCharPower = 1 << highBit(pairedCharCount);
47 int8_t ScriptRun::highBit(int32_t value)
  /external/icu4c/samples/layout/
cmaps.cpp 27 le_uint8 highBit(le_uint32 value)
173 le_uint8 bit = highBit(nGroups);
  /external/icu4c/test/letest/
cmaps.cpp 21 le_int8 highBit(le_uint32 value)
167 le_uint8 bit = highBit(nGroups);
PortableFontInstance.cpp 31 le_int8 PortableFontInstance::highBit(le_int32 value)
111 fDirPower = 1 << highBit(numTables);
  /dalvik/vm/alloc/
HeapBitmap.h 124 unsigned long highBit = 1 << (HB_BITS_PER_WORD - 1);
130 word &= ~(highBit >> shift);
162 unsigned long highBit = 1 << (HB_BITS_PER_WORD - 1);
169 word &= ~(highBit >> shift);
  /external/chromium/third_party/icu/source/common/
usc_impl.c 56 static int8_t highBit(int32_t value);
120 highBit(int32_t value)
160 int32_t pairedCharPower = 1 << highBit(pairedCharCount);
  /external/icu4c/common/
usc_impl.c 56 static int8_t highBit(int32_t value);
120 highBit(int32_t value)
160 int32_t pairedCharPower = 1 << highBit(pairedCharCount);
  /libcore/luni/src/main/native/
cbigint.cpp 515 int32_t highBit;
519 highBit = highestSetBit (arg + length);
520 if (highBit)
521 return highBit + 64 * length;
570 int32_t highBit;
586 highBit = highestSetBit (arg);
587 if (highBit <= 53)
589 highBit = 53 - highBit;
590 mantissa = *arg << highBit;
    [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 593 int highBit = e.hash & oldCapacity;
595 newTable[j | highBit] = e;
598 if (nextHighBit != highBit) {
604 highBit = nextHighBit;
    [all...]
Hashtable.java 526 int highBit = e.hash & oldCapacity;
528 newTable[j | highBit] = e;
531 if (nextHighBit != highBit) {
537 highBit = nextHighBit;
    [all...]

Completed in 1139 milliseconds