Searched defs:offset (Results 426 - 450 of 840) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/classfile/
H A DaltHashing.cpp64 int offset = 0; local
68 jint k1 = (data[offset] & 0x0FF)
69 | (data[offset + 1] & 0x0FF) << 8
70 | (data[offset + 2] & 0x0FF) << 16
71 | data[offset + 3] << 24;
74 offset += 4;
92 k1 ^= (data[offset + 2] & 0xff) << 16;
95 k1 ^= (data[offset + 1] & 0xff) << 8;
98 k1 ^= (data[offset] & 0xff);
H A DstackMapFrame.hpp100 StackMapFrame(int32_t offset, argument
108 ClassVerifier* v) : _offset(offset), _flags(flags),
121 inline void set_offset(int32_t offset) { _offset = offset; } argument
127 inline int32_t offset() const { return _offset; } function in class:StackMapFrame
H A DstackMapTable.cpp47 int offset = frame->offset(); local
48 if (offset >= code_len || code_data[offset] == 0) {
51 "StackMapTable error: bad offset");
61 int StackMapTable::get_index_from_offset(int32_t offset) const {
64 if (_frame_array[i]->offset() == offset) {
68 return i; // frame with offset doesn't exist in the array
79 // specified offset an
199 u2 offset = _stream->get_u2(THREAD); local
216 int offset; local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp61 unsigned int align_code_offset(int offset) { argument
64 ((offset + (int)CodeHeap::header_size() + (CodeEntryAlignment-1)) & ~(CodeEntryAlignment-1))
H A DdebugInfo.hpp255 DebugInfoReadStream(const nmethod* code, int offset, GrowableArray<ScopeValue*>* obj_pool = NULL) : argument
256 CompressedReadStream(code->scopes_data_begin(), offset) {
H A Dvmreg.hpp150 // Typically used to adjust a virtual frame slots by amounts that are offset by
154 VMReg bias(int offset) { argument
156 // VMReg res = VMRegImpl::as_VMReg(value() + offset);
157 VMReg res = stack2reg(reg2stack() + offset);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp134 void Rewriter::rewrite_member_reference(address bcp, int offset, bool reverse) { argument
135 address p = bcp + offset;
195 void Rewriter::rewrite_invokedynamic(address bcp, int offset, bool reverse) { argument
196 address p = bcp + offset;
231 void Rewriter::maybe_rewrite_ldc(address bcp, int offset, bool is_wide, argument
235 address p = bcp + offset;
254 address p = bcp + offset;
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp159 int offset() const { function in class:FieldStreamBase
160 return field()->offset();
163 void set_offset(int offset) { argument
164 field()->set_offset(offset);
H A DklassVtable.hpp46 int _tableOffset; // offset of start of vtable data within klass
207 int offset() const { return _offset; } function in class:VALUE_OBJ_CLASS_SPEC
209 static itableMethodEntry* method_entry(klassOop k, int offset) { return (itableMethodEntry*)(((address)k) + offset); } argument
212 void initialize(klassOop interf, int offset) { _interface = interf; _offset = offset; } argument
214 // Static size and offset accessors
234 // Static size and offset accessors
244 // ---- offset table ---
246 // offset t
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DNativeUnpack.java54 private synchronized native long start(ByteBuffer buf, long offset); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DProxyInputStream.java101 public void read_boolean_array(boolean[] value, int offset, int length) { argument
102 in.read_boolean_array(value, offset, length);
105 public void read_char_array(char[] value, int offset, int length) { argument
106 in.read_char_array(value, offset, length);
109 public void read_wchar_array(char[] value, int offset, int length) { argument
110 in.read_wchar_array(value, offset, length);
113 public void read_octet_array(byte[] value, int offset, int length) { argument
114 in.read_octet_array(value, offset, length);
117 public void read_short_array(short[] value, int offset, int length) { argument
118 in.read_short_array(value, offset, lengt
121 read_ushort_array(short[] value, int offset, int length) argument
125 read_long_array(int[] value, int offset, int length) argument
129 read_ulong_array(int[] value, int offset, int length) argument
133 read_longlong_array(long[] value, int offset, int length) argument
137 read_ulonglong_array(long[] value, int offset, int length) argument
141 read_float_array(float[] value, int offset, int length) argument
145 read_double_array(double[] value, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java56 final private int offset; field in class:AudioFloatConverter.AudioFloatLSBFilter
69 offset = bigEndian ? (stepsize - 1) : 0;
97 for (int i = out_offset + offset; i < out_offset_end; i += stepsize) {
110 for (int i = in_offset + offset; i < in_offset_end; i += stepsize) {
H A DModelAbstractChannelMixer.java35 public abstract boolean process(float[][] buffer, int offset, int len); argument
H A DModelAbstractOscillator.java70 public int read(float[][] buffer, int offset, int len) throws IOException { argument
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...]
H A DSF2Sample.java124 public void setData(byte[] data, int offset, int length) { argument
125 this.data = new ModelByteBuffer(data, offset, length);
136 public void setData24(byte[] data24, int offset, int length) { argument
137 this.data24 = new ModelByteBuffer(data24, offset, length);
141 public void setData(File file, int offset, int length) {
144 this.sampleOffset = offset;
H A DSoftAbstractResampler.java257 public int read(float[][] buffer, int offset, int len) argument
274 ox[0] = offset;
275 int ox_end = len + offset;
328 return ox[0] - offset;
368 return ox[0] - offset;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DIntegrityHmac.java333 * @param offset
337 protected void engineUpdate(byte buf[], int offset, int len) argument
341 this._macAlgorithm.update(buf, offset, len);
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLM.java136 int readInt(int offset) throws NTLMException { argument
138 return (internal[offset] & 0xff) +
139 ((internal[offset+1] & 0xff) << 8) +
140 ((internal[offset+2] & 0xff) << 16) +
141 ((internal[offset+3] & 0xff) << 24);
148 int readShort(int offset) throws NTLMException { argument
150 return (internal[offset] & 0xff) +
151 ((internal[offset+1] & 0xff << 8));
158 byte[] readBytes(int offset, int len) throws NTLMException { argument
160 return Arrays.copyOfRange(internal, offset, offse
167 readSecurityBuffer(int offset) argument
179 readSecurityBuffer(int offset, boolean unicode) argument
214 writeShort(int offset, int number) argument
219 writeInt(int offset, int number) argument
226 writeBytes(int offset, byte[] data) argument
230 writeSecurityBuffer(int offset, byte[] data) argument
246 writeSecurityBuffer(int offset, String str, boolean unicode) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DAbstractSaslImpl.java264 String traceTag, byte[] output, int offset, int len) {
281 new ByteArrayInputStream(output, offset, len), out);
263 traceOutput(String srcClass, String srcMethod, String traceTag, byte[] output, int offset, int len) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaValueArray.java102 long offset = getOffset() + idSize + 4;
104 int len = buf.getInt(offset);
106 byte type = buf.getByte(offset + 4);
114 long offset = getOffset() + idSize + 4;
116 int length = buf.getInt(offset);
118 byte type = buf.getByte(offset + 4);
124 buf.get(offset + 5, res);
147 public JavaValueArray(byte elementSignature, long offset) { argument
148 super(offset);
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceContext.java131 * <code>Image</code> to display while the Drag is taking place, the offset
148 * If <code>Image</code> is not <code>null</code> and the offset is
164 * @param offset the offset of the image origin from the hotspot at the
179 * if dragImage is non-null and offset is null
183 Image dragImage, Point offset, Transferable t,
214 if (dragImage != null && offset == null) {
215 throw new NullPointerException("offset");
181 DragSourceContext(DragSourceContextPeer dscp, DragGestureEvent trigger, Cursor dragCursor, Image dragImage, Point offset, Transferable t, DragSourceListener dsl) argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DOpenType.java387 * @param offset index of first byte to return from table
391 * starting at <code>offset</code> byte and including
394 public byte[] getFontTable(int sfntTag, int offset, int count); argument
404 * @param offset index of first byte to return from table
408 * starting at <code>offset</code> byte and including
411 public byte[] getFontTable(String strSfntTag, int offset, int count); argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp87 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
101 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
243 // - Copy the code at given offset to an inlined buffer (first the bytes, then the number of bytes)
264 int being_initialized_entry = __ offset();
293 int offset = __ offset(); local
315 bytes_to_skip += __ offset() - offset;
325 int being_initialized_entry_offset = __ offset() - being_initialized_entry + sizeof_patch_record;
H A Dframe_sparc.hpp118 // offset of each block, in order of increasing address:
136 // stores the FP for a frame at a fixed offset from the frame's SP,
208 int offset = callee_register_argument_save_area_sp_offset + param_ix; local
210 return fp_addr_at(offset);
212 return sp_addr_at(offset);

Completed in 67 milliseconds

<<11121314151617181920>>