Searched refs:inp (Results 1 - 14 of 14) sorted by relevance

/openjdk10/jdk/src/java.scripting/share/classes/com/sun/tools/script/shell/
H A Dinit.js220 var inp = java.lang.System["in"]; variable
417 var inp = inStream(from);
419 var binp = new BufferedInputStream(inp);
427 streamClose(inp);
449 var inp = null;
451 inp = inStream(obj);
452 obj = new BufferedReader(new InputStreamReader(inp));
699 var inp = new DataInputStream(process.getInputStream());
701 while ((line = inp.readLine()) != null) {
738 * @param inp fil
[all...]
/openjdk10/jdk/test/java/awt/xembed/server/
H A DRunTestXEmbed.java169 int inp = stream.read();
170 if (inp != -1) {
171 System.out.write(inp);
/openjdk10/langtools/test/tools/javac/processing/errors/StopOnInapplicableAnnotations/
H A DProcessor.java71 File inp = new File(sp, args[0]);
73 if (inp.canRead()) {
74 testContent = fm.getJavaFileObject(inp.toPath()).getCharContent(true).toString();
/openjdk10/langtools/test/tools/javac/warnings/suppress/
H A DVerifySuppressWarnings.java74 File inp = new File(sp, args[0]);
76 if (inp.canRead()) {
77 testContent = fm.getJavaFileObject(inp.toPath()).getCharContent(true).toString();
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/util/xml/impl/
H A DParser.java770 Input inp = null;
797 inp = new Input();
798 inp.pubid = ids.name;
799 inp.sysid = ids.value;
800 mPEnt.put(str, inp);
820 inp = new Input(val);
821 inp.pubid = mInp.pubid;
822 inp.sysid = mInp.sysid;
823 inp.xmlenc = mInp.xmlenc;
824 inp
1789 pubsys(Input inp) argument
3261 push(Input inp) argument
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dcoalesce.cpp369 Node *inp = n->in(inpidx); local
370 uint nidx = _phc._lrg_map.live_range_id(inp);
390 uint ireg = inp->ideal_reg();
393 inp->_idx, inp->Name(), ireg, MachSpillCopyNode::spill_type(MachSpillCopyNode::DebugUse));
398 Node* copy = new MachSpillCopyNode(MachSpillCopyNode::DebugUse, inp, *rm, *rm);
H A Dchaitin.cpp957 uint inp = (uint)AdlcVMDeps::Not_cisc_spillable; local
959 inp = n->cisc_operand();
960 if( inp != (uint)AdlcVMDeps::Not_cisc_spillable )
962 inp = n->as_Mach()->operand_index(inp);
974 if( UseCISCSpill && after_aggressive && inp == k ) {
1663 int inp = n->cisc_operand(); local
1664 if( inp != AdlcVMDeps::Not_cisc_spillable ) {
1667 inp = mach->operand_index(inp);
[all...]
H A Dreg_split.cpp244 int inp = use->cisc_operand(); local
245 if( inp != AdlcVMDeps::Not_cisc_spillable )
247 inp = use->as_Mach()->operand_index(inp);
248 if( inp == (int)useidx ) {
H A Doutput.cpp2284 Node *inp = n->in(k); local
2285 if (!inp) continue;
2286 assert(inp != n, "no cycles allowed" );
2287 if (_cfg->get_block_for_node(inp) == bb) { // Block-local use?
2288 if (inp->is_Proj()) { // Skip through Proj's
2289 inp = inp->in(0);
2291 ++_uses[inp->_idx]; // Count 1 block-local use
H A Dloopopts.cpp562 Node *inp = phi->in(j); local
563 if (get_ctrl(inp) == proj) { // Found local op
567 for (uint k = 1; k < inp->req(); k++)
568 if (get_ctrl(inp->in(k)) == proj)
632 Node *inp = phi->in(j); local
633 if (get_ctrl(inp) == proj) { // Found local op
637 inp->dump();
640 set_ctrl(inp, cmov_ctrl);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DConsoleIOContext.java722 InputStream inp = in.getInput();
724 if (inp instanceof NonBlockingInputStream) {
725 NonBlockingInputStream nbis = (NonBlockingInputStream) inp;
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DmacroAssembler_sparc.cpp4518 void MacroAssembler::has_negatives(Register inp, Register size, Register result, Register t2, Register t3, Register t4, Register t5) { argument
4525 assert_different_registers(inp, size, t2, t3, t4, t5, result);
4540 andcc(inp, 0x7, i); // unaligned offset -> i
4548 // * unaligned head handling: grab aligned 8B containing unaligned inp(ut)
4557 ldx(inp, t4, t3); // raw aligned 8B containing unaligned head -> t3
4581 // inp contains address of first byte in string/array
4583 // i contains next index to be processed (adr. inp+i is on 8B boundary)
4587 ldx(inp, i, t3);
4599 // inp contains address of first byte in string/array
4601 // i contains next index to be processed (adr. inp
[all...]
H A DmacroAssembler_sparc.hpp1380 void has_negatives(Register inp, Register size, Register result,
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js6495 inp: 6464,

Completed in 250 milliseconds