Searched refs:offset (Results 501 - 525 of 1222) sorted by relevance

<<21222324252627282930>>

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp28 // Simulates the FPU stack and maintains mapping [fpu-register -> stack offset]
56 void swap(int offset); // exchange tos with tos + offset
57 int offset_from_tos(int rnr) const; // return the offset of the topmost instance of rnr from TOS
58 int get_slot(int tos_offset) const; // return the entry at the given offset from TOS
59 void set_slot(int tos_offset, int rnr); // set the entry at the given offset from TOS
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.hpp52 long _offset; // Expected filepointer offset.
53 long _bufoff; // Start of buffer file offset
61 long _filepos; // Current offset from start of file
81 // This converts a pointer into the buffer to a file offset. It only works
92 FileBuffRegion *_next; // Linked list of regions sorted by offset.
100 FileBuffRegion(FileBuff*, int sol, int line, int offset, int len);
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterData01.java.template36 9 bits signed offset used for converting case
37 1 bit if 1, adding the signed offset converts the character to lowercase
38 1 bit if 1, subtracting the signed offset converts the character to uppercase
57 1 adding the digit offset to the character code and then
60 3 a Java supradecimal digit: adding the digit offset to the
63 5 bits digit offset
70 char offset = (char)ch;
71 int props = $$Lookup(offset);
76 char offset = (char)ch;
77 int props = $$LookupEx(offset);
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.h41 int32_t awtJNI_GetMFStringWidth(JNIEnv * env, jcharArray s, int32_t offset,
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBufImgOps.h74 jint numBands, jint bandLength, jint offset,
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileChannelImpl.c102 highOffset, /* High word of offset */
103 lowOffset, /* Low word of offset */
141 jobject fdo, jlong offset)
147 if (offset < 0) {
150 lowPos = (DWORD)offset;
151 highPos = (long)(offset >> 32);
140 Java_sun_nio_ch_FileChannelImpl_position0(JNIEnv *env, jobject this, jobject fdo, jlong offset) argument
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DPread.java106 long offset = generator.nextInt(1000);
107 long expectedResult = offset / CHARS_PER_LINE;
108 offset = expectedResult * CHARS_PER_LINE;
115 int read = c.read(bleck, offset);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DVectorParams.java126 ByteBuffer[] bufs, int offset, int len)
130 gbc.write(bufs, offset, len);
138 ByteBuffer[] bufs, int offset, int len)
142 sbc.read(bufs, offset, len);
125 tryBadWrite(GatheringByteChannel gbc, ByteBuffer[] bufs, int offset, int len) argument
137 tryBadRead(ScatteringByteChannel sbc, ByteBuffer[] bufs, int offset, int len) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java111 int offset = getByteOffset();
113 while (i >= 0 && bytes[offset + i] != b) i--;
181 /** Get the start offset of this name within its byte array.
225 protected static int hashValue(byte bytes[], int offset, int length) { argument
227 int off = offset;
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DEditableAtEndDocument.java55 public void insertString(int offset, String text, AttributeSet a) argument
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.cpp111 void bytes::copyFrom(const void* ptr_, size_t len_, size_t offset) { argument
112 assert(len_ == 0 || inBounds(ptr + offset));
113 assert(len_ == 0 || inBounds(ptr + offset+len_-1));
114 memcpy(ptr+offset, ptr_, len_);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.h122 unsigned offset; /* distance back to copy string from */ member in struct:inflate_state
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DArabicShaping.h84 static void shape(const LEUnicode *chars, le_int32 offset, le_int32 charCount, le_int32 charMax,
H A DContextualGlyphSubstProc2.h78 TTGlyphID lookup(le_uint32 offset, LEGlyphID gid, LEErrorCode &success);
H A DHangulLayoutEngine.h131 * @param offset - the index of the first character to process
145 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DKhmerLayoutEngine.h135 * @param offset - the index of the first character to process
149 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DLigatureSubstProc2.cpp97 LEReferenceTo<LigatureActionEntry> ap(stHeader, success, ligActionOffset); // byte offset
98 ap.addObject(ligActionIndex - 1, success); // index offset ( one before the actual start, because we will pre-increment)
101 le_int32 offset, i = 0; local
121 offset = action & lafComponentOffsetMask;
122 if (offset != 0) {
128 i += SWAPW(componentTable(LE_GET_GLYPH(glyphStorage[componentGlyph]) + (SignExtend(offset, lafComponentOffsetMask)),success));
H A DTibetanLayoutEngine.h135 * @param offset - the index of the first character to process
149 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11ECDHKeyAgreement.java153 offset) throws IllegalStateException, ShortBufferException {
154 if (offset + secretLen > sharedSecret.length) {
156 + " bytes, only " + (sharedSecret.length - offset) + " available");
159 System.arraycopy(secret, 0, sharedSecret, offset, secret.length);
152 engineGenerateSecret(byte[] sharedSecret, int offset) argument
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorThresholdTest.java27 * @summary Wrong threshold value in CounterMonitor with offset and modulus.
95 public static void runTest(int offset, argument
110 ",offset=" + offset);
121 ",offset=" + offset);
133 cm.setOffset(offset);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DGlyphListPipe.java83 char data[], int offset, int length,
90 sg2d, data, offset, length, ix, iy);
103 if (gl.setFromChars(info, data, offset, length, x, y)) {
108 TextLayout tl = new TextLayout(new String(data, offset, length),
82 drawChars(SunGraphics2D sg2d, char data[], int offset, int length, int ix, int iy) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java1031 void insert(int offset, int[] values) { argument
1038 System.arraycopy(intArray, offset, intArray, offset+values.length,
1039 size - offset);
1040 System.arraycopy(values, 0, intArray, offset, values.length);
1042 if (index > offset)
1043 index = offset;
1046 void remove(int offset, int length) { argument
1047 if (offset + length != size)
1048 System.arraycopy(intArray, offset
1055 replace(int offset, int[] values) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSinkChannelImpl.java202 public long write(ByteBuffer[] srcs, int offset, int length) argument
205 if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
207 return write(Util.subsequence(srcs, offset, length));
H A DSourceChannelImpl.java179 public long read(ByteBuffer[] dsts, int offset, int length) argument
182 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
184 return read(Util.subsequence(dsts, offset, length));
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java48 public final long offset; field in class:ZipOutputStream.XEntry
49 public XEntry(ZipEntry entry, long offset) { argument
51 this.offset = offset;
293 * @param off the start offset in the data
449 long offset = xentry.offset;
462 if (xentry.offset >= ZIP64_MAGICVAL) {
463 offset = ZIP64_MAGICVAL;
464 e64len += 8; // offset(
[all...]

Completed in 212 milliseconds

<<21222324252627282930>>