Searched refs:lsb (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DRegisterDecoder.java35 boolean lsb = (0x1 & num) != 0;
36 if (lsb)
49 boolean lsb = (0x1 & num) != 0;
50 if (lsb)
60 regNum &= 0x1F; // mask out all but lsb 5 bits
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DUUIDEncodingAlgorithm.java105 final String toUUIDString(long msb, long lsb) { argument
109 digits(lsb >> 48, 4) + "-" +
110 digits(lsb, 12));
/openjdk7/jdk/src/share/classes/java/util/
H A DUUID.java106 long lsb = 0;
111 lsb = (lsb << 8) | (data[i] & 0xff);
113 this.leastSigBits = lsb;
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java1070 * LSBCacheEntry is used to cache the left side bearing (lsb) for
1076 // Used to indicate a particular entry in lsb has not been set.
1078 // Used in creating a GlyphVector to get the lsb
1103 byte lsb = lsbCache[index];
1104 if (lsb == UNSET) {
1107 lsb = (byte) gv.getGlyphPixelBounds(0, frc, 0f, 0f).x;
1108 if (lsb < 0) {
1118 lsb++;
1121 lsbCache[index] = lsb;
1123 return lsb;
[all...]
H A DMenuItemLayoutHelper.java162 int lsb = SwingUtilities2.getLeftSideBearing(mi, fm, str);
163 if (lsb < 0) {
164 return -lsb;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsplugin.c386 cmsUInt8Number msb, lsb; local
388 lsb = (cmsUInt8Number) (fixed8 & 0xff);
391 return (cmsFloat64Number) ((cmsFloat64Number) msb + ((cmsFloat64Number) lsb / 256.0));
/openjdk7/jdk/make/common/shared/
H A DSanity.gmk98 elif [ -f /etc/lsb-release ] ; then \
99 $(EGREP) DISTRIB_ID /etc/lsb-release | $(SED) -e 's@.*DISTRIB_ID=\(.*\)@\1@'; \
106 elif [ -f /etc/lsb-release ] ; then \
107 $(EGREP) DISTRIB_RELEASE /etc/lsb-release | $(SED) -e 's@.*DISTRIB_RELEASE=\(.*\)@\1@'; \
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingUtilities.java975 int lsb = 0;
1005 lsb = SwingUtilities2.getLeftSideBearing(c, fm, text);
1006 if (lsb < 0) {
1007 // If lsb is negative, add it to the width and later
1012 // callers would have to account for negative lsb
1017 textR.width -= lsb;
1113 if (lsb < 0) {
1114 // lsb is negative. Shift the x location so that the text is
1116 textR.x -= lsb;
1118 textR.width += lsb;
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontconfig.h576 FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
579 FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
582 FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java2365 @SuppressWarnings("deprecation") int lsb = lowestSetBit - 2;
2366 if (lsb == -2) { // lowestSetBit not initialized yet
2367 lsb = 0;
2369 lsb -= 1;
2375 lsb += (i << 5) + Integer.numberOfTrailingZeros(b);
2377 lowestSetBit = lsb + 2;
2379 return lsb;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMainMixer.java259 int lsb = (data[ix++] & 0xFF);
260 slotPath[i] = msb * 128 + lsb;
H A DSoftPerformer.java98 int lsb = v & 127;
99 return msb * 100 + lsb;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c4303 int lsb = *sp & 0x0f; local
4306 | (((int)gamma_table[(lsb << 4) | lsb]) >> 4));

Completed in 110 milliseconds