Searched refs:position (Results 276 - 300 of 718) sorted by relevance

<<11121314151617181920>>

/openjdk10/jdk/test/javax/net/ssl/ServerName/
H A DSSLEngineExplorerMatchedSNI.java107 int position = 0;
112 while (position < SSLExplorer.RECORD_HEADER_SIZE) {
117 position += n;
128 buffer.position(SSLExplorer.RECORD_HEADER_SIZE);
130 while (position < recordLength) {
135 position += n;
H A DSSLEngineExplorerWithCli.java98 int position = 0;
103 while (position < SSLExplorer.RECORD_HEADER_SIZE) {
108 position += n;
119 buffer.position(SSLExplorer.RECORD_HEADER_SIZE);
121 while (position < recordLength) {
126 position += n;
H A DSSLEngineExplorerWithSrv.java98 int position = 0;
103 while (position < SSLExplorer.RECORD_HEADER_SIZE) {
108 position += n;
119 buffer.position(SSLExplorer.RECORD_HEADER_SIZE);
121 while (position < recordLength) {
126 position += n;
/openjdk10/jdk/test/javax/net/ssl/SSLEngine/
H A DArrays.java154 appInArray1[appInArray1.length - 1].position());
223 strBB.position(0);
227 strBB.position(5);
231 strBB.position(15);
277 b.limit(b.position() + a[i].remaining());
283 b.position(b.limit());
/openjdk10/jdk/test/sun/nio/cs/OLD/
H A DDoubleByteEncoder.java88 int sp = src.arrayOffset() + src.position();
91 int dp = dst.arrayOffset() + dst.position();
144 src.position(sp - src.arrayOffset());
145 dst.position(dp - dst.arrayOffset());
150 int mark = src.position();
201 src.position(mark);
/openjdk10/jdk/test/java/util/zip/
H A DChecksumBase.java113 bb.position(i);
128 bb.position(i);
141 bb.position(i);
155 bb.position(i);
168 bb.position(i);
182 bb.position(i);
/openjdk10/hotspot/test/compiler/intrinsics/unsafe/
H A DByteBufferTest.java45 // position. Whenever this wrapper is written the backing array and
76 int position() { method in class:MyByteBuffer
77 if (buf.position() != pos)
79 return buf.position();
240 long getLong() { ck(buf.getLong(buf.position()), getLongX(pos)); long x = buf.getLong(); pos += 8; return x; }
241 int getInt() { ck(buf.getInt(buf.position()), getIntX(pos)); int x = buf.getInt(); pos += 4; return x; }
242 short getShort() { ck(buf.getShort(buf.position()), getShortX(pos)); short x = buf.getShort(); pos += 2; return x; }
243 char getChar() { ck(buf.getChar(buf.position()), (char)getShortX(pos)); char x = buf.getChar(); pos += 2; return x; }
244 double getDouble() { ck(buf.getDouble(buf.position()), getDoubleX(pos)); double x = buf.getDouble(); pos += 8; return x; }
245 float getFloat() { ck(buf.getFloat(buf.position()), getFloat
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/nio/cs/
H A DSingleByte.java44 src.position(sp - src.arrayOffset());
45 dst.position(dp - dst.arrayOffset());
68 int sp = src.arrayOffset() + src.position();
72 int dp = dst.arrayOffset() + dst.position();
94 int mark = src.position();
107 src.position(mark);
173 int sp = src.arrayOffset() + src.position();
177 int dp = dst.arrayOffset() + dst.position();
204 int mark = src.position();
226 src.position(mar
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/time/format/
H A DDateTimeFormatter.java1829 * Parses the text using this formatter, providing control over the text position.
1852 * @param position the position to parse from, updated with length parsed
1856 * @throws IndexOutOfBoundsException if the position is invalid
1858 public TemporalAccessor parse(CharSequence text, ParsePosition position) { argument
1860 Objects.requireNonNull(position, "position");
1862 return parseResolved0(text, position);
1973 * @param position the position t
1980 parseResolved0(final CharSequence text, final ParsePosition position) argument
2040 parseUnresolved(CharSequence text, ParsePosition position) argument
2048 parseUnresolved0(CharSequence text, ParsePosition position) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/
H A DSPARCMacroAssembler.java73 while (position() % modulus != 0) {
217 final int startPc = position();
258 while (position() < (startPc + (INSTRUCTION_SIZE * 7))) {
315 int positionBefore = position();
317 int positionAfter = position();
341 int positionBefore = position();
343 int positionAfter = position();
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCCall.java96 int after = masm.position();
104 after = masm.position();
204 before = masm.position();
211 int after = masm.position();
218 int before = masm.position();
222 int after = masm.position();
230 int after = masm.position();
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/
H A DCompilationResultBuilder.java192 return compilationResult.recordMark(asm.position(), id);
196 compilationResult.addAnnotation(new CompilationResult.CodeComment(asm.position(), s));
205 int position = asm.position();
206 compilationResult.setTargetCode(asm.close(false), position);
212 compilationResult.recordExceptionHandler(codeOffset, ei.exceptionEdge.label().position());
267 int pos = asm.position();
276 int pos = asm.position();
286 int instructionStart = asm.position();
297 debug.log("Constant reference in code: pos = %d, data = %s", asm.position(), constan
[all...]
/openjdk10/hotspot/src/share/vm/code/
H A DcompressedStream.cpp131 debug_only(int pos1 = position());
188 int xlen = (pos = decode.position()) - lastpos; lastpos = pos; \
211 int length = bytes.position();
217 int pos, lastpos = decode.position();
239 int length2 = decode.position();
/openjdk10/hotspot/test/gc/concurrent_phase_control/
H A DCheckControl.java139 int position = 0;
150 } else if ((position != 0) && (nextReqM.start() < nextReachM.end())) {
161 if (!reqM.find(position)) {
170 if (!reachM.find(position)) {
220 // Update position for start of next phase search.
221 position = reachM.end();
/openjdk10/jdk/test/java/util/BitSet/
H A DImportExport.java77 bb.position(k);
118 b2.position(beg);
120 b2.limit(b2.position());
121 b2.position(beg);
135 equal(s3.get(i), ((b2.get(b2.position()+i/64) & (1L<<(i%64))) != 0));
/openjdk10/jdk/test/sun/tools/jps/
H A DJpsHelper.java72 for (int position = 0; position < argCount; ++position) {
73 int bit = 1 << position;
75 combination.add(JpsArg.values()[position]);
/openjdk10/jdk/test/sun/security/ssl/EngineArgs/
H A DDebugReportsOneExtraByte.java224 if (serverOut.position() == 1) {
250 if (!dataDone && (clientOut.limit() == serverIn.position()) &&
251 (serverOut.limit() == clientIn.position())) {
365 a.position(a.limit());
366 b.position(b.limit());
/openjdk10/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp690 void PeepMatch::add_instruction(int parent, int position, const char *name, argument
692 if( position > _max_position ) _max_position = position;
695 _position.addName((char*) (intptr_t) position);
705 const char *PeepMatch::instruction_name(int position) { argument
706 return _instrs.name(position);
717 void PeepMatch::next_instruction(int &parent, int &position, const char* &name, int &input) { argument
719 position = (int) (intptr_t) _position.iter();
724 // 'true' if current position in iteration is a placeholder, not matched.
746 // Check if constraints use instruction at position
747 constrains_instruction(int position) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DMarkUnsafeAccessTest.java159 mbb.position(mbb.position() + BLOCK_SIZE);
171 mbb.position(BLOCK_SIZE);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/
H A DNestedLoop_EA.java44 ListIterator<BasePhase<? super HighTierContext>> position = suites.getHighTier().findPhase(PartialEscapePhase.class);
47 position.add(canonicalizer);
48 position.add(new PartialEscapePhase(true, canonicalizer, options));
/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DBitArray.java49 private static int position(int idx) { // bits big-endian in each unit method in class:BitArray
132 return (repn[subscript(index)] & position(index)) != 0;
144 int bit = position(index);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DAbstractLine.java163 long position = getLongFramePosition();
174 sendEvents(new LineEvent(this, LineEvent.Type.OPEN, position));
176 sendEvents(new LineEvent(this, LineEvent.Type.CLOSE, position));
199 * Return the frame position in a long value
/openjdk10/jdk/src/java.base/share/classes/java/util/zip/
H A DZipCoder.java69 return new String(ca, 0, cb.position());
103 if (bb.position() == ba.length) // defensive copy?
106 return Arrays.copyOf(ba, bb.position());
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttp1Response.java219 int offset = buffer.position();
227 buffer.position(i + 1 + offset);
240 buffer.position(buffer.limit());
/openjdk10/jdk/src/jdk.charsets/share/classes/sun/nio/cs/ext/
H A DISO2022_JP.java210 int sp = src.arrayOffset() + src.position();
216 int dp = dst.arrayOffset() + dst.position();
325 src.position(sp - src.arrayOffset());
326 dst.position(dp - dst.arrayOffset());
333 int mark = src.position();
446 src.position(mark);
536 int sp = src.arrayOffset() + src.position();
541 int dp = dst.arrayOffset() + dst.position();
645 src.position(sp - src.arrayOffset());
646 dst.position(d
[all...]

Completed in 186 milliseconds

<<11121314151617181920>>