Searched defs:unsignedByteToInt (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/print/
H A DAttributeClass.java262 private int unsignedByteToInt(byte b) { method in class:AttributeClass
269 intVal+= unsignedByteToInt(buf[pos++]) << 24;
270 intVal+= unsignedByteToInt(buf[pos++]) << 16;
271 intVal+= unsignedByteToInt(buf[pos++]) << 8;
272 intVal+= unsignedByteToInt(buf[pos++]) << 0;

Completed in 30 milliseconds