Searched refs:ticks (Results 1 - 25 of 56) sorted by relevance

123

/macosx-10.10.1/Security-57031.1.35/Security/include/security_asn1/
H A Dprinrval.h64 ** These two constants define the range (in ticks / second) of the
110 ** Return the number of ticks per second for PR_IntervalNow's clock.
163 NSPR_API(PRUint32) PR_IntervalToSeconds(PRIntervalTime ticks); variable
164 NSPR_API(PRUint32) PR_IntervalToMilliseconds(PRIntervalTime ticks); variable
165 NSPR_API(PRUint32) PR_IntervalToMicroseconds(PRIntervalTime ticks); variable
H A Dprmon.h77 ** Wait for a notify on the monitor's condition variable. Sleep for "ticks"
78 ** amount of time (if "ticks" is PR_INTERVAL_NO_TIMEOUT then the sleep is
88 ** notify) or when the "ticks" timeout elapses.
92 NSPR_API(PRStatus) PR_Wait(PRMonitor *mon, PRIntervalTime ticks);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dprinrval.h64 ** These two constants define the range (in ticks / second) of the
110 ** Return the number of ticks per second for PR_IntervalNow's clock.
163 NSPR_API(PRUint32) PR_IntervalToSeconds(PRIntervalTime ticks); variable
164 NSPR_API(PRUint32) PR_IntervalToMilliseconds(PRIntervalTime ticks); variable
165 NSPR_API(PRUint32) PR_IntervalToMicroseconds(PRIntervalTime ticks); variable
H A Dprmon.h77 ** Wait for a notify on the monitor's condition variable. Sleep for "ticks"
78 ** amount of time (if "ticks" is PR_INTERVAL_NO_TIMEOUT then the sleep is
88 ** notify) or when the "ticks" timeout elapses.
92 NSPR_API(PRStatus) PR_Wait(PRMonitor *mon, PRIntervalTime ticks);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A Dprinrval.h64 ** These two constants define the range (in ticks / second) of the
110 ** Return the number of ticks per second for PR_IntervalNow's clock.
163 NSPR_API(PRUint32) PR_IntervalToSeconds(PRIntervalTime ticks); variable
164 NSPR_API(PRUint32) PR_IntervalToMilliseconds(PRIntervalTime ticks); variable
165 NSPR_API(PRUint32) PR_IntervalToMicroseconds(PRIntervalTime ticks); variable
H A Dprmon.h77 ** Wait for a notify on the monitor's condition variable. Sleep for "ticks"
78 ** amount of time (if "ticks" is PR_INTERVAL_NO_TIMEOUT then the sleep is
88 ** notify) or when the "ticks" timeout elapses.
92 NSPR_API(PRStatus) PR_Wait(PRMonitor *mon, PRIntervalTime ticks);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A Dprinrval.h64 ** These two constants define the range (in ticks / second) of the
110 ** Return the number of ticks per second for PR_IntervalNow's clock.
163 NSPR_API(PRUint32) PR_IntervalToSeconds(PRIntervalTime ticks); variable
164 NSPR_API(PRUint32) PR_IntervalToMilliseconds(PRIntervalTime ticks); variable
165 NSPR_API(PRUint32) PR_IntervalToMicroseconds(PRIntervalTime ticks); variable
H A Dprmon.h77 ** Wait for a notify on the monitor's condition variable. Sleep for "ticks"
78 ** amount of time (if "ticks" is PR_INTERVAL_NO_TIMEOUT then the sleep is
88 ** notify) or when the "ticks" timeout elapses.
92 NSPR_API(PRStatus) PR_Wait(PRMonitor *mon, PRIntervalTime ticks);
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dmkhash.cpp34 long ticks () function
52 long ticks() function
123 t = ticks();
125 long at = ticks() - t;
131 t = ticks();
133 long ct = ticks() - t;
136 t = ticks();
138 long ft = ticks() - t;
149 t = ticks();
151 long ht = ticks()
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dvtlh.rb8 ticks = stat[3].to_i
12 puts '%-40s 0x%08x %8d %8d' % [src, addr, retired, ticks]
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Drpcclock.c169 time_t ticks;
191 * tick count format we're using (RPC_C_CLOCK_HZ ticks per second).
197 ticks = (tp.tv_sec - start_time.tv_sec) * RPC_C_CLOCK_HZ +
202 ticks -= RPC_C_CLOCK_HZ;
205 ticks += (tp.tv_usec - start_time.tv_usec) / (1000000L/RPC_C_CLOCK_HZ);
229 if ( (ticks < rpc_g_clock_curr) ||
230 (ticks > (rpc_g_clock_curr + RPC_CLOCK_SEC(60))))
232 rpc_clock_skew += rpc_g_clock_curr - ticks + RPC_C_CLOCK_HZ;
237 rpc_g_clock_curr = (rpc_clock_t) ticks;
168 time_t ticks; local
/macosx-10.10.1/BerkeleyDB-21/db/os_windows/
H A Dos_clock.c38 DWORD ticks; local
40 ticks = GetTickCount();
41 if (ticks < last_ticks)
43 last_ticks = ticks;
44 tp->tv_sec = base_seconds + (u_int32_t)(ticks / 1000);
45 tp->tv_nsec = (u_int32_t)((ticks % 1000) * NS_PER_MS);
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/xferquota/
H A Dtests.sh28 ticks=0
30 if [ $ticks = 1 ]; then
36 ticks=`expr $ticks + 1`
37 seconds=`expr $ticks \* 1`
38 if [ $ticks = 360 ]; then
/macosx-10.10.1/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/include/
H A Dyarrow.h137 LONGLONG ticks);
141 LONGLONG ticks);
146 LONGLONG ticks);
156 YARROWAPI int prngForceReseed(LONGLONG ticks);
157 YARROWAPI int prngAllowReseed(LONGLONG ticks);
158 YARROWAPI int prngProcessSeedBuffer(BYTE *buf,LONGLONG ticks);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_clock.c223 long ticks; local
230 * ticks. Otherwise just compute number of hz in time, rounding
234 * Maximum value for any timeout in 10ms ticks is 250 days.
238 ticks = ((tv->tv_sec - now.tv_sec) * 1000 +
242 ticks = sec * hz;
244 ticks = 0x7fffffff;
246 return (ticks);
274 * Compute number of ticks in the specified amount of time.
279 unsigned long ticks; local
286 * ticks, roundin
360 int ticks; local
[all...]
/macosx-10.10.1/shell_cmds-179/time/
H A Dtime.c137 long ticks; local
139 ticks = hz * (ru.ru_utime.tv_sec + ru.ru_stime.tv_sec) +
144 fprintf(stderr, "%10ld %s\n", ticks ? ru.ru_ixrss / ticks : 0,
146 fprintf(stderr, "%10ld %s\n", ticks ? ru.ru_idrss / ticks : 0,
148 fprintf(stderr, "%10ld %s\n", ticks ? ru.ru_isrss / ticks : 0,
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/
H A DOSBase.h83 #define ADD_ABSOLUTETIME_TICKS(t1, ticks) \
85 (int32_t)(ticks))
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSPosix/
H A DPosixDaemon.c144 mDNSs32 ticks; local
151 ticks = nextTimerEvent - mDNS_TimeNow(m);
152 if (ticks < 1) ticks = 1;
155 ticks = 0;
157 timeout.tv_sec = ticks / mDNSPlatformOneSecond;
158 timeout.tv_usec = (ticks % mDNSPlatformOneSecond) * 1000000 / mDNSPlatformOneSecond;
/macosx-10.10.1/OpenSSL098-52/src/crypto/
H A Dtmdiff.c140 unsigned long ticks;
183 tm->ticks = tickGet();
218 ret = (double)(b->ticks - a->ticks) / (double)sysClkRateGet();
245 d = (b->ticks - a->ticks);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dutmscale.c14 #define ticks INT64_C(1) macro
15 #define microseconds (ticks * 10)
28 {ticks, INT64_C(504911232000000000), U_INT64_MIN, INT64_C(8718460804854775807), INT64_C(-8718460804854775808), U_INT64_MAX, INT64_C(504911232000000000), INT64_C(504911232000000000), INT64_C(0), U_INT64_MIN, U_INT64_MAX},
29 {ticks, INT64_C(0), U_INT64_MIN, U_INT64_MAX, U_INT64_MIN, U_INT64_MAX, INT64_C(0), INT64_C(0), INT64_C(0), U_INT64_MIN, U_INT64_MAX},
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dresourcevar.h84 u_int32_t pr_ticks; /* temp storage for ticks until AST */
97 user_ulong_t pr_ticks; /* temp storage for ticks until AST */
129 void addupc_intr(struct proc *p, uint32_t pc, u_int ticks);
130 void addupc_task(struct proc *p, user_addr_t pc, u_int ticks);
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOTimerEventSource.h133 @abstract Setup a callback at after the delay in scheduler ticks. See wakeAtTime(AbsoluteTime).
134 @param interval Delay from now to wake up, in scheduler ticks, whatever that may be.
136 virtual IOReturn setTimeoutTicks(UInt32 ticks);
164 @abstract Setup a callback at after the delay in decrementer ticks. See wakeAtTime(AbsoluteTime).
165 @param interval Delay from now to wake up in decrementer ticks.
173 virtual IOReturn wakeAtTimeTicks(UInt32 ticks);
/macosx-10.10.1/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dprng.c346 prngForceReseed(PRNG *p, LONGLONG ticks) argument
369 ZCHECK(ticks);
380 endTime = (int64_t)tv.tv_sec*1000000LL + (int64_t)tv.tv_usec + ticks;
382 endTime = mach_absolute_time() + (ticks*NSEC_PER_USEC);
417 } while ( (now-start) < ticks) ;
420 } while ( (now-start) < ticks) ;
447 prngProcessSeedBuffer(PRNG *p, BYTE *buf,LONGLONG ticks)
457 prngForceReseed(p, ticks); /* Do a reseed */
534 prngAllowReseed(PRNG *p, LONGLONG ticks)
585 return prngForceReseed(p, ticks);
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/
H A Dshutdown_test.c37 unsigned int ticks; member in struct:__anon6346
106 info->ticks++;
108 if (info->ticks == 10) {
110 } else if (info->ticks >= 15 && info->exiting) {
145 ti->ticks = 0;
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dutmstest.c354 int64_t ticks; member in struct:DotNetDateTimeTicks
364 /* year, month, day, ticks */
452 int64_t ticks, millis; local
467 millis = utmscale_toInt64(dt->ticks, UDTS_ICU4C_TIME, &errorCode);
473 log_err("utmscale_toInt64(ticks[%d], ICU4C)=%dd != %dd=ucal_getMillis(%04d-%02d-%02d)\n",
478 ticks = utmscale_fromInt64((int64_t)icuDate, UDTS_ICU4C_TIME, &errorCode);
479 if(ticks != dt->ticks) {
480 /* Print days not ticks to stay within printf() range. */
482 (int)i, (int)(ticks/dayTick
[all...]

Completed in 397 milliseconds

123