Searched refs:offset (Results 376 - 400 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxOopHandle.java46 public Address addOffsetTo (long offset) throws UnsupportedOperationException { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgOopHandle.java46 public Address addOffsetTo (long offset) throws UnsupportedOperationException { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DMaskFillerForNative.java44 public void passObject() { mask.atPut(offset(), true); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DOopUtilities.java100 public static String charArrayToString(TypeArray charArray, int offset, int length) { argument
104 final int limit = offset + length;
106 Assert.that(offset >= 0 && limit <= charArray.getLength(), "out of bounds");
109 for (int i = offset; i < limit; i++) {
144 offsetField = (IntField) k.findField("offset", "I"); // optional
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java722 * to the double coordinates at the specified offset in the specified
725 * @param offset the index of <code>coords</code> from which to begin
730 public void setCurve(double[] coords, int offset) { argument
731 setCurve(coords[offset + 0], coords[offset + 1],
732 coords[offset + 2], coords[offset + 3],
733 coords[offset + 4], coords[offset + 5],
734 coords[offset
765 setCurve(Point2D[] pts, int offset) argument
863 getFlatnessSq(double coords[], int offset) argument
883 getFlatness(double coords[], int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodRequests.java67 * Gets the location of a specified offset in the current composed text,
75 * InputMethodEvent sent to it contained composed text), then the offset is
76 * relative to the composed text - offset 0 indicates the first character
80 * If the component doesn't have composed text, the offset should be ignored,
96 * @param offset the offset within the composed text, if there is composed
98 * @return a rectangle representing the screen location of the offset
100 Rectangle getTextLocation(TextHitInfo offset); argument
103 * Gets the offset within the composed text for the specified absolute x
105 * to handle mouse clicks and the mouse cursor. The offset i
[all...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DByteBufferAs-X-Buffer.java.template38 protected final int offset;
53 offset = pos;
66 offset = off;
77 int off = (pos << $LG_BYTES_PER_VALUE$) + offset;
88 offset);
98 offset);
107 return (i << $LG_BYTES_PER_VALUE$) + offset;
204 offset);
H A DHeap-X-Buffer.java.template51 protected final int offset;
60 offset = 0;
73 offset = 0;
89 offset = off;
103 this.position() + offset);
112 offset);
122 offset);
131 return i + offset;
142 public $Type$Buffer get($type$[] dst, int offset, int length) {
143 checkBounds(offset, lengt
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DBlob.java205 * @param offset the offset into the array <code>bytes</code> at which
217 int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException; argument
291 * @param pos the offset to the first byte of the partial value to be retrieved.
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreementSpi.java150 * <code>sharedSecret</code>, beginning at <code>offset</code> inclusive.
164 * @param offset the offset in <code>sharedSecret</code> where the
175 int offset)
174 engineGenerateSecret(byte[] sharedSecret, int offset) argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DaltHashing.cpp64 int offset = 0; local
68 jint k1 = (data[offset] & 0x0FF)
69 | (data[offset + 1] & 0x0FF) << 8
70 | (data[offset + 2] & 0x0FF) << 16
71 | data[offset + 3] << 24;
74 offset += 4;
92 k1 ^= (data[offset + 2] & 0xff) << 16;
95 k1 ^= (data[offset + 1] & 0xff) << 8;
98 k1 ^= (data[offset] & 0xff);
H A DstackMapTable.hpp70 return _frame_array[index]->offset();
74 // specified offset. Return true if the two frames match.
76 StackMapFrame* current_frame, int32_t offset,
79 // specified offset and frame index. Return true if the two frames match.
81 StackMapFrame* current_frame, int32_t offset, int32_t frame_index,
90 // Returns the frame array index where the frame with offset is stored.
91 int get_index_from_offset(int32_t offset) const;
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.cpp87 int offset = (int)(s-buf);// Not enuf space; compute offset into buffer local
90 s = buf+offset; // Get working pointer into new bigger buffer
102 int offset = (int)(s-buf);// Not enuf space; compute offset into buffer local
105 s = buf+offset; // Get working pointer into new bigger buffer
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaValueArray.java102 long offset = getOffset() + idSize + 4;
104 int len = buf.getInt(offset);
106 byte type = buf.getByte(offset + 4);
114 long offset = getOffset() + idSize + 4;
116 int length = buf.getInt(offset);
118 byte type = buf.getByte(offset + 4);
124 buf.get(offset + 5, res);
147 public JavaValueArray(byte elementSignature, long offset) { argument
148 super(offset);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.hpp71 int32_t isStatic; // Indicates whether following field is an offset or an address
72 uint64_t offset; // Offset of field within structure; only used for nonstatic fields member in struct:__anon456
74 // ("offset" can not be reused because of apparent SparcWorks compiler bug
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.cpp83 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const char* modulepath) { argument
91 return decoder->decode(addr, buf, buflen, offset, modulepath);
94 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const void* base) { argument
102 return decoder->decode(addr, buf, buflen, offset, base);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DWeakDataFile.java64 synchronized void read(long pointer, byte[] buf, int offset, int length ) { argument
67 raf.readFully(buf, offset, length);
73 synchronized long writeTo(long pointer, byte[] data, int offset, int length) { argument
76 raf.write(data, offset, length);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageCopy.h39 mlib_s32 offset);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSinkChannelImpl.java131 public long write(ByteBuffer[] srcs, int offset, int length) argument
134 if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
137 return write(Util.subsequence(srcs, offset, length));
H A DSourceChannelImpl.java121 public long read(ByteBuffer[] dsts, int offset, int length) argument
124 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
127 return read(Util.subsequence(dsts, offset, length));
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DArgCheck.java90 int offset, int len, ByteBuffer netData) throws Exception {
92 ssle.wrap(appData, offset, len, netData);
99 ssle.unwrap(netData, appData, offset, len);
107 int offset, int len, ByteBuffer netData) throws Exception {
110 ssle.wrap(appData, offset, len, netData);
119 ssle.unwrap(netData, appData, offset, len);
128 int offset, int len, ByteBuffer netData) throws Exception {
130 ssle.wrap(appData, offset, len, netData);
137 ssle.unwrap(netData, appData, offset, len);
89 tryNullArrayLen(SSLEngine ssle, ByteBuffer [] appData, int offset, int len, ByteBuffer netData) argument
106 tryReadOnly(SSLEngine ssle, ByteBuffer [] appData, int offset, int len, ByteBuffer netData) argument
127 tryOutOfBounds(SSLEngine ssle, ByteBuffer [] appData, int offset, int len, ByteBuffer netData) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypeAnnotationPosition.java49 public int offset = -1; field in class:TypeAnnotationPosition
86 sb.append(", offset = ");
87 sb.append(offset);
143 sb.append(", offset = ");
144 sb.append(offset);
154 sb.append(", offset = ");
155 sb.append(offset);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCopy.h37 mlib_s32 offset);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHanLayoutEngine.h108 * @param offset - the index of the first character to process
124 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DLigatureSubstProc.cpp95 le_int32 offset, i = 0; local
109 offset = action & lafComponentOffsetMask;
110 if (offset != 0) {
111 LEReferenceToArrayOf<le_int16> offsetTable(stHeader, success, 2 * SignExtend(offset, lafComponentOffsetMask), LE_UNBOUNDED_ARRAY);

Completed in 95 milliseconds

<<11121314151617181920>>