Searched refs:seconds (Results 51 - 75 of 527) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Dbigblock.tcl18 set s [clock seconds]
22 set t [expr {[clock seconds] - $s}]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Drandseed.tcl32 [clock seconds] \
/macosx-10.9.5/CPANInternal-140/DateTime/t/
H A D38local-subtract.t26 is( $deltas1{seconds}, 0, 'delta_seconds is 0' );
39 is( $deltas2{seconds}, 0, 'delta_seconds is 0' );
47 is( $deltas3{seconds}, 0, 'delta_seconds is 0' );
60 is( $deltas4{seconds}, 0, 'delta_seconds is 0' );
86 is( $deltas1{seconds}, 0, 'delta_seconds is 0' );
106 is( $deltas1{seconds}, 0, 'delta_seconds is 0' );
114 is( $deltas2{seconds}, 0, 'delta_seconds is 0' );
158 is( $deltas1{seconds}, 15901200, 'delta_seconds is 15901200' );
172 is( $deltas2{seconds}, -15901200, 'delta_seconds is -15901200' );
198 is( $deltas{seconds},
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dprogressmeter.c47 #define STALL_TIME 5 /* we're stalled after this many seconds */
128 int hours, minutes, seconds; local
203 seconds = bytes_left / bytes_per_second;
205 seconds = elapsed;
207 hours = seconds / 3600;
208 seconds -= hours * 3600;
209 minutes = seconds / 60;
210 seconds -= minutes * 60;
214 "%d:%02d:%02d", hours, minutes, seconds);
217 " %02d:%02d", minutes, seconds);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DCoreMediaSoftLinking.h53 SOFT_LINK_DLL_IMPORT(CoreMedia, CMTimeMakeWithSeconds, CMTime, __cdecl, (Float64 seconds, int32_t preferredTimeScale), (seconds, preferredTimeScale))
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/include/isc/
H A Dtime.h48 unsigned int seconds, unsigned int nanoseconds);
50 * Set 'i' to a value representing an interval of 'seconds' seconds and
88 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
90 * Set 't' to a value which represents the given number of seconds and
234 * of seconds since the epoch; it will always be less than one
/macosx-10.9.5/emacs-92/emacs/lisp/calendar/
H A Dtime-date.el33 ;; seconds; the third format specifies HIGH * 2^16 + LOW + MICRO /
34 ;; 1000000 seconds. We should have 0 <= MICRO < 1000000 and 0 <= LOW
114 (defun time-to-seconds (time)
123 (defun seconds-to-time (seconds)
125 (list (floor seconds 65536)
126 (floor (mod seconds 65536))
127 (floor (* (- seconds (ffloor seconds)) 1000000))))
143 (let* ((seconds (* 1.
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DTimeValue.h68 typedef int64_t SecondsType; ///< Type used for representing seconds.
85 /// Caller provides the exact value in seconds and nanoseconds. The
88 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0) argument
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
91 /// Caller provides the exact value as a double in seconds with the
192 /// Returns only the seconds component of the TimeValue. The nanoseconds
194 /// @brief Retrieve the seconds component
195 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
197 /// Returns only the nanoseconds component of the TimeValue. The seconds
245 /// Converts the TimeValue into the corresponding number of seconds
263 getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const argument
281 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
[all...]
/macosx-10.9.5/ntp-88/lib/isc/win32/include/isc/
H A Dtime.h48 unsigned int seconds, unsigned int nanoseconds);
50 * Set 'i' to a value representing an interval of 'seconds' seconds and
88 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
90 * Set 't' to a value which represents the given number of seconds and
234 * of seconds since the epoch; it will always be less than one
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Drendezvous.py51 def findDomains(serviceName, seconds=5.0):
57 untilWhen = NSDate.dateWithTimeIntervalSinceNow_(seconds)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Drendezvous.py51 def findDomains(serviceName, seconds=5.0):
57 untilWhen = NSDate.dateWithTimeIntervalSinceNow_(seconds)
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/tests/
H A Dall.tcl35 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tests/
H A Dall.tcl36 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/tests/
H A Dall.tcl47 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxslt/test/
H A Dall.tcl46 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/tcl-102/tcl_ext/thread/thread/tests/
H A Dall.tcl37 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/tcl-102/tcl_ext/tls/tls/tests/
H A Dall.tcl40 set timeCmd {clock format [clock seconds]}
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dutmscale.c17 #define seconds (milliseconds * 1000) macro
18 #define minutes (seconds * 60)
26 {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
30 {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
31 {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Date/
H A D15.9.5.23-1.js95 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
104 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
120 this.seconds = 0;
137 d.seconds = SecFromTime(t);
139 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-10.js94 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
103 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
119 this.seconds = 0;
136 d.seconds = SecFromTime(t);
138 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-11.js93 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
102 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
118 this.seconds = 0;
135 d.seconds = SecFromTime(t);
137 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-12.js91 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
100 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
116 this.seconds = 0;
133 d.seconds = SecFromTime(t);
135 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-13.js88 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
97 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
113 this.seconds = 0;
130 d.seconds = SecFromTime(t);
132 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-14.js86 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
95 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
111 this.seconds = 0;
128 d.seconds = SecFromTime(t);
130 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.23-15.js82 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds, DateCase.getUTCSeconds() );
91 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
107 this.seconds = 0;
124 d.seconds = SecFromTime(t);
126 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );

Completed in 145 milliseconds

1234567891011>>