Searched defs:offset (Results 201 - 225 of 840) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DPlainClient.java146 public byte[] unwrap(byte[] incoming, int offset, int len) argument
161 public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException { argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaObjectArray.java45 public JavaObjectArray(long classID, long offset) { argument
46 super(offset);
153 long offset = getOffset() + idSize + 4;
154 int len = buf.getInt(offset);
162 long offset = getOffset() + idSize + 4;
163 int len = buf.getInt(offset);
168 buf.get(offset + 4 + idSize, res);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextHitInfo.java57 * query <code>TextHitInfo</code> instances for an insertion offset, where
58 * new text is inserted into the text model. The insertion offset is equal
61 * insertion offset for TextHitInfo.trailing(1) is 2.
64 * the same insertion offset as an existing one, but on the opposite
66 * <code>TextHitInfo</code> with the same insertion offset as an existing
67 * one, with a hit on the character on the other side of the insertion offset.
155 * the same insertion offset.
199 * Creates a <code>TextHitInfo</code> at the specified offset,
200 * associated with the character before the offset.
201 * @param offset a
205 beforeOffset(int offset) argument
216 afterOffset(int offset) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPrintCharacterRanges.java111 private int offset; field in class:PrintCharacterRanges.ShiftRange
113 ShiftRange(int begin, int end, int offset) { argument
116 this.offset = offset;
121 int offset() { return offset; } method in class:PrintCharacterRanges.ShiftRange
136 int offset = methodRes - i;
139 } else if (offset != currentRangeOffset) {
143 currentRangeOffset = offset;
169 describe((range.begin() + range.offset()))
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java95 public void compress(byte[] buf, int offset, int length) argument
102 int maxOffset = offset + length;
103 for (idx = offset; idx < maxOffset; ++idx) {
/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/shark/
H A DsharkCacheDecache.cpp60 int offset) {
68 adjusted_offset(value, offset));
73 oopmap()->set_oop(slot2reg(offset));
78 exparray()->append(slot2lv(offset, stack_location_type(index, addr)));
95 void SharkDecacher::process_oop_tmp_slot(Value** value, int offset) { argument
101 offset); local
103 oopmap()->set_oop(slot2reg(offset));
107 void SharkDecacher::process_method_slot(Value** value, int offset) { argument
112 offset); local
114 oopmap()->set_oop(slot2reg(offset));
58 process_stack_slot(int index, SharkValue** addr, int offset) argument
117 process_pc_slot(int offset) argument
128 process_local_slot(int index, SharkValue** addr, int offset) argument
169 process_stack_slot(int index, SharkValue** addr, int offset) argument
200 process_oop_tmp_slot(Value** value, int offset) argument
206 process_method_slot(Value** value, int offset) argument
211 process_method_slot(Value** value, int offset) argument
216 process_local_slot(int index, SharkValue** addr, int offset) argument
232 CreateAddressOfOSRBufEntry(int offset, const Type* type) argument
240 process_local_slot(int index, SharkValue** addr, int offset) argument
257 write_value_to_frame(const Type* type, Value* value, int offset) argument
263 read_value_from_frame(const Type* type, int offset) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfFile.cpp143 bool ElfFile::decode(address addr, char* buf, int buflen, int* offset) { argument
167 if (offset) *offset = off;
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java111 public static double getFlatnessSq(float coords[], int offset) { argument
112 return Line2D.ptSegDistSq(coords[offset + 0], coords[offset + 1],
113 coords[offset + 4], coords[offset + 5],
114 coords[offset + 2], coords[offset + 3]);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLocatorEx.java50 private final int columnNumber,lineNumber,offset; field in class:LocatorEx.Snapshot
63 offset = vel.getOffset();
78 return offset;
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DCommentImpl.java94 public Text splitText(int offset) throws DOMException { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DChunkInputStream.java39 int offset; field in class:ChunkInputStream
57 sz = Math.min(sz, len-offset);
58 System.arraycopy(buf,offset,b,off,sz);
64 return (buf[offset++] & 0xff);
75 while(offset==len) {
84 this.offset = 0;
H A DDataFile.java58 * @param offset the start offset of the data.
61 synchronized void read(long pointer, byte[] buf, int offset, int length ) { argument
62 weak.read(pointer, buf, offset, length);
73 * @param offset start offset in the data
78 synchronized long writeTo(byte[] data, int offset, int length) { argument
80 writePointer = weak.writeTo(writePointer, data, offset, length);
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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DAttachmentMarshallerImpl.java68 public String addMtomAttachment(byte[] data, int offset, int length, String mimeType, String elementNamespace, String elementLocalName) { argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DValidationEventLocatorImpl.java155 private int offset = -1; field in class:ValidationEventLocatorImpl
182 return offset;
186 * Set the offset field on this event locator.
188 * @param _offset the offset
191 this.offset = _offset;
265 return MessageFormat.format("[node={0},object={1},url={2},line={3},col={4},offset={5}]",
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageConvCopyEdge.c330 mlib_s32 tmask = cmask & ((1 << nchan) - 1), mask1, offset; local
352 offset = pdst_row - (mlib_u8 *) dpdst;
353 dpsrc = (mlib_d64 *) vis_alignaddr(psrc_row, -offset);
354 mask1 = (tmask >> offset);
377 offset = pdst_row - (mlib_u8 *) dpdst;
378 dpsrc = (mlib_d64 *) vis_alignaddr(psrc_row, -offset);
379 mask1 = (tmask >> offset);
407 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
421 offset = pdst_row - (mlib_u8 *) dpdst;
422 dpsrc = (mlib_d64 *) vis_alignaddr(psrc_row, -offset);
528 mlib_s32 tmask = cmask & ((1 << nchan) - 1), mask1, offset; local
602 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
723 mlib_s32 tmask = cmask & ((1 << nchan) - 1), mask1, offset; local
795 mlib_s32 tmask = cmask & 7, mask0, mask1, mask2, offset; local
915 mlib_s32 tmask = cmask & 15, mask0, mask1, offset; local
[all...]
H A Dmlib_v_ImageCopy_f.c45 * s_offset source image line bit offset
46 * d_offset destination image line bit offset
123 mlib_s32 offset)
129 mlib_s32 j; /* offset of address in dst */
137 if (size < (8 - offset)) {
139 mask >>= offset; local
145 mask = mask0 >> offset;
150 size = size - 8 + offset;
210 mlib_s32 j; /* offset of address in dst */
120 mlib_ImageCopy_bit_al(const mlib_u8 *sa, mlib_u8 *da, mlib_s32 size, mlib_s32 offset) argument
/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/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c39 jlong handle, jlong address, jint len, jlong offset, jlong ov)
44 lpOverlapped->Offset = (DWORD)offset;
45 lpOverlapped->OffsetHigh = (DWORD)((long)(offset >> 32));
69 jlong handle, jlong address, jint len, jlong offset, jlong ov)
74 lpOverlapped->Offset = (DWORD)offset;
75 lpOverlapped->OffsetHigh = (DWORD)((long)(offset >> 32));
38 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_readFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
68 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_writeFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestShortBuffer.java99 int offset = 2 + i*5;
101 test.testUpdateWithUpdate(offset);
103 test.testDoFinalWithUpdate(offset);
132 private void testUpdateWithUpdate(int offset) throws Exception { argument
135 byte[] out1 = ci.update(in, 0, offset);
141 stored = ci.update(in, offset, in.length-offset, SHORTBUFFER);
146 stored = ci.update(in, offset, in.length-offset,
172 private void testDoFinalWithUpdate(int offset) throw argument
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DClientTimeout.java244 public int read(byte[] data, int offset, int len) throws IOException { argument
250 return ins.read(data, offset, len);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DContextualGlyphSubstProc2.cpp77 le_uint32 offset = SWAPL(perGlyphTable(markIndex, success)); local
79 TTGlyphID newGlyph = lookup(offset, mGlyph, success);
84 le_uint32 offset = SWAPL(perGlyphTable(currIndex, success)); local
86 TTGlyphID newGlyph = lookup(offset, thisGlyph, success);
101 TTGlyphID ContextualGlyphSubstitutionProcessor2::lookup(le_uint32 offset, LEGlyphID gid, LEErrorCode &success) argument
105 LEReferenceTo<LookupTable> lookupTable(perGlyphTable, success, offset);

Completed in 59 milliseconds

1234567891011>>