Searched refs:offset (Results 426 - 450 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DDataBufferNIOInt.java109 return data.get(i+offset);
135 data.put(i+offset, val);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java164 * starting at <code>offset</code>.
167 * @param offset the offset in <code>input</code> where the input starts.
170 void update(byte input[], int offset, int len) { argument
178 md.update(input, offset, len);
259 protected void engineUpdate(byte input[], int offset, int len) { argument
260 core.update(input, offset, len);
295 protected void engineUpdate(byte input[], int offset, int len) { argument
296 core.update(input, offset, len);
331 protected void engineUpdate(byte input[], int offset, in argument
[all...]
H A DHmacMD5.java89 * starting at <code>offset</code>.
92 * @param offset the offset in <code>input</code> where the input starts.
95 protected void engineUpdate(byte input[], int offset, int len) { argument
96 hmac.update(input, offset, len);
H A DHmacSHA1.java89 * starting at <code>offset</code>.
92 * @param offset the offset in <code>input</code> where the input starts.
95 protected void engineUpdate(byte input[], int offset, int len) { argument
96 hmac.update(input, offset, len);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkRuntime.hpp83 static intptr_t tos_at(JavaThread *thread, int offset) { argument
84 return *(thread->zero_stack()->sp() + offset);
/openjdk7/jaxp/src/org/w3c/dom/ranges/
H A DRange.java112 * @param offset The <code>startOffset</code> value.
118 * INDEX_SIZE_ERR: Raised if <code>offset</code> is negative or greater
129 int offset)
136 * @param offset The <code>endOffset</code> value.
142 * INDEX_SIZE_ERR: Raised if <code>offset</code> is negative or greater
153 int offset)
128 setStart(Node refNode, int offset) argument
152 setEnd(Node refNode, int offset) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DEventLocation.java65 * Return the byte or character offset into the input source this location
67 * this is the byte offset into that stream, but if the input source is
68 * a character media then the offset is the character offset.
69 * Returns -1 if there is no offset available.
70 * @return the current offset
98 public void setCharacterOffset(int offset) { argument
99 _charOffset = offset;
/openjdk7/jdk/test/java/io/BufferedReader/
H A DReady.java81 public int read(char[] buf, int offset, int length) argument
88 for (int i = offset; i < readlen; i++) {
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectInputStream.java301 abstract public int read(byte[] data, int offset, int length) argument
314 abstract public void readFully(byte[] data, int offset, int size) throws IOException; argument
/openjdk7/jdk/src/share/native/java/lang/reflect/
H A DProxy.c51 jint offset,
79 (*env)->GetByteArrayRegion(env, data, offset, length, body);
46 Java_java_lang_reflect_Proxy_defineClass0(JNIEnv *env, jclass ignore, jobject loader, jstring name, jbyteArray data, jint offset, jint length) argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicLayoutEngine.h134 * @param offset - the index of the first character to process
148 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
162 * @param offset - the index of the first character to process
179 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DCalendarDate.java463 int offset;
466 offset = zoneOffset;
469 offset = -zoneOffset;
472 offset /= 60000;
474 CalendarUtils.sprintf0d(sb, offset / 60, 2);
475 CalendarUtils.sprintf0d(sb, offset % 60, 2);
494 protected void setZoneOffset(int offset) { argument
495 zoneOffset = offset;
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DCorruptedZipFiles.java86 checkZipException(bad, ".*bad central directory offset.*");
181 static int u8(byte[] data, int offset) { argument
182 return data[offset]&0xff;
185 static int u16(byte[] data, int offset) { argument
186 return u8(data,offset) + (u8(data,offset+1)<<8);
189 static int u32(byte[] data, int offset) { argument
190 return u16(data,offset) + (u16(data,offset+2)<<16);
/openjdk7/jdk/test/javax/swing/JScrollPane/
H A DTest6526631.java60 private void update(int offset) { argument
62 size.width += offset;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAlphaColorPipe.java51 byte[] atile, int offset, int tilesize,
57 atile, offset, tilesize);
50 renderPathTile(Object context, byte[] atile, int offset, int tilesize, int x, int y, int w, int h) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DDevPollArrayWrapper.java143 int offset = SIZE_POLLFD * i + REVENT_OFFSET;
144 pollArray.putShort(offset, (short)revent);
148 int offset = SIZE_POLLFD * i + EVENT_OFFSET;
149 return pollArray.getShort(offset);
153 int offset = SIZE_POLLFD * i + REVENT_OFFSET;
154 return pollArray.getShort(offset);
158 int offset = SIZE_POLLFD * i + FD_OFFSET;
159 return pollArray.getInt(offset);
H A DEPollArrayWrapper.java147 int offset = SIZE_EPOLLEVENT * i + EVENT_OFFSET;
148 pollArray.putInt(offset, event);
152 int offset = SIZE_EPOLLEVENT * i + FD_OFFSET;
153 pollArray.putInt(offset, fd);
157 int offset = SIZE_EPOLLEVENT * i + EVENT_OFFSET;
158 return pollArray.getInt(offset);
162 int offset = SIZE_EPOLLEVENT * i + FD_OFFSET;
163 return pollArray.getInt(offset);
H A DPollArrayWrapper.java116 int poll(int numfds, int offset, long timeout) { argument
117 return poll0(pollArrayAddress + (offset * SIZE_POLLFD),
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream_1_0.java195 // offset of the string length field back to the caller
627 public final void read_octet_array(byte[] b, int offset, int length) { argument
641 int n = offset;
642 while (n < length+offset) {
652 wanted = (length + offset) - n;
1596 public final void read_boolean_array(boolean[] value, int offset, int length) { argument
1598 value[i+offset] = read_boolean();
1602 public final void read_char_array(char[] value, int offset, int length) { argument
1604 value[i+offset] = read_char();
1608 public final void read_wchar_array(char[] value, int offset, in argument
1614 read_short_array(short[] value, int offset, int length) argument
1620 read_ushort_array(short[] value, int offset, int length) argument
1624 read_long_array(int[] value, int offset, int length) argument
1630 read_ulong_array(int[] value, int offset, int length) argument
1634 read_longlong_array(long[] value, int offset, int length) argument
1640 read_ulonglong_array(long[] value, int offset, int length) argument
1644 read_float_array(float[] value, int offset, int length) argument
1650 read_double_array(double[] value, int offset, int length) argument
1656 read_any_array(org.omg.CORBA.Any[] value, int offset, int length) argument
1759 read_any_array(org.omg.CORBA.AnySeqHolder seq, int offset, int length) argument
1763 read_boolean_array(org.omg.CORBA.BooleanSeqHolder seq, int offset, int length) argument
1767 read_char_array(org.omg.CORBA.CharSeqHolder seq, int offset, int length) argument
1771 read_wchar_array(org.omg.CORBA.WCharSeqHolder seq, int offset, int length) argument
1775 read_octet_array(org.omg.CORBA.OctetSeqHolder seq, int offset, int length) argument
1779 read_short_array(org.omg.CORBA.ShortSeqHolder seq, int offset, int length) argument
1783 read_ushort_array(org.omg.CORBA.UShortSeqHolder seq, int offset, int length) argument
1787 read_long_array(org.omg.CORBA.LongSeqHolder seq, int offset, int length) argument
1791 read_ulong_array(org.omg.CORBA.ULongSeqHolder seq, int offset, int length) argument
1795 read_ulonglong_array(org.omg.CORBA.ULongLongSeqHolder seq, int offset, int length) argument
1799 read_longlong_array(org.omg.CORBA.LongLongSeqHolder seq, int offset, int length) argument
1803 read_float_array(org.omg.CORBA.FloatSeqHolder seq, int offset, int length) argument
1807 read_double_array(org.omg.CORBA.DoubleSeqHolder seq, int offset, int length) argument
1990 skipToOffset(int offset) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DUCSReader.java154 * @param offset Offset at which to start storing characters
162 public int read(char ch[], int offset, int length) throws IOException { argument
207 ch[offset+i] = (char)((b0<<24)+(b1<<16)+(b2<<8)+b3);
209 ch[offset+i] = (char)((b3<<24)+(b2<<16)+(b1<<8)+b0);
212 ch[offset+i] = (char)((b0<<8)+b1);
214 ch[offset+i] = (char)((b1<<8)+b0);
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DDiagramComponent.java77 int offset = 0;
82 for (int w = 0; w < this.width; w++, x += dx, offset++) {
83 this.array[offset] = this.panel.getColor(x, y);
88 for (int w = 0; w < this.width; w++, offset++) {
89 this.array[offset] = color;
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamField.java56 /** offset of field value in enclosing field group */
57 private int offset = 0; field in class:ObjectStreamField
209 * @return the offset of this field
214 return offset;
220 * @param offset the offset of the field
224 protected void setOffset(int offset) { argument
225 this.offset = offset;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/implementations/
H A DResolverLocalFilesystem.java88 int offset = 0;
93 index = subStr.indexOf("%20",offset);
94 if (index == -1) temp.append(subStr.substring(offset));
97 temp.append(subStr.substring(offset,index));
99 offset = index+3;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86_32.cpp43 move(offset(), jni_offset() + 1);
47 move(offset(), jni_offset() + 1);
51 move(offset(), jni_offset() + 2);
52 move(offset() + 1, jni_offset() + 1);
56 box (offset(), jni_offset() + 1);
/openjdk7/hotspot/src/os/windows/vm/
H A Ddecoder_windows.cpp169 bool WindowsDecoder::decode(address addr, char *buf, int buflen, int* offset, const char* modulepath) {
183 if(offset != NULL) *offset = (int)displacement;
188 if (offset != NULL) *offset = -1;

Completed in 85 milliseconds

<<11121314151617181920>>