Searched refs:highBit (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DOpenTypeUtilities.h47 static le_int8 highBit(le_int32 value);
H A DOpenTypeUtilities.cpp43 le_int8 OpenTypeUtilities::highBit(le_int32 value) function in class:OpenTypeUtilities
85 le_uint8 bit = highBit(recordCount);
124 le_uint8 bit = highBit(recordCount);
155 le_int32 power = 1 << highBit(count);
177 le_int32 power = 1 << highBit(count);
H A DCoverageTables.cpp70 le_uint8 bit = OpenTypeUtilities::highBit(count);
H A DKernTable.cpp140 entrySelector = OpenTypeUtilities::highBit(nPairs);
H A DPairPositioningSubtables.cpp189 le_uint8 bit = OpenTypeUtilities::highBit(recordCount);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBitType.java85 if ((val & highBit(sizeInBits)) != 0) {
105 private static long highBit(int sizeInBits) { method in class:BasicBitType
/openjdk7/jdk/src/share/classes/sun/font/
H A DScriptRun.java290 private static final byte highBit(int n) method in class:ScriptRun
377 private static final int pairedCharPower = 1 << highBit(pairedChars.length);
H A DCMap.java946 int highBit =0; field in class:CMap.CMapFormat12
976 highBit += 16;
981 highBit += 8;
986 highBit += 4;
991 highBit += 2;
996 highBit += 1;
999 power = 1 << highBit;
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java582 int highBit = 1 << ((bitLength+31) & 0x1f); // High bit of high int
583 int highMask = (highBit << 1) - 1; // Bits to keep in high int
589 temp[0] = (temp[0] & highMask) | highBit; // Ensure exact length

Completed in 131 milliseconds