Searched refs:loop (Results 1 - 25 of 533) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dloop.test2 # loop.test
4 # Tests for the loop command.
15 # $Id: loop.test,v 1.2 2002/04/02 02:29:43 hobbs Exp $
23 Test loop-1.1 {loop tests} {
26 loop i 1 6 {
32 Test loop-1.2 {loop tests} {
34 loop i 1 6 {
42 Test loop
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/tests/misc/
H A Dsigint-2.sh1 echo before loop
/macosx-10.10.1/ntp-92/scripts/stats/
H A Dloop.S2 loop <- scan(file1, list(day=0, sec=0, offset=0, freq=0, tc=0)) label
3 loop$offset <- loop$offset * 1e6
7 plot(loop$sec, loop$offset, type="l", xlab=paste("MJD", loop$day, "Time (s)"), ylab="PLL Offset (us)", ylim=c(-400, 400))
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDWorkLoop.cpp14 IOHIDWorkLoop *loop; local
16 loop = new IOHIDWorkLoop;
17 if(!loop)
18 return loop;
19 if(!loop->init()) {
20 loop->release();
21 loop = NULL;
23 return loop;
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_vm_thread_pass_flood.rb2 Thread.new{loop{Thread.pass}}
H A Dbm_loop_generator.rb5 loop do
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGNaturalLoops.h61 // a natural loop. It's faster to call NaturalLoops::belongsTo(), which
62 // tries to be O(loop depth) rather than O(loop size). Loop depth is
63 // almost always smaller than loop size. A *lot* smaller.
74 // The index of this loop in NaturalLoops.
103 const NaturalLoop& loop(unsigned i) const function in class:JSC::DFG::NaturalLoops
109 // Return either null if the block isn't a loop header, or the
110 // loop it belongs to.
114 const NaturalLoop* loop = innerMostLoopOf(block); local
115 if (!loop)
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/engine/
H A Denginetest.c78 int loop; local
81 loop = 0;
86 loop++, ENGINE_get_id(h), ENGINE_get_name(h));
101 int loop; local
220 for(loop = 0; loop < 512; loop++)
222 sprintf(buf, "id%i", loop);
224 sprintf(buf, "Fake engine type %i", loop);
226 if(((block[loop]
[all...]
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Denginetest.c78 int loop; local
81 loop = 0;
86 loop++, ENGINE_get_id(h), ENGINE_get_name(h));
101 int loop; local
220 for(loop = 0; loop < 512; loop++)
222 sprintf(buf, "id%i", loop);
224 sprintf(buf, "Fake engine type %i", loop);
226 if(((block[loop]
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dcallbacks.py18 loop = CFRunLoopGetCurrent()
19 CFRunLoopStop(loop)
43 # Set up a run loop and add all controllers to that.
44 loop = CFRunLoopGetCurrent()
45 CFRunLoopAddSource(loop, source, kCFRunLoopCommonModes)
46 SCPreferencesScheduleWithRunLoop(prefs, loop, kCFRunLoopCommonModes)
H A Dnetcon.py26 loop = CFRunLoopGetCurrent()
27 SCNetworkConnectionScheduleWithRunLoop(conn, loop, kCFRunLoopCommonModes)
H A Dinterneton.py38 loop = CFRunLoopGetCurrent()
39 CFRunLoopStop(loop)
48 loop = CFRunLoopGetCurrent()
59 loop, kCFRunLoopCommonModes)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dcallbacks.py18 loop = CFRunLoopGetCurrent()
19 CFRunLoopStop(loop)
43 # Set up a run loop and add all controllers to that.
44 loop = CFRunLoopGetCurrent()
45 CFRunLoopAddSource(loop, source, kCFRunLoopCommonModes)
46 SCPreferencesScheduleWithRunLoop(prefs, loop, kCFRunLoopCommonModes)
H A Dnetcon.py26 loop = CFRunLoopGetCurrent()
27 SCNetworkConnectionScheduleWithRunLoop(conn, loop, kCFRunLoopCommonModes)
H A Dinterneton.py38 loop = CFRunLoopGetCurrent()
39 CFRunLoopStop(loop)
48 loop = CFRunLoopGetCurrent()
59 loop, kCFRunLoopCommonModes)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-SystemConfiguration-2.5.1/Examples/CallbackDemo/
H A Dcallbacks.py18 loop = CFRunLoopGetCurrent()
19 CFRunLoopStop(loop)
43 # Set up a run loop and add all controllers to that.
44 loop = CFRunLoopGetCurrent()
45 CFRunLoopAddSource(loop, source, kCFRunLoopCommonModes)
46 SCPreferencesScheduleWithRunLoop(prefs, loop, kCFRunLoopCommonModes)
H A Dnetcon.py26 loop = CFRunLoopGetCurrent()
27 SCNetworkConnectionScheduleWithRunLoop(conn, loop, kCFRunLoopCommonModes)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dfcloseall.c36 int loop; local
40 for(loop = 0; loop < MAXLOOP; ++loop)
/macosx-10.10.1/ruby-106/ruby/ext/win32ole/sample/
H A Dienavi2.rb4 attr_reader :loop
7 @loop = true
20 @loop = false
37 while (ev.handler.loop)
/macosx-10.10.1/apr-32/apr-util/apr-util/dbm/sdbm/
H A Dsdbm_hash.c40 #define DUFF /* go ahead and use the loop-unrolled version */
46 register int loop = (len + 8 - 1) >> 3; local
54 } while (--loop);
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dhash.c34 register int loop = (len + 8 - 1) >> 3; local
42 } while (--loop);
/macosx-10.10.1/Heimdal-398.1.2/appl/popper/
H A Dpop_auth.h42 int (*loop)(POP*, void*, void*, size_t, void**, size_t*); member in struct:auth_mech
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/parseCert/
H A DparseCert.cpp25 int loop = 0; local
36 loop = 1;
49 if(loop) {
57 } while(loop);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/parseCrl/
H A DparseCrl.cpp24 int loop; local
50 /* optional loop for malloc debug */
51 for(loop=0; loop<loops; loop++) {
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/threadTest/
H A DcopyRoots.cpp25 for(unsigned loop=0; loop<testParams->numLoops; loop++) {
27 printf("derDecode thread %d: loop %d\n",
28 testParams->threadNum, loop);

Completed in 485 milliseconds

1234567891011>>