Searched refs:getShort (Results 1 - 25 of 105) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DHeader.java88 xid = getShort(msg, pos);
92 short flags = (short) getShort(msg, pos);
103 numQuestions = getShort(msg, pos);
105 numAnswers = getShort(msg, pos);
107 numAuthorities = getShort(msg, pos);
109 numAdditionals = getShort(msg, pos);
122 private static int getShort(byte[] msg, int pos) { method in class:Header
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DXSDecimal.java60 public short getShort() throws NumberFormatException; method in interface:XSDecimal
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DReadBuffer.java48 public short getShort(long pos) throws IOException; method in interface:ReadBuffer
H A DMappedReadBuffer.java100 public synchronized short getShort(long pos) throws IOException { method in class:MappedReadBuffer
102 return buf.getShort();
H A DFileReadBuffer.java70 public synchronized short getShort(long pos) throws IOException { method in class:FileReadBuffer
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeShortFieldAccessorImpl.java36 return new Short(getShort(obj));
51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeShortFieldAccessorImpl
53 return unsafe.getShort(obj, fieldOffset);
57 return getShort(obj);
61 return getShort(obj);
65 return getShort(obj);
69 return getShort(obj);
H A DUnsafeStaticShortFieldAccessorImpl.java36 return new Short(getShort(obj));
51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeStaticShortFieldAccessorImpl
52 return unsafe.getShort(base, fieldOffset);
56 return getShort(obj);
60 return getShort(obj);
64 return getShort(obj);
68 return getShort(obj);
H A DUnsafeQualifiedShortFieldAccessorImpl.java38 return new Short(getShort(obj));
53 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedShortFieldAccessorImpl
59 return getShort(obj);
63 return getShort(obj);
67 return getShort(obj);
71 return getShort(obj);
H A DUnsafeQualifiedStaticShortFieldAccessorImpl.java38 return new Short(getShort(obj));
53 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticShortFieldAccessorImpl
58 return getShort(obj);
62 return getShort(obj);
66 return getShort(obj);
70 return getShort(obj);
H A DFieldAccessor.java47 public short getShort(Object obj) throws IllegalArgumentException; method in interface:FieldAccessor
H A DFieldAccessorImpl.java51 public abstract short getShort(Object obj) method in class:FieldAccessorImpl
/openjdk7/langtools/test/tools/javac/versions/
H A DCheckClassFileVersion.java39 int minor = bb.getShort(4);
40 int major = bb.getShort(6);
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationParser.java86 int numAnnotations = buf.getShort() & 0xFFFF;
148 int numAnnotations = buf.getShort() & 0xFFFF;
194 int typeIndex = buf.getShort() & 0xFFFF;
231 int numMembers = buf.getShort() & 0xFFFF;
233 int memberNameIndex = buf.getShort() & 0xFFFF;
330 int constIndex = buf.getShort() & 0xFFFF;
367 int classIndex = buf.getShort() & 0xFFFF;
417 int typeNameIndex = buf.getShort() & 0xFFFF;
419 int constNameIndex = buf.getShort() & 0xFFFF;
458 int length = buf.getShort()
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAbstractPollArrayWrapper.java66 return pollArray.getShort(offset);
71 return pollArray.getShort(offset);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DKQueue.java93 return unsafe.getShort(address + OFFSET_FILTER);
97 return unsafe.getShort(address + OFFSET_FLAGS);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java83 public int getShort(int offset) throws InvalidIndex { method in class:Code_attribute
98 return (getShort(offset) << 16) | (getShort(offset + 2) & 0xFFFF);
H A DInstruction.java175 public int getShort(int offset) { method in class:Instruction
181 return getShort(offset) & 0xFFFF;
186 return (getShort(offset) << 16) | (getUnsignedShort(offset + 2));
255 return visitor.visitBranch(this, getShort(1), p);
313 return visitor.visitValue(this, getShort(1), p);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMappedByteBufferDataSource.java43 public short readShort() throws IOException { return buf.getShort(); }
/openjdk7/jdk/src/share/classes/java/text/
H A DBreakDictionary.java193 temp[i] = BreakIterator.getShort(buf, offset);
214 rowIndex[i] = BreakIterator.getShort(buf, offset);
222 rowIndexFlagsIndex[i] = BreakIterator.getShort(buf, offset);
244 table[i] = BreakIterator.getShort(buf, offset);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXRGlyphCacheEntry.java113 return StrikeCache.unsafe.getShort(glyphInfoPtr + StrikeCache.rowBytesOffset);
117 return StrikeCache.unsafe.getShort(glyphInfoPtr + StrikeCache.widthOffset);
121 return StrikeCache.unsafe.getShort(glyphInfoPtr + StrikeCache.heightOffset);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Region.java134 public short getShort(int generator) { method in class:SF2Region
157 return 0xFFFF & getShort(generator);
H A DSF2Instrument.java207 int startAddrsOffset = layerzone.getShort(
209 int endAddrsOffset = layerzone.getShort(
211 int startloopAddrsOffset = layerzone.getShort(
213 int endloopAddrsOffset = layerzone.getShort(
216 startAddrsOffset += layerzone.getShort(
218 endAddrsOffset += layerzone.getShort(
220 startloopAddrsOffset += layerzone.getShort(
222 endloopAddrsOffset += layerzone.getShort(
229 if (layerzone.getShort(SF2Region.GENERATOR_OVERRIDINGROOTKEY) != -1) {
230 rootkey = layerzone.getShort(
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DNativeBuffer.java60 public short getShort() { return buffer.getShort(); } method in class:NativeBuffer
/openjdk7/jdk/test/java/lang/reflect/Field/4490864/
H A DStaticFieldTest.java70 if (shortField.getShort(null) != 77) throw new RuntimeException("Test failed");
/openjdk7/langtools/test/tools/javac/6330997/
H A DT6330997.java77 wbuf.putShort(0, (short)(rbuf.getShort(0) + delta));

Completed in 111 milliseconds

12345