HomeSort by relevance Sort by last modified time
    Searched full:highbit (Results 1 - 25 of 27) sorted by null

1 2

  /external/icu4c/layoutex/
LXUtilities.h 19 static le_int8 highBit(le_int32 value);
LXUtilities.cpp 17 le_int8 LXUtilities::highBit(le_int32 value)
55 le_int32 power = 1 << highBit(count);
  /external/icu4c/layout/
OpenTypeUtilities.h 22 static le_int8 highBit(le_int32 value);
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);
CoverageTables.cpp 45 le_uint8 bit = OpenTypeUtilities::highBit(count);
PairPositioningSubtables.cpp 143 le_uint8 bit = OpenTypeUtilities::highBit(recordCount);
KernTable.cpp 112 entrySelector = OpenTypeUtilities::highBit(nPairs);
  /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...]
  /external/chromium/third_party/icu/source/test/letest/
cmaps.cpp 21 le_int8 highBit(le_uint32 value)
167 le_uint8 bit = highBit(nGroups);
PortableFontInstance.h 57 static le_int8 highBit(le_int32 value);
PortableFontInstance.cpp 31 le_int8 PortableFontInstance::highBit(le_int32 value)
111 fDirPower = 1 << highBit(numTables);
  /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.h 57 static le_int8 highBit(le_int32 value);
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/openssl/crypto/conf/
keysets.pl 15 $HIGHBIT=0x1000;
31 $v|=$HIGHBIT if ($c =~/[\x80-\xff]/);
49 $v|=$HIGHBIT if ($c =~/[\x80-\xff]/);
128 #define CONF_HIGHBIT $HIGHBIT
  /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);
  /external/icu4c/extra/scrptrun/
scrptrun.h 85 static int8_t highBit(int32_t value);
scrptrun.cpp 44 const int32_t ScriptRun::pairedCharPower = 1 << highBit(pairedCharCount);
47 int8_t ScriptRun::highBit(int32_t value)
  /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...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/arm-eabi/bin/
as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/
arm-eabi-as 

Completed in 237 milliseconds

1 2