Searched defs:offset (Results 476 - 500 of 840) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DAttachmentPart.java283 * @param offset the offset in the byte array of the content
291 byte[] content, int offset, int len, String contentType)
290 setRawContentBytes( byte[] content, int offset, int len, String contentType) argument
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageConvClearEdge.c421 mlib_s32 tmask = cmask & 3, mask1, offset; local
439 offset = pdst_row - (mlib_u8 *) dpdst;
440 mask1 = (tmask >> offset);
455 offset = pdst_row - (mlib_u8 *) dpdst;
456 mask1 = (tmask >> offset);
480 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
502 offset = pdst_row - (mlib_u8 *) dpdst;
503 mask2 = (tmask >> (9 - ((8 - offset) & 7)));
544 offset = pdst_row - (mlib_u8 *) dpdst;
545 mask2 = (tmask >> (9 - ((8 - offset)
595 mlib_s32 tmask = cmask & 0xF, mask1, offset; local
698 mlib_s32 tmask = cmask & 3, mask1, offset; local
755 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
869 mlib_s32 tmask = cmask & 0xF, mask1, offset; local
971 mlib_s32 tmask = cmask & 3, mask1, offset; local
1025 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
1134 mlib_s32 tmask = cmask & 0xF, mask0, mask1, offset; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileDispatcherImpl.c83 jlong address, jint len, jlong offset)
88 return convertReturnVal(env, pread64(fd, buf, len, offset), JNI_TRUE);
112 jlong address, jint len, jlong offset)
117 return convertReturnVal(env, pwrite64(fd, buf, len, offset), JNI_FALSE);
82 Java_sun_nio_ch_FileDispatcherImpl_pread0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len, jlong offset) argument
111 Java_sun_nio_ch_FileDispatcherImpl_pwrite0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len, jlong offset) argument
/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java284 private static native void socketSend(int fd, byte[] data, int offset, int length, argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java205 protected native void printBand(long hdc, byte[] data, int offset, argument
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSASignature.java119 private int offset = 0; field in class:RSASignature.Raw
128 if (offset >= precomputedDigest.length) {
129 offset = RAW_RSA_MAX + 1;
132 precomputedDigest[offset++] = b;
139 if (offset + len > precomputedDigest.length) {
140 offset = RAW_RSA_MAX + 1;
143 System.arraycopy(b, off, precomputedDigest, offset, len);
144 offset += len;
154 if (offset + len > precomputedDigest.length) {
155 offset
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DDualStackPlainDatagramSocketImpl.c402 (JNIEnv *env, jclass clazz, jint fd, jbyteArray data, jint offset, jint length,
437 (*env)->GetByteArrayRegion(env, data, offset, length,
401 Java_java_net_DualStackPlainDatagramSocketImpl_socketSend(JNIEnv *env, jclass clazz, jint fd, jbyteArray data, jint offset, jint length, jobject iaObj, jint port, jboolean connected) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBufImgOps.cpp69 // x/y offset of approximately one pixel we have to normalize
164 // update the "uniform" offset values (note that the Java-level
191 jint numBands, jint bandLength, jint offset,
206 shortData, numBands, bandLength, offset);
225 // update the "uniform" offset value
227 foffsets[i] = offset / 255.0f;
189 D3DBufImgOps_EnableLookupOp(D3DContext *d3dc, jboolean nonPremult, jboolean shortData, jint numBands, jint bandLength, jint offset, void *tableValues) argument
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileDispatcherImpl.c124 jlong address, jint len, jlong offset)
147 lowOffset = (DWORD)offset;
148 highOffset = (DWORD)(offset >> 32);
161 NULL); /* struct with offset */
268 jlong address, jint len, jlong offset)
286 lowOffset = (DWORD)offset;
287 highOffset = (DWORD)(offset >> 32);
123 Java_sun_nio_ch_FileDispatcherImpl_pread0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len, jlong offset) argument
267 Java_sun_nio_ch_FileDispatcherImpl_pwrite0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len, jlong offset) argument
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DXObjectInputStream.java111 public int read(byte[] data, int offset, int length) throws IOException { argument
112 return dis.read(data, offset, length);
153 public void readFully(byte[] data, int offset, int size) throws IOException { argument
/openjdk7/jdk/test/java/lang/String/
H A DSupplementary.java40 test7(); // Test for String(int[] codePoint, int offset, int count)
42 test9(); // Test for offsetByCodePoints(int index, int offset)
43 test10(); // Test for offsetByCodePoints(int index, int offset)
321 * Test for String(int[] codePoint, int offset, int count).
333 int count = 0, mid = 0, offset = 0;
337 offset = count;
346 cps = new String(codePoints, 0, offset);
350 cps = new String(codePoints, offset, count - offset);
358 testNewString(codePoints, offset, coun
636 testNewString(int[] codePoints, int offset, int count, Class expectedException) argument
661 testOffsetByCodePoints(String str, int index, int offset, Class expectedException) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DStackMapTable_attribute.java369 offset = cr.readUnsignedShort();
377 public final int offset; field in class:StackMapTable_attribute.Uninitialized_variable_info
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassFile.java110 /** Return internal representation of buf[offset..offset+len-1],
113 public static byte[] internalize(byte[] buf, int offset, int len) { argument
116 byte b = buf[offset + j];
130 /** Return external representation of buf[offset..offset+len-1],
133 public static byte[] externalize(byte[] buf, int offset, int len) { argument
136 byte b = buf[offset + j];
/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/native/com/sun/java/util/jar/pack/
H A Djni.cpp158 jobject pBuf, jlong offset) {
176 if ((size_t)offset >= buflen)
179 { buf = (char*)buf + (size_t)offset; buflen -= (size_t)offset; }
157 Java_com_sun_java_util_jar_pack_NativeUnpack_start(JNIEnv *env, jobject pObj, jobject pBuf, jlong offset) argument
/openjdk7/jdk/src/share/native/java/lang/
H A DClassLoader.c81 jint offset,
85 return Java_java_lang_ClassLoader_defineClass1(env, loader, name, data, offset,
94 jint offset,
126 (*env)->GetByteArrayRegion(env, data, offset, length, body);
170 jint offset,
184 // caller passes ByteBuffer.position() for offset, and capacity() >= position() + remaining()
185 assert((*env)->GetDirectBufferCapacity(env, data) >= (offset + length));
194 body += offset;
77 Java_java_lang_ClassLoader_defineClass0(JNIEnv *env, jobject loader, jstring name, jbyteArray data, jint offset, jint length, jobject pd) argument
90 Java_java_lang_ClassLoader_defineClass1(JNIEnv *env, jobject loader, jstring name, jbyteArray data, jint offset, jint length, jobject pd, jstring source) argument
166 Java_java_lang_ClassLoader_defineClass2(JNIEnv *env, jobject loader, jstring name, jobject data, jint offset, jint length, jobject pd, jstring source) argument
/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/awt/image/jpeg/
H A Djpegdecoder.c322 size_t offset, buflen; local
338 offset = src->pub.bytes_in_buffer;
340 memmove(src->inbuf, src->pub.next_input_byte, offset);
343 buflen = (*env)->GetArrayLength(env, src->hInputBuffer) - offset;
351 src->hInputBuffer, offset, buflen);
358 src->inbuf[offset] = (JOCTET) 0xFF;
359 src->inbuf[offset + 1] = (JOCTET) JPEG_EOI;
364 src->pub.bytes_in_buffer = ret + offset;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageCopy.c204 mlib_s32 offset)
213 if (size <= (8 - offset)) {
215 mask >>= offset; local
221 mask = mask0 >> offset;
226 size = size - 8 + offset;
201 mlib_ImageCopy_bit_al(const mlib_u8 *sa, mlib_u8 *da, mlib_s32 size, mlib_s32 offset) argument
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp149 le_int32 offset, le_int32 count, le_bool reverse,
159 for (i = offset; i < offset + count; i += 1, out += dir) {
163 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
148 mapCharsToWideGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_uint32 glyphs[]) const argument
H A DFontInstanceAdapter.h81 le_int32 *offset, le_int32 limit,
113 le_int32 offset, le_int32 count, le_bool reverse,
80 getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLETableReference.h112 LETableReference(const LETableReference &parent, size_t offset, size_t length, argument
115 fStart((parent.fStart)+offset), fLength(length) {
120 } else if(offset >= fParent->fLength) {
121 LE_DEBUG_TR3("offset out of range: (%p) +%d", NULL, offset);
127 fLength = (fParent->fLength) - offset; // decrement length as base address is incremented
130 if(offset+fLength > fParent->fLength) {
131 LE_DEBUG_TR3("offset+fLength out of range: (%p) +%d", NULL, offset+fLength);
154 void addOffset(size_t offset, LEErrorCod argument
193 verifyLength(size_t offset, size_t length, LEErrorCode &success) argument
290 LEReferenceToArrayOf(const LETableReference &parent, LEErrorCode &success, size_t offset, le_uint32 count) argument
316 LEReferenceToArrayOf(const LETableReference &parent, LEErrorCode &success, const T* array, size_t offset, le_uint32 count) argument
388 LEReferenceTo(const LETableReference &parent, LEErrorCode &success, const void* atPtr, size_t offset) argument
393 LEReferenceTo(const LETableReference &parent, LEErrorCode &success, size_t offset) argument
[all...]
H A DThaiShaping.cpp290 le_int32 ThaiShaping::compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet, argument
301 LEUnicode ch = input[inputIndex + offset];
311 ch = input[j + offset];
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken.java152 * @param tokenOffset the offset where the token begins
281 * @param offset the offset where the data starts
293 byte[] data, int offset, int len,
317 getChecksum(optionalHeader, data, offset, len, optionalTrailer);
357 * @param offset the offset where the data begins
368 byte[] data, int offset, int len,
376 getChecksum(optionalHeader, data, offset, len, optionalTrailer);
428 * @param offset th
291 genSignAndSeqNumber(MessageProp prop, byte[] optionalHeader, byte[] data, int offset, int len, byte[] optionalTrailer) argument
367 verifySignAndSeqNumber(byte[] optionalHeader, byte[] data, int offset, int len, byte[] optionalTrailer) argument
437 getChecksum(byte[] optionalHeader, byte[] data, int offset, int len, byte[] optionalTrailer) argument
[all...]
H A DMessageToken_v2.java156 * @param tokenOffset the offset where the token begins
292 * @param offset the offset where the data starts
299 byte[] data, int offset, int len)
331 checksum = getChecksum(data, offset, len);
349 * @param offset the offset where the data begins
354 public final boolean verifySign(byte[] data, int offset, int len) argument
361 byte[] myChecksum = getChecksum(data, offset, len);
397 * @param offset th
298 genSignAndSeqNumber(MessageProp prop, byte[] data, int offset, int len) argument
402 getChecksum(byte[] data, int offset, int len) argument
[all...]

Completed in 67 milliseconds

<<11121314151617181920>>