Searched defs:loop (Results 1 - 25 of 49) sorted by relevance

12

/openjdk7/jdk/test/javax/security/auth/login/Configuration/
H A DSynchronize.java36 private static final int loop = 500; field in class:Synchronize
54 Synchronize[] threads = new Synchronize[loop];
55 for (int i = 0; i < loop; i++) {
59 for (int i = 0; i < loop; i++) {
63 for (int i = 0; i < loop; i++) {
/openjdk7/jdk/src/share/classes/java/applet/
H A DAudioClip.java45 * Starts playing this audio clip in a loop.
47 void loop(); method in interface:AudioClip
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6935022.java28 * @summary Server VM incorrectly breaks out of while loop
44 test.loop(2147483647, (cnt&1023));
55 private void loop(int endingRow, int mask) throws Exception { method in class:Test6935022
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletAudioClip.java140 public synchronized void loop() { method in class:AppletAudioClip
143 audioClip.loop();
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DSendDatagramToBadAddress.java78 public void receive (int loop, boolean expectError) throws Exception { argument
79 for (int i=0; i<loop; i++) {
124 final int loop = 5;
131 for (i = 0; i < loop; i++) {
145 s.receive (loop, false);
171 for (i = 0; i < loop; i++) {
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DClip.java38 * loop, so that when the clip is played it will cycle repeatedly. Loops are
40 * times that the loop should be played.
62 * @see #loop
183 * the loop. The ending point must be greater than
188 * @param start the loop's starting position, in sample frames (zero-based)
189 * @param end the loop's ending position, in sample frames (zero-based), or
192 * loop points cannot be set, usually because one or both falls outside
200 * continue to the loop's end point, then loop back to the loop star
222 public void loop(int count); method in interface:Clip
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DyieldingWorkgroup.cpp295 void YieldingFlexibleGangWorker::loop() { function in class:YieldingFlexibleGangWorker
H A Dworkgroup.cpp239 loop();
257 void GangWorker::loop() { function in class:GangWorker
268 // in the outer loop.
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.cpp168 slt->loop();
238 void SurrogateLockerThread::loop() { function in class:SurrogateLockerThread
/openjdk7/hotspot/src/share/vm/opto/
H A DloopUnswitch.cpp36 // loop loop
43 // stmt4 loop [clone]
53 // Return TRUE or FALSE if the loop should be unswitched
54 // (ie. clone loop with an invariant test that does not exit the loop)
75 IfNode* PhaseIdealLoop::find_unswitching_candidate(const IdealLoopTree *loop) const {
77 // Find first invariant test that doesn't exit the loop
78 LoopNode *head = loop->_head->as_Loop();
89 // If condition is invariant and not a loop exi
107 do_unswitching(IdealLoopTree *loop, Node_List &old_new) argument
216 create_slow_version_of_loop(IdealLoopTree *loop, Node_List &old_new) argument
[all...]
H A Dsplit_if.cpp39 IdealLoopTree *loop = get_loop( n ); local
50 set_loop(x, loop);
58 set_loop(r, loop);
59 if( !loop->_child )
60 loop->_body.push(r);
233 IdealLoopTree *loop = get_loop(blk); local
234 if( !loop->_child )
235 loop->_body.push(n);
261 // Here's the "spinup" the dominator tree loop. Do a cache-check
331 // the "while( phi->outcnt() )" loop
[all...]
H A DidealKit.cpp153 //-------------------------------loop-------------------------------------
154 // Create the loop head portion (*) of:
158 // loop body
161 // * } else // exits loop
163 // Pushes the loop top cvstate first, then the else (loop exit) cvstate
165 void IdealKit::loop(GraphKit* gkit, int nargs, IdealVariable& iv, Node* init, BoolTest::mask relop, Node* limit, float prob, float cnt) { function in class:IdealKit
166 assert((state() & (BlockS|LoopS|IfThenS|ElseS)), "bad state for new loop");
170 // Add loop predicate.
182 assert(ctrl()->is_IfTrue(), "true branch stays in loop");
[all...]
H A DloopPredicate.cpp37 * path to a loop, and raise a uncommon trap if the check of the condition fails.
38 * The condition checks are promoted from inside the loop body, and thus
39 * the checks inside the loop could be eliminated. Currently, loop predication
40 * optimization has been applied to remove array range check and loop invariant
102 void PhaseIdealLoop::register_control(Node* n, IdealLoopTree *loop, Node* pred) { argument
105 loop->_body.push(n);
106 set_loop(n, loop);
130 // rgn loop | iff
138 // rgn loop
161 IdealLoopTree* loop = get_loop(call); local
645 rc_predicate(IdealLoopTree *loop, Node* ctrl, int scale, Node* offset, Node* init, Node* limit, Node* stride, Node* range, bool upper) argument
704 loop_predication_impl(IdealLoopTree *loop) argument
[all...]
H A Dloopnode.hpp52 // Simple loop header. Fall in path on left, loop-back path on right.
110 // last in the loop. The trip-counter have to stride by a constant;
111 // the exit value is also loop invariant.
114 // CountedLoopNode has the incoming loop control and the loop-back-control
117 // CountedLoopNode if there is control flow in the loop), the post-increment
122 // CountedLoopEndNode also takes in the loop-invariant limit value.
125 // loop-back control. From CountedLoopEndNodes I can reach CountedLoopNodes
130 // inputs the incoming loop
823 is_member( const IdealLoopTree *loop, Node *n ) const argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDataPusher.java86 public synchronized void start(boolean loop) { argument
87 if (DEBUG || Printer.debug) Printer.debug("> DataPusher.start(loop="+loop+")");
94 looping = loop;
117 if (DEBUG || Printer.debug) Printer.debug("< DataPusher.start(loop="+loop+")");
H A DJavaSoundAudioClip.java135 public synchronized void loop() { method in class:JavaSoundAudioClip
139 private synchronized void startImpl(boolean loop) { argument
144 if (DEBUG || Printer.debug) Printer.debug("JavaSoundAudioClip.startImpl(loop="+loop+"): abort - too rapdly");
149 if (DEBUG || Printer.debug) Printer.debug("JavaSoundAudioClip.startImpl(loop="+loop+")");
158 if (loop != clipLooping) {
165 if (loop) {
166 if (DEBUG || Printer.trace)Printer.trace("JavaSoundAudioClip: clip.loop()");
167 clip.loop(Cli
[all...]
H A DSoftMixingClip.java285 public void loop(int count) { method in class:SoftMixingClip
397 throw new IllegalArgumentException("Invalid loop points : "
400 throw new IllegalArgumentException("Invalid loop points : "
404 throw new IllegalArgumentException("Invalid loop points : "
407 throw new IllegalArgumentException("Invalid loop points : "
H A DDirectAudioDevice.java1028 private int loopEndFrame; // the last sample included in the loop
1075 // initialize loop selection with full range
1081 loopCount = 0; // means: play the clip irrespective of loop points from beginning to end
1287 public void loop(int count) { method in class:DirectAudioDevice.DirectClip
1289 // will be played, i.e. it will play past the loop end point
1355 // main playback loop
1393 // at end of playback. If looping is on, loop back to the beginning.
1401 if (Printer.debug) Printer.debug("stop clip in run() loop:");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_MacroAssembler_sparc.cpp206 Label loop; local
207 bind(loop);
209 brx(Assembler::greaterEqual, true, Assembler::pt, loop);
272 // use a loop
287 // use a loop
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.cpp223 { Label loop; local
224 bind(loop);
228 jcc(Assembler::notZero, loop);
267 // use loop to null out the fields
276 { Label loop; local
277 bind(loop);
283 jcc(Assembler::notZero, loop);
H A DcppInterpreter_x86.cpp1578 Label entry, loop; local
1587 __ movptr(rcx, STATE(_stack)); // set start value for copy loop
1590 __ bind(loop);
1596 __ jcc(Assembler::notEqual, loop); // if not at bottom then copy next word
1728 Label exit, loop; local
1731 __ bind(loop);
1734 __ jcc(Assembler::greater, loop);
H A DtemplateInterpreter_x86_32.cpp1319 Label exit, loop; local
1322 __ bind(loop);
1325 __ jcc(Assembler::greater, loop);
H A DtemplateInterpreter_x86_64.cpp1336 Label exit, loop; local
1339 __ bind(loop);
1342 __ jcc(Assembler::greater, loop);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmThread.cpp285 this->loop();
422 void VMThread::loop() { function in class:VMThread
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DContext.java649 * on entry to a loop, but has possibly been assigned on the
650 * back-branch. If this is the case, the loop may be assigning
653 public void checkBackBranch(Environment env, Statement loop, argument
659 env.error(loop.where, "assign.to.blank.final.in.loop",

Completed in 114 milliseconds

12