Searched defs:step (Results 26 - 46 of 46) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXPathParser.java1084 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) { argument
1086 return new ParentLocationPath(step, (Step) rlp);
1090 final RelativeLocationPath newrlp = insertStep(step, plp.getPath());
1994 Step step = (Step)ntest;
1995 step.addPredicates(pp);
2046 final Step step = new Step(Axis.DESCENDANTORSELF, nodeType, null);
2047 RESULT = new AbsoluteLocationPath(parser.insertStep(step,
2063 Expression step = (Expression)((com.sun.java_cup.internal.runtime.Symbol) CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).value;
2065 final Step right = (Step)step;
2084 // Expand './/step'
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java575 public int step() { method in class:KeyIndex.KeyIndexIterator.KeyIndexHeapNode
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp501 int step; local
503 step = t->is_wide() ? Bytecodes::wide_length_for(t->bytecode()) : Bytecodes::length_for(t->bytecode());
506 assert(step > 0, "just checkin'");
512 __ dispatch_prolog(tos_out, step);
524 __ dispatch_epilog(tos_out, step);
/openjdk7/jdk/src/share/demo/applets/DitherTest/
H A DDitherTest.java213 private void applyMethod(int c[], int methodIndex, int step, argument
221 : vals[0] + ((vals[1] - vals[0]) * step / (total - 1)));
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.hpp270 size_t iter_claimed_next(size_t step) { argument
274 next = current + step;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java143 /* Used to track progress of authentication; step numbers from RFC 2831 */
144 protected int step; field in class:DigestMD5Base
172 * @param firstStep number of first step in authentication state machine
182 step = firstStep;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp259 void LIRGenerator::increment_counter(address counter, BasicType type, int step) { argument
263 increment_counter(addr, step);
266 void LIRGenerator::increment_counter(LIR_Address* addr, int step) { argument
269 __ add(temp, load_immediate(step, addr->type()), temp);
H A DtemplateInterpreter_sparc.cpp155 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step) { argument
202 __ dispatch_next(state, step);
215 address TemplateInterpreterGenerator::generate_deopt_entry_for(TosState state, int step) { argument
226 __ dispatch_next(state, step);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp152 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step) { argument
208 __ dispatch_next(state, step);
221 address TemplateInterpreterGenerator::generate_deopt_entry_for(TosState state, int step) { argument
254 __ dispatch_next(state, step);
H A DtemplateInterpreter_x86_64.cpp168 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step) { argument
192 __ dispatch_next(state, step);
206 int step) {
223 __ dispatch_next(state, step);
205 generate_deopt_entry_for(TosState state, int step) argument
H A Dc1_LIRGenerator_x86.cpp209 void LIRGenerator::increment_counter(address counter, BasicType type, int step) { argument
213 increment_counter(addr, step);
217 void LIRGenerator::increment_counter(LIR_Address* addr, int step) { argument
218 __ add((LIR_Opr)addr, LIR_OprFact::intConst(step), (LIR_Opr)addr);
H A Dinterp_masm_x86_32.cpp441 void InterpreterMacroAssembler::dispatch_prolog(TosState state, int step) { argument
445 void InterpreterMacroAssembler::dispatch_epilog(TosState state, int step) { argument
446 dispatch_next(state, step);
484 void InterpreterMacroAssembler::dispatch_next(TosState state, int step) { argument
486 load_unsigned_byte(rbx, Address(rsi, step));
488 increment(rsi, step);
H A Dinterp_masm_x86_64.cpp440 void InterpreterMacroAssembler::dispatch_prolog(TosState state, int step) { argument
444 void InterpreterMacroAssembler::dispatch_epilog(TosState state, int step) { argument
445 dispatch_next(state, step);
484 void InterpreterMacroAssembler::dispatch_next(TosState state, int step) { argument
486 load_unsigned_byte(rbx, Address(r13, step));
488 increment(r13, step);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java211 Step step = new Step(
214 stepsVector.addElement(step);
222 Step step = new Step(
225 stepsVector.addElement(step);
234 // unless this is the first step in this location path,
240 // build step
243 Step step = new Step(axis, nodeTest);
244 stepsVector.addElement(step);
251 // build step
254 step
463 Step(Step step) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DthreadControl.c58 * current step.
497 /* record single step mode */
1620 StepRequest *step; local
1622 step = NULL;
1628 step = &node->currentStep;
1633 return step;
1897 /* will get the event (step or method entry) after the pop */
1948 /* enable instruction level single step, but first note prev value */
1968 /* pop frames using single step */
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DResolve.java2184 final MethodResolutionPhase step; field in class:Resolve.InapplicableSymbolsError.Candidate
2188 private Candidate(MethodResolutionPhase step, Symbol sym, JCDiagnostic details) { argument
2189 this.step = step;
2217 return (((sym.flags() & VARARGS) != 0 && step == VARARITY) ||
2218 (sym.flags() & VARARGS) == 0 && step == (boxingEnabled ? BOX : BASIC));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java1051 genLoop(tree, tree.body, tree.cond, tree.step, true);
1059 * @param step "Step" statements to be inserted at end of
1066 List<JCExpressionStatement> step,
1082 genStats(step, loopEnv);
1088 genStats(step, loopEnv);
1063 genLoop(JCStatement loop, JCStatement body, JCExpression cond, List<JCExpressionStatement> step, boolean testFirst) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java217 List<JCExpressionStatement> step,
220 JCForLoop tree = new JCForLoop(init, cond, step, body);
215 ForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> step, JCStatement body) argument
H A DJCTree.java859 public List<JCExpressionStatement> step; field in class:JCTree.JCForLoop
868 this.step = update;
881 return step;
2128 List<JCExpressionStatement> step,
2126 ForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> step, JCStatement body) argument
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c1103 * the first step is to expand the palette if requested, so this code must
4362 PNG_CONST int step = local
4366 row += step - 1;
4368 for (; row_width > 0; --row_width, row += step)
4382 PNG_CONST int step = local
4386 row += step - 2;
4388 for (; row_width > 0; --row_width, row += step)
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp454 // max_loop_pad in lock-step with blk_size, so sizing
1817 void Scheduling::step(uint i) { function in class:Scheduling
1831 _bundle_use.step(i);
2213 step(1);
2222 // step of the bundles
2231 _bundle_use.step(1);
2252 step(delay);
2270 step(1);
2280 step(1);

Completed in 176 milliseconds

12