Searched refs:getByte (Results 1 - 25 of 96) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeStaticByteFieldAccessorImpl.java36 return new Byte(getByte(obj));
43 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeStaticByteFieldAccessorImpl
44 return unsafe.getByte(base, fieldOffset);
52 return getByte(obj);
56 return getByte(obj);
60 return getByte(obj);
64 return getByte(obj);
68 return getByte(obj);
H A DUnsafeQualifiedStaticByteFieldAccessorImpl.java38 return new Byte(getByte(obj));
45 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticByteFieldAccessorImpl
54 return getByte(obj);
58 return getByte(obj);
62 return getByte(obj);
66 return getByte(obj);
70 return getByte(obj);
H A DUnsafeByteFieldAccessorImpl.java36 return new Byte(getByte(obj));
43 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeByteFieldAccessorImpl
45 return unsafe.getByte(obj, fieldOffset);
53 return getByte(obj);
57 return getByte(obj);
61 return getByte(obj);
65 return getByte(obj);
69 return getByte(obj);
H A DUnsafeQualifiedByteFieldAccessorImpl.java38 return new Byte(getByte(obj));
45 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedByteFieldAccessorImpl
55 return getByte(obj);
59 return getByte(obj);
63 return getByte(obj);
67 return getByte(obj);
71 return getByte(obj);
H A DFieldAccessor.java41 public byte getByte(Object obj) throws IllegalArgumentException; method in interface:FieldAccessor
H A DFieldAccessorImpl.java43 public abstract byte getByte(Object obj) method in class:FieldAccessorImpl
H A DUnsafeBooleanFieldAccessorImpl.java44 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeBooleanFieldAccessorImpl
H A DUnsafeObjectFieldAccessorImpl.java44 public byte getByte(Object obj) throws IllegalArgumentException { method in class:UnsafeObjectFieldAccessorImpl
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DXSDecimal.java66 public byte getByte() throws NumberFormatException; method in interface:XSDecimal
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DReadBuffer.java47 public byte getByte(long pos) throws IOException; method in interface:ReadBuffer
H A DFileReadBuffer.java65 public synchronized byte getByte(long pos) throws IOException { method in class:FileReadBuffer
H A DMappedReadBuffer.java95 public synchronized byte getByte(long pos) throws IOException { method in class:MappedReadBuffer
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXRGlyphCacheEntry.java141 os.write(StrikeCache.unsafe.getByte(pixelDataAddress + (line * rowBytes + x)));
154 os.write(StrikeCache.unsafe.getByte
156 os.write(StrikeCache.unsafe.getByte
158 os.write(StrikeCache.unsafe.getByte
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableByteArray.java80 public final int getByte(int index) method in class:GrowableByteArray
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DMotifDnDDropTargetProtocol.java130 byte byteOrderByte = unsafe.getByte(data);
230 byte byteOrderByte = unsafe.getByte(data);
303 byte byteOrderByte = unsafe.getByte(data);
363 byte eventByteOrder = unsafe.getByte(data + 1);
388 byte propertyByteOrder = unsafe.getByte(data);
390 protocol_version = unsafe.getByte(data + 1);
460 byte eventByteOrder = unsafe.getByte(data + 1);
461 byte eventReason = (byte)(unsafe.getByte(data) &
559 byte eventByteOrder = unsafe.getByte(data + 1);
614 byte eventByteOrder = unsafe.getByte(dat
[all...]
H A DMotifDnDDragSourceProtocol.java107 byte reason = (byte)(unsafe.getByte(data) &
109 byte origin = (byte)(unsafe.getByte(data) &
111 byte byteOrder = unsafe.getByte(data + 1);
210 byte byteOrderByte = unsafe.getByte(data);
211 byte dragProtocolStyle = unsafe.getByte(data + 2);
222 int protocolVersion = unsafe.getByte(data + 1);
H A DNative.java83 static byte getByte(long ptr) { return unsafe.getByte(ptr); } method in class:Native
85 static byte getByte(long ptr, int index) { method in class:Native
86 return getByte(ptr+index);
108 res[i] = getByte(data);
131 static short getUByte(long ptr) { return (short)(0xFF & unsafe.getByte(ptr)); }
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java165 public int getByte(int offset) { method in class:Instruction
171 return getByte(offset) & 0xff;
176 return (getByte(offset) << 8) | getUnsignedByte(offset + 1);
261 return visitor.visitValue(this, getByte(1), p);
310 this, getUnsignedByte(1), getByte(2), p);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeObject.java175 final byte getByte(int offset) { method in class:NativeObject
176 return unsafe.getByte(offset + address);
378 byte b = unsafe.getByte(a);
/openjdk7/jdk/test/java/lang/reflect/Field/4490864/
H A DStaticFieldTest.java69 if (byteField.getByte(null) != 77) throw new RuntimeException("Test failed");
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java105 int bc = getByte(bytes, pc);
113 bc = getByte(bytes, pc+1);
152 return getByte(bytes, pc+indexLoc); // _ldc opcode only
177 return getByte(bytes, pc+slotLoc);
214 case 1: return (byte) getByte(bytes, pc+conLoc);
393 return getByte(bytes, pc+off);
401 return (getByte(bytes, pc+0) << 8) + (getByte(bytes, pc+1) << 0);
403 public static int getByte(byte[] bytes, int pc) { method in class:Instruction
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java128 return (getByte(address) != 0);
131 public byte getByte(long address) { method in class:Page
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java176 public static native byte getByte(Object array, int index) method in class:Array
/openjdk7/jdk/src/share/classes/java/nio/
H A DMappedByteBuffer.java172 x ^= unsafe.getByte(a);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java75 * public int getCount() { return unsafe.getByte(myCountAddress); }
201 public native byte getByte(Object o, long offset); method in class:Unsafe
288 public byte getByte(Object o, int offset) { method in class:Unsafe
289 return getByte(o, (long)offset);
400 public native byte getByte(long address); method in class:Unsafe
407 * @see #getByte(long)
411 /** @see #getByte(long) */
415 /** @see #getByte(long) */
419 /** @see #getByte(long) */
423 /** @see #getByte(lon
[all...]

Completed in 306 milliseconds

1234