Searched refs:offset (Results 51 - 75 of 1222) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DOutputStream.java124 * @param offset offset on the stream.
127 public abstract void write_boolean_array(boolean[] value, int offset, argument
132 * @param offset offset on the stream.
135 public abstract void write_char_array(char[] value, int offset, argument
140 * @param offset offset on the stream.
143 public abstract void write_wchar_array(char[] value, int offset, argument
148 * @param offset offse
151 write_octet_array(byte[] value, int offset, int length) argument
159 write_short_array(short[] value, int offset, int length) argument
167 write_ushort_array(short[] value, int offset, int length) argument
175 write_long_array(int[] value, int offset, int length) argument
183 write_ulong_array(int[] value, int offset, int length) argument
191 write_longlong_array(long[] value, int offset, int length) argument
199 write_ulonglong_array(long[] value, int offset, int length) argument
207 write_float_array(float[] value, int offset, int length) argument
215 write_double_array(double[] value, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DIvParameterSpec.java58 * bytes in <code>iv</code>, beginning at <code>offset</code>
62 * <code>iv[offset]</code> and <code>iv[offset+len-1]</code> inclusive.
65 * bytes of the buffer beginning at <code>offset</code> inclusive
67 * @param offset the offset in <code>iv</code> where the IV
71 * or <code>(iv.length - offset < len)</code>
72 * @throws ArrayIndexOutOfBoundsException is thrown if <code>offset</code>
75 public IvParameterSpec(byte[] iv, int offset, int len) { argument
79 if (iv.length - offset < le
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DUnmarshallerChain.java39 * A ticket dispenser also maintains the offset for handlers
46 * This offset allows child unmarshallers to have its own {@link Scope} without colliding with siblings.
48 private int offset = 0; field in class:UnmarshallerChain
57 * Allocates a new {@link Scope} offset.
60 return offset++;
64 * Gets the number of total scope offset allocated.
67 return offset;
/openjdk7/corba/src/share/classes/sun/corba/
H A DBridge.java206 * object <code>o</code> at the given offset.
207 * The result is undefined unless the offset was obtained from
211 * @param o Java heap object in which the field from which the offset
213 * @param offset indication of where the field resides in a Java heap
219 public final int getInt(Object o, long offset) argument
221 return unsafe.getInt( o, offset ) ;
236 * @param offset indication of where the field resides in a Java heap
242 public final void putInt(Object o, long offset, int x) argument
244 unsafe.putInt( o, offset, x ) ;
250 public final Object getObject(Object o, long offset) argument
258 putObject(Object o, long offset, Object x) argument
264 getBoolean(Object o, long offset) argument
269 putBoolean(Object o, long offset, boolean x) argument
274 getByte(Object o, long offset) argument
279 putByte(Object o, long offset, byte x) argument
284 getShort(Object o, long offset) argument
289 putShort(Object o, long offset, short x) argument
294 getChar(Object o, long offset) argument
299 putChar(Object o, long offset, char x) argument
304 getLong(Object o, long offset) argument
309 putLong(Object o, long offset, long x) argument
314 getFloat(Object o, long offset) argument
319 putFloat(Object o, long offset, float x) argument
324 getDouble(Object o, long offset) argument
329 putDouble(Object o, long offset, double x) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DStringCharBuffer.java50 offset + this.position());
58 int offset) {
59 super(mark, pos, limit, cap, null, offset);
65 position(), limit(), capacity(), offset);
73 return str.charAt(nextGetIndex() + offset);
77 return str.charAt(checkIndex(index) + offset);
99 return str.toString().substring(start + offset, end + offset);
110 offset);
53 StringCharBuffer(CharSequence s, int mark, int pos, int limit, int cap, int offset) argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCodeBuffer.hpp67 // Create a unique offset in the buffer.
70 int offset = masm()->offset(); local
72 return offset;
75 // Inline an oop into the buffer and return its offset.
79 int offset = masm()->offset(); local
81 return offset;
84 // Inline a block of non-oop data into the buffer and return its offset.
88 int offset local
[all...]
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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
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);
/openjdk7/jdk/src/share/classes/sun/swing/text/
H A DCompoundPrintable.java41 private int offset = 0; field in class:CompoundPrintable
52 ret = printables.peek().print(graphics, pf, pageIndex - offset);
56 offset += printables.poll().getNumberOfPages();
70 return offset;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DIntTrie.java83 * @return offset to data
88 int offset = getCodePointOffset(ch);
89 return (offset >= 0) ? m_data_[offset] : m_initialValue_;
95 * Returned data may contain folding offset information for the next
108 * Get a value from a folding offset (from the value of a lead surrogate)
111 * folding offset
122 int offset = m_dataManipulate_.getFoldingOffset(leadvalue);
123 if (offset > 0) {
124 return m_data_[getRawOffset(offset,
[all...]
H A DReplaceable.java56 * offset and a limit offset. The range of characters thus specified
57 * includes the characters at offset start..limit-1. That is, the
58 * start offset is inclusive, and the limit offset is exclusive.
95 * Returns the 16-bit code unit at the given offset into the text.
96 * @param offset an integer between 0 and <code>length()</code>-1
98 * @return 16-bit code unit of text at given offset
101 char charAt(int offset); argument
119 * @param dstStart the start offset i
[all...]
H A DCharTrie.java161 * Gives out the data offset in the trie
162 * @return data offset in the trie
187 * @return offset to data
192 int offset;
197 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
199 return m_data_[offset];
203 offset = getCodePointOffset(ch);
207 return (offset >= 0) ? m_data_[offset] : m_initialValue_;
213 * Returned data may contain folding offset informatio
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAATileGenerator.java104 public void getAlpha(byte tile[], int offset, int rowstride); argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineArgs.java45 private int offset; // offset/len for the appData array. field in class:EngineArgs
70 EngineArgs(ByteBuffer [] appData, int offset, int len, argument
73 init(netData, appData, offset, len);
79 EngineArgs(ByteBuffer netData, ByteBuffer [] appData, int offset, argument
82 init(netData, appData, offset, len);
97 int offset, int len) {
103 if ((offset < 0) || (len < 0) || (offset > appData.length - len)) {
117 for (int i = offset;
96 init(ByteBuffer netData, ByteBuffer [] appData, int offset, int len) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegexParser.java72 int offset; field in class:RegexParser
121 this.offset = 0;
134 if (this.offset != this.regexlen)
135 throw ex("parser.parse.1", this.offset);
137 throw ex("parser.factor.0", this.offset);
165 if (this.offset >= this.regexlen) {
172 int ch = this.regex.charAt(this.offset++);
181 if (this.offset >= this.regexlen)
182 throw ex("parser.next.1", this.offset-1);
183 this.chardata = this.regex.charAt(this.offset
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstance.cpp72 int offset = field->offset(); local
76 return ciConstant(field_btype, obj->byte_field(offset));
79 return ciConstant(field_btype, obj->char_field(offset));
82 return ciConstant(field_btype, obj->short_field(offset));
85 return ciConstant(field_btype, obj->bool_field(offset));
88 return ciConstant(field_btype, obj->int_field(offset));
91 return ciConstant(obj->float_field(offset));
94 return ciConstant(obj->double_field(offset));
97 return ciConstant(obj->long_field(offset));
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp109 st->print(" @%d ", offset());
131 as_int = (jint)obj->byte_field(offset());
132 st->print(" %d", obj->byte_field(offset()));
135 as_int = (jint)obj->char_field(offset());
137 jchar c = obj->char_field(offset());
143 st->print(" %lf", obj->double_field(offset()));
146 as_int = obj->int_field(offset());
147 st->print(" %f", obj->float_field(offset()));
150 as_int = obj->int_field(offset());
151 st->print(" %d", obj->int_field(offset()));
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DCallDecoder.java31 // sign extend, word align the offset
32 int offset = (instruction & DISP_30_MASK) << 2;
33 return factory.newCallInstruction(new PCRelativeAddress(offset));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DExceptionTableElement.java58 private long offset; field in class:ExceptionTableElement
60 public ExceptionTableElement(OopHandle handle, long offset) { argument
62 this.offset = offset;
66 return (int) handle.getCIntegerAt(offset + offsetOfStartPC, 2, true);
70 return (int) handle.getCIntegerAt(offset + offsetOfEndPC, 2, true);
74 return (int) handle.getCIntegerAt(offset + offsetOfHandlerPC, 2, true);
78 return (int) handle.getCIntegerAt(offset + offsetOfCatchTypeIndex, 2, true);
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClient.java158 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>incoming</tt>
163 * @param offset The starting position at <tt>incoming</tt> of the bytes to use.
172 public abstract byte[] unwrap(byte[] incoming, int offset, int len) argument
186 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
190 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
199 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
H A DSaslServer.java151 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>incoming</tt>
156 * @param offset The starting position at <tt>incoming</tt> of the bytes to use.
165 public abstract byte[] unwrap(byte[] incoming, int offset, int len) argument
178 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
182 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
191 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DCharReader.java37 public CharReader(char buf[], int offset, int length) { argument
38 super(buf, offset, length);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
72 public Address getAddressAt(long offset) argument
74 return debugger.readAddress(addr + offset);
77 public Address getCompOopAddressAt(long offset) argument
79 return debugger.readCompOopAddress(addr + offset);
86 public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
87 return debugger.readJBoolean(addr + offset);
90 public byte getJByteAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
91 return debugger.readJByte(addr + offset);
94 getJCharAt(long offset) argument
98 getJDoubleAt(long offset) argument
102 getJFloatAt(long offset) argument
106 getJIntAt(long offset) argument
110 getJLongAt(long offset) argument
114 getJShortAt(long offset) argument
118 getOopHandleAt(long offset) argument
123 getCompOopHandleAt(long offset) argument
129 setCIntegerAt(long offset, long numBytes, long value) argument
132 setAddressAt(long offset, Address value) argument
135 setJBooleanAt(long offset, boolean value) argument
139 setJByteAt(long offset, byte value) argument
143 setJCharAt(long offset, char value) argument
147 setJDoubleAt(long offset, double value) argument
151 setJFloatAt(long offset, float value) argument
155 setJIntAt(long offset, int value) argument
159 setJLongAt(long offset, long value) argument
163 setJShortAt(long offset, short value) argument
167 setOopHandleAt(long offset, OopHandle value) argument
176 addOffsetTo(long offset) argument
184 addOffsetToAsOopHandle(long offset) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
72 public Address getAddressAt(long offset) argument
74 return debugger.readAddress(addr + offset);
77 public Address getCompOopAddressAt(long offset) argument
79 return debugger.readCompOopAddress(addr + offset);
86 public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
87 return debugger.readJBoolean(addr + offset);
90 public byte getJByteAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
91 return debugger.readJByte(addr + offset);
94 getJCharAt(long offset) argument
98 getJDoubleAt(long offset) argument
102 getJFloatAt(long offset) argument
106 getJIntAt(long offset) argument
110 getJLongAt(long offset) argument
114 getJShortAt(long offset) argument
118 getOopHandleAt(long offset) argument
123 getCompOopHandleAt(long offset) argument
129 setCIntegerAt(long offset, long numBytes, long value) argument
132 setAddressAt(long offset, Address value) argument
135 setJBooleanAt(long offset, boolean value) argument
139 setJByteAt(long offset, byte value) argument
143 setJCharAt(long offset, char value) argument
147 setJDoubleAt(long offset, double value) argument
151 setJFloatAt(long offset, float value) argument
155 setJIntAt(long offset, int value) argument
159 setJLongAt(long offset, long value) argument
163 setJShortAt(long offset, short value) argument
167 setOopHandleAt(long offset, OopHandle value) argument
176 addOffsetTo(long offset) argument
184 addOffsetToAsOopHandle(long offset) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
71 public Address getAddressAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
72 return debugger.readAddress(addr + offset);
75 public Address getCompOopAddressAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
76 return debugger.readCompOopAddress(addr + offset);
83 public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
84 return debugger.readJBoolean(addr + offset);
87 public byte getJByteAt(long offset) throws UnalignedAddressException, UnmappedAddressException { argument
88 return debugger.readJByte(addr + offset);
91 getJCharAt(long offset) argument
95 getJDoubleAt(long offset) argument
99 getJFloatAt(long offset) argument
103 getJIntAt(long offset) argument
107 getJLongAt(long offset) argument
111 getJShortAt(long offset) argument
115 getOopHandleAt(long offset) argument
119 getCompOopHandleAt(long offset) argument
125 setCIntegerAt(long offset, long numBytes, long value) argument
128 setAddressAt(long offset, Address value) argument
131 setJBooleanAt(long offset, boolean value) argument
135 setJByteAt(long offset, byte value) argument
139 setJCharAt(long offset, char value) argument
143 setJDoubleAt(long offset, double value) argument
147 setJFloatAt(long offset, float value) argument
151 setJIntAt(long offset, int value) argument
155 setJLongAt(long offset, long value) argument
159 setJShortAt(long offset, short value) argument
163 setOopHandleAt(long offset, OopHandle value) argument
172 addOffsetTo(long offset) argument
180 addOffsetToAsOopHandle(long offset) argument
[all...]

Completed in 70 milliseconds

1234567891011>>