Searched refs:LONG_SIZE (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DIntegerEncodingAlgorithm.java33 public final static int LONG_SIZE = 8; field in class:IntegerEncodingAlgorithm
H A DLongEncodingAlgorithm.java44 if (octetLength % LONG_SIZE != 0) {
46 getString("message.lengthNotMultipleOfLong", new Object[]{Integer.valueOf(LONG_SIZE)}));
49 return octetLength / LONG_SIZE;
53 return primitiveLength * LONG_SIZE;
107 final int size = length / LONG_SIZE;
123 final byte[] b = new byte[LONG_SIZE];
127 if (n != LONG_SIZE) {
132 while(n != LONG_SIZE) {
133 final int m = s.read(b, n, LONG_SIZE - n);
H A DUUIDEncodingAlgorithm.java39 if (octetLength % (LONG_SIZE * 2) != 0) {
41 getString("message.lengthNotMultipleOfUUID",new Object[]{Integer.valueOf(LONG_SIZE * 2)}));
44 return octetLength / LONG_SIZE;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapHprofBinWriter.java384 LONG_SIZE = objectHeap.getLongSize();
686 long offset = LONG_BASE_OFFSET + index * LONG_SIZE;
1001 private long LONG_SIZE; field in class:HeapHprofBinWriter

Completed in 38 milliseconds