Searched refs:offset (Results 226 - 250 of 1222) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.cpp61 int offset = 0; local
64 _stack_slots_offset = offset;
65 offset += stack_words;
68 _monitors_slots_offset = offset;
69 offset += monitor_words;
72 _oop_tmp_slot_offset = offset++;
75 _method_slot_offset = offset++;
82 builder()->CreateStore(stack_pointer, slot_addr(offset++));
85 _pc_slot_offset = offset++;
89 LLVMValue::intptr_constant(ZeroFrame::SHARK_FRAME), slot_addr(offset
165 slot_addr(int offset, const Type* type, const char* name) const argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/
H A DBufImgSurfaceData.h33 jint offset; member in struct:_BufImgSDOps
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DArabicLayoutEngine.cpp94 le_int32 ArabicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, argument
102 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
122 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage);
127 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage);
132 void ArabicOpenTypeLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, argument
139 if (chars == NULL || offset < 0 || count < 0) {
145 OpenTypeLayoutEngine::adjustGlyphPositions(chars, offset, count, reverse, glyphStorage, success);
153 adjustMarkGlyphs(&chars[offset], coun
201 mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool , LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
226 adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
[all...]
H A DHanLayoutEngine.cpp79 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, argument
86 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
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...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java118 public int getText(char[] fillIn, int offset){ argument
121 if(offset < 0 || offset + length > fillIn.length){
126 fillIn[offset++] = ch;
H A DReplaceableUCharacterIterator.java170 public int getText(char[] fillIn, int offset){ argument
172 if(offset < 0 || offset + length > fillIn.length){
175 replaceable.getChars(0,length,fillIn,offset);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dsecoidt.h73 ECCurveName offset; member in struct:SECOidDataStr
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DMixedContentModel.java118 * @param offset The start offset position in the children.
122 public MixedContentModel(QName[] children, int[] type, int offset, int length , boolean ordered) { argument
128 fChildren[i] = new QName(children[offset + i]);
129 fChildrenType[i] = type[offset + i];
154 * @param offset Offset into the array where the children starts.
163 public int validate(QName[] children, int offset, int length) { argument
171 final QName curChild = children[offset + outIndex];
179 if (fChildren[inIndex].rawname != children[offset + outIndex].rawname) {
210 final QName curChild = children[offset
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.hpp60 virtual void offset_do(int offset) = 0;
119 uintptr_t entry_at(int offset) { int i = offset * bits_per_entry; return bit_mask()[i / BitsPerWord] >> (i % BitsPerWord); } argument
124 bool is_dead(int offset) { return (entry_at(offset) & (1 << dead_bit_number)) != 0; } argument
150 bool is_oop (int offset) { return (entry_at(offset) & (1 << oop_bit_number )) != 0; } argument
H A Dbytecode.hpp59 address addr_at (int offset) const { return (address)_bcp + offset; }
60 u_char byte_at(int offset) const { return *addr_at(offset); }
61 address aligned_addr_at (int offset) const { return (address)round_to((intptr_t)addr_at(offset), jintSize); }
62 int aligned_offset (int offset) const { return aligned_addr_at(offset) - addr_at(0); }
65 int get_Java_u2_at (int offset) const { return Bytes::get_Java_u2(addr_at(offset)); }
123 get_constant_u1(int offset, Bytecodes::Code bc) const argument
127 get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const argument
155 int offset() const { return get_Java_u4_at(1 * jintSize); } function in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java292 * Returns the index within this sequence that is offset from the
298 * @param index the index to be offset
299 * @param codePointOffset the offset in code points
330 * @param srcBegin start copying at this offset.
331 * @param srcEnd stop copying at this offset.
333 * @param dstBegin offset into <code>dst</code>.
516 * index {@code offset}, are appended, in order, to the contents
526 * @param offset the index of the first {@code char} to append.
530 * if {@code offset < 0} or {@code len < 0}
531 * or {@code offset
533 append(char str[], int offset, int len) argument
897 insert(int index, char[] str, int offset, int len) argument
932 insert(int offset, Object obj) argument
967 insert(int offset, String str) argument
1004 insert(int offset, char[] str) argument
1127 insert(int offset, boolean b) argument
1150 insert(int offset, char c) argument
1177 insert(int offset, int i) argument
1200 insert(int offset, long l) argument
1223 insert(int offset, float f) argument
1246 insert(int offset, double d) argument
[all...]
/openjdk7/jdk/test/tools/launcher/6842838/
H A DCreateBadJar.java143 int offset = u32(bytes, pos+0x2a); // +0x2a chars of filename
146 " uncomp.size = " + uncompsize +" file offset = " + offset);
155 static int u8(byte[] data, int offset) { argument
156 return data[offset]&0xff;
159 static int u16(byte[] data, int offset) { argument
160 return u8(data,offset) + (u8(data,offset+1)<<8);
163 static int u32(byte[] data, int offset) { argument
164 return u16(data,offset)
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DSpanClipRenderer.java81 byte[] atile, int offset, int tsize,
84 renderPathTile(ctx, atile, offset, tsize, x, y, w, h);
88 byte[] atile, int offset, int tsize,
107 offset = 0;
109 fillTile(ri, atile, offset, tsize, band);
111 eraseTile(ri, atile, offset, tsize, band);
115 offset += (band[1] - y) * tsize + (band[0] - x);
117 atile, offset, tsize,
125 byte[] alpha, int offset, int tsize,
129 byte[] alpha, int offset, in
80 renderPathTile(Object ctx, byte[] atile, int offset, int tsize, int x, int y, int w, int h, ShapeSpanIterator sr) argument
87 renderPathTile(Object ctx, byte[] atile, int offset, int tsize, int x, int y, int w, int h) argument
124 fillTile(RegionIterator ri, byte[] alpha, int offset, int tsize, int[] band) argument
128 eraseTile(RegionIterator ri, byte[] alpha, int offset, int tsize, int[] band) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEventPortWrapper.java102 int offset = SIZEOF_PORT_EVENT * i + OFFSETOF_SOURCE;
103 return pollArray.getShort(offset);
107 int offset = SIZEOF_PORT_EVENT * i + OFFSETOF_EVENTS;
108 return pollArray.getInt(offset);
112 int offset = SIZEOF_PORT_EVENT * i + OFFSETOF_OBJECT;
114 return pollArray.getInt(offset);
116 return (int) pollArray.getLong(offset);
121 int offset = SIZEOF_PORT_EVENT * i + OFFSETOF_OBJECT;
123 pollArray.putInt(offset, fd);
125 pollArray.putLong(offset, f
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSContext.java219 * @param offset the offset within the inputBuf where the token begins.
236 public byte[] initSecContext(byte inputBuf[], int offset, int len) argument
372 * @param offset the offset within the inToken where the token begins.
388 public byte[] acceptSecContext(byte inToken[], int offset, int len) argument
557 * @param offset the offset within the inBuf where the data begins.
571 public byte[] wrap(byte inBuf[], int offset, int len, argument
638 * @param offset th
654 unwrap(byte[] inBuf, int offset, int len, MessageProp msgProp) argument
733 getMIC(byte []inMsg, int offset, int len, MessageProp msgProp) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp208 sizeof(intptr_t) + // offset of deopt orig pc
224 VMReg FrameMap::sp_offset2vmreg(ByteSize offset) const {
225 int offset_in_bytes = in_bytes(offset);
235 int offset = in_bytes(byte_offset_from_sp); local
236 assert(offset >= 0, "incorrect offset");
237 if (!Location::legal_offset_in_bytes(offset)) {
240 Location tmp_loc = Location::new_stk_loc(loc_type, offset);
267 int offset = _argument_locations->at(index); local
268 assert(offset !
272 ByteSize offset = sp_offset_for_spill(index - argcount()); local
279 ByteSize offset = sp_offset_for_slot(index); local
289 int offset = round_to(first_available_sp_in_frame + _reserved_argument_area_size, sizeof(double)) + local
297 int offset = (int) round_to(end_of_spills, HeapWordSize) + index * sizeof(BasicObjectLock); local
[all...]
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterDataLatin1.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/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java53 int offset)
119 vals[offset] = firstDst;
123 vals[offset + 2] = 0;
125 vals[offset + 2] = lastDst - firstDst + 1;
129 vals[offset + 4] = Math.max(secondDst - firstDst, 1);
136 * the source region, source subsampling, and destination offset
142 * source region being read, offset by the source subsampling
43 computeUpdatedPixels(int sourceOffset, int sourceExtent, int destinationOffset, int dstMin, int dstMax, int sourceSubsampling, int passStart, int passExtent, int passPeriod, int[] vals, int offset) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11FontMetrics.java182 public int charsWidth(char chars[], int offset, int length) { argument
186 return getMFCharsWidth(chars, offset, length, font);
190 for (int i = offset; i < offset + length; i++) {
205 private native int getMFCharsWidth(char chars[], int offset, int length, Font font); argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp72 address addr_at(int offset) const { return address(this) + offset; }
74 s_char sbyte_at(int offset) const { return *(s_char*) addr_at(offset); }
75 u_char ubyte_at(int offset) const { return *(u_char*) addr_at(offset); }
77 jint int_at(int offset) const { return *(jint*) addr_at(offset); }
79 intptr_t ptr_at(int offset) const { return *(intptr_t*) addr_at(offset); }
84 set_char_at(int offset, char c) argument
85 set_int_at(int offset, jint i) argument
86 set_ptr_at(int offset, intptr_t ptr) argument
87 set_oop_at(int offset, oop o) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelByteBuffer.java47 private long offset; field in class:ModelByteBuffer
141 this.offset = 0;
153 offset = beginIndex;
160 offset = 0;
162 offset = arrayOffset();
169 this.offset = 0;
173 public ModelByteBuffer(byte[] buffer, int offset, int len) { argument
175 this.offset = offset;
185 public ModelByteBuffer(File file, long offset, lon argument
[all...]
/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/src/share/classes/javax/swing/text/
H A DGapContent.java168 return new String(s.array, s.offset, s.count);
197 chars.offset = where;
201 chars.offset = g1 + where - g0;
208 chars.offset = where;
214 chars.offset = 0;
225 * @param offset the offset to track >= 0
229 public Position createPosition(int offset) throws BadLocationException { argument
238 int index = (offset < g0) ? offset
712 getPositionsInRange(Vector v, int offset, int length) argument
758 updateUndoPositions(Vector positions, int offset, int length) argument
859 InsertUndo(int offset, int length) argument
893 protected int offset; field in class:GapContent.InsertUndo
909 RemoveUndo(int offset, String string) argument
945 protected int offset; field in class:GapContent.RemoveUndo
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStream.java177 public final void write_boolean_array(boolean[] value, int offset, int length) { argument
178 impl.write_boolean_array(value, offset, length);
180 public final void write_char_array(char[] value, int offset, int length) { argument
181 impl.write_char_array(value, offset, length);
183 public final void write_wchar_array(char[] value, int offset, int length) { argument
184 impl.write_wchar_array(value, offset, length);
186 public final void write_octet_array(byte[] value, int offset, int length) { argument
187 impl.write_octet_array(value, offset, length);
189 public final void write_short_array(short[] value, int offset, int length) { argument
190 impl.write_short_array(value, offset, lengt
192 write_ushort_array(short[] value, int offset, int length) argument
195 write_long_array(int[] value, int offset, int length) argument
198 write_ulong_array(int[] value, int offset, int length) argument
201 write_longlong_array(long[] value, int offset, int length) argument
204 write_ulonglong_array(long[] value, int offset,int length) argument
207 write_float_array(float[] value, int offset, int length) argument
210 write_double_array(double[] value, int offset, int length) argument
315 write_any_array(org.omg.CORBA.Any[] seq, int offset, int length) argument
[all...]

Completed in 107 milliseconds

1234567891011>>