Searched refs:offset (Results 101 - 125 of 1222) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/org/w3c/dom/
H A DText.java71 * Breaks this node into two nodes at the specified <code>offset</code>,
73 * will contain all the content up to the <code>offset</code> point. A
75 * after the <code>offset</code> point, is returned. If the original
77 * of the original node. When the <code>offset</code> is equal to the
79 * @param offset The 16-bit unit offset at which to split, starting from
83 * INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
87 public Text splitText(int offset) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelChannelMixer.java45 public boolean process(float[][] buffer, int offset, int len); argument
/openjdk7/hotspot/src/cpu/zero/vm/
H A DfakeStubFrame_zero.hpp54 int offset,
53 identify_word(int frame_index, int offset, char* fieldbuf, char* valuebuf, int buflen) const argument
H A Dinterp_masm_zero.hpp41 int offset) {
39 delayed_value_impl(intptr_t* delayed_value_addr, Register tmp, int offset) argument
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java100 public int following(int offset) { argument
101 validateOffset(offset);
104 if (i > offset) {
112 public int preceding(int offset) { argument
113 validateOffset(offset);
116 if (i < offset) {
124 public boolean isBoundary(int offset) { argument
126 return super.isBoundary(offset);
161 private void validateOffset(int offset) { argument
162 if (offset < boundarie
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java45 int alignedOffset(int offset) { argument
46 return Bits.roundTo(bci + offset, jintSize) - bci;
66 int javaSignedWordAt(int offset) { argument
67 return method.getBytecodeIntArg(bci + offset);
70 short javaShortAt(int offset) { argument
71 return method.getBytecodeShortArg(bci + offset);
74 byte javaByteAt(int offset) { argument
75 return method.getBytecodeByteArg(bci + offset);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DByteLookupTable.java34 * and it contains an offset which will be subtracted from the
54 * band. The offset will be subtracted from input
58 * @param offset the value subtracted from the input values
62 * @throws IllegalArgumentException if <code>offset</code> is
66 public ByteLookupTable(int offset, byte data[][]) { argument
67 super(offset,data.length);
80 * bands. The offset will be subtracted from input
83 * @param offset the value subtracted from the input values
86 * @throws IllegalArgumentException if <code>offset</code> is
90 public ByteLookupTable(int offset, byt argument
[all...]
H A DShortLookupTable.java34 * and it contains an offset which will be subtracted from the
54 * band. The offset will be subtracted from the input
58 * @param offset the value subtracted from the input values
63 public ShortLookupTable(int offset, short data[][]) { argument
64 super(offset,data.length);
77 * band. The offset will be subtracted from the input
80 * @param offset the value subtracted from the input values
84 public ShortLookupTable(int offset, short data[]) { argument
85 super(offset,data.length);
117 * <code>(src[i]&0xffff)-offset</cod
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.hpp42 virtual bool decode(address pc, char* buf, int buflen, int* offset,
44 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.hpp45 bool decode(address addr, char *buf, int buflen, int* offset, const char* filepath = NULL);
46 bool decode(address addr, char *buf, int buflen, int* offset, const void *base) { argument
H A Ddecoder.hpp46 // decode an pc address to corresponding function name and an offset from the beginning of
48 virtual bool decode(address pc, char* buf, int buflen, int* offset,
50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
82 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { argument
103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DSerializeWithException.java55 for (int offset = 0; offset < 200; offset++) {
65 ostream.setExceptionOffset(offset);
88 "offset " + offset);
93 " not expected at offset " + offset);
122 public void setExceptionOffset(int offset) { argument
123 exceptionOffset = offset;
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DReplaceableString.java93 * @param offset offset into the contents, from 0 to
97 public char charAt(int offset) { argument
98 return buf.charAt(offset);
117 * @param dstStart the start offset in the destination array.
/openjdk7/jdk/test/javax/crypto/spec/GCMParameterSpec/
H A DGCMParameterSpecTest.java101 int tLen, byte[] src, int offset, int len) {
104 new GCMParameterSpec(tLen, src, offset, len);
109 Arrays.copyOfRange(src, offset, offset + len))) {
110 System.out.println(offset + " " + len);
111 System.out.println(Arrays.copyOfRange(src, offset, len)[0]);
121 int tLen, byte[] src, int offset, int len) {
123 new GCMParameterSpec(tLen, src, offset, len);
100 newGCMParameterSpecPass( int tLen, byte[] src, int offset, int len) argument
120 newGCMParameterSpecFail( int tLen, byte[] src, int offset, int len) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DWrapperInputStream.java107 public void read_boolean_array(boolean[] value, int offset, int length) { argument
108 stream.read_boolean_array(value, offset, length);
110 public void read_char_array(char[] value, int offset, int length) { argument
111 stream.read_char_array(value, offset, length);
113 public void read_wchar_array(char[] value, int offset, int length) { argument
114 stream.read_wchar_array(value, offset, length);
116 public void read_octet_array(byte[] value, int offset, int length) { argument
117 stream.read_octet_array(value, offset, length);
119 public void read_short_array(short[] value, int offset, int length) { argument
120 stream.read_short_array(value, offset, lengt
122 read_ushort_array(short[] value, int offset, int length) argument
125 read_long_array(int[] value, int offset, int length) argument
128 read_ulong_array(int[] value, int offset, int length) argument
131 read_longlong_array(long[] value, int offset, int length) argument
134 read_ulonglong_array(long[] value, int offset, int length) argument
137 read_float_array(float[] value, int offset, int length) argument
140 read_double_array(double[] value, int offset, int length) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjArray.java58 long offset = baseOffsetInBytes(BasicType.T_OBJECT) + (index * elementSize);
60 return getHandle().getCompOopHandleAt(offset);
62 return getHandle().getOopHandleAt(offset);
79 long offset = baseOffset + (index * elementSize);
82 field = new NarrowOopField(new IndexableFieldIdentifier(index), offset, false);
84 field = new OopField(new IndexableFieldIdentifier(index), offset, false);
H A DDataLayout.java62 private int offset; field in class:DataLayout
68 offset = o;
73 offset = o;
77 public int dp() { return offset; }
80 return data.getJByteAt(offset + at) & 0xff;
84 return data.getJShortAt(offset + at) & 0xffff;
89 return (int)data.getCIntegerAt(offset + cellOffset(index), MethodData.cellSize, false);
97 handle = data.getOopHandleAt(offset + cellOffset(index));
104 return data.getAddressAt(offset + cellOffset(index));
106 return data.getOopHandleAt(offset
[all...]
/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/hotspot/src/cpu/x86/vm/
H A Dframe_x86.hpp148 intptr_t ptr_at(int offset) const {
149 return *ptr_at_addr(offset);
152 void ptr_at_put(int offset, intptr_t value) { argument
153 *ptr_at_addr(offset) = value;
169 intptr_t* ptr_at_addr(int offset) const {
170 return (intptr_t*) addr_at(offset);
/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;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.h50 * Extracts a value at the given offset from the provided packed value.
52 #define EXTRACT_VAL(packedval, offset, mask) \
53 (((packedval) >> (offset)) & (mask))
54 #define EXTRACT_BYTE(packedval, offset) \
55 (unsigned char)EXTRACT_VAL(packedval, offset, 0xff)
56 #define EXTRACT_BOOLEAN(packedval, offset) \
57 (jboolean)EXTRACT_VAL(packedval, offset, 0x1)
/openjdk7/langtools/test/tools/javap/classfile/deps/
H A DT6907575.java65 int offset = 0;
67 while (offset < buf.length && (n = r.read(buf, offset, buf.length - offset)) != -1)
68 offset += n;
69 return new String(buf, 0, offset);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultFormatter.java344 * the character at <code>offset</code> should be skipped when
347 boolean isNavigatable(int offset) { argument
361 * Returns the next editable character starting at offset incrementing
362 * the offset by <code>direction</code>.
364 private int getNextNavigatableChar(int offset, int direction) { argument
367 while (offset >= 0 && offset < max) {
368 if (isNavigatable(offset)) {
369 return offset;
371 offset
382 getReplaceString(int offset, int deleteLength, String replaceString) argument
465 getNextCursorPosition(int offset, int direction) argument
492 repositionCursor(int offset, int direction) argument
547 replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
628 getReplaceHolder(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
647 int offset; field in class:DefaultFormatter.ReplaceHolder
663 reset(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
725 remove(FilterBypass fb, int offset, int length) argument
736 insertString(FilterBypass fb, int offset, String string, AttributeSet attr) argument
749 replace(FilterBypass fb, int offset, int length, String text, AttributeSet attr) argument
[all...]
/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/share/classes/java/text/
H A DRuleBasedBreakIterator.java392 int offset = HEADER_LENGTH;
393 for (int i = 0; i < stateTableLength; i++, offset+=2) {
394 stateTable[i] = BreakIterator.getShort(buffer, offset);
399 for (int i = 0; i < backwardsStateTableLength; i++, offset+=2) {
400 backwardsStateTable[i] = BreakIterator.getShort(buffer, offset);
405 for (int i = 0; i < endStatesLength; i++, offset++) {
406 endStates[i] = buffer[offset] == 1;
411 for (int i = 0; i < lookaheadStatesLength; i++, offset++) {
412 lookaheadStates[i] = buffer[offset] == 1;
417 for (int i = 0; i < BMP_INDICES_LENGTH; i++, offset
749 checkOffset(int offset, CharacterIterator text) argument
761 following(int offset) argument
804 preceding(int offset) argument
821 isBoundary(int offset) argument
[all...]

Completed in 90 milliseconds

1234567891011>>