Searched refs:now (Results 126 - 150 of 1517) sorted by relevance

1234567891011>>

/macosx-10.10/libdispatch-442.1.4/src/shims/
H A Dtime.h115 LARGE_INTEGER now;
116 return QueryPerformanceCounter(&now) ? now.QuadPart : 0;
/macosx-10.10/postfix-255/postfix/src/postscreen/
H A Dpostscreen_misc.c73 struct timeval now; local
75 GETTIMEOFDAY(&now);
76 PSC_CALC_DELTA(pdelay, now, tv);
/macosx-10.10/postfix-255/postfix/src/verify/
H A Dverify.c52 /* \fBaddress_verify_map\fR cache file. The file should now
425 long now = (long) time((time_t *) 0); local
444 (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_exp < now)
446 (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_exp < now)
456 || (now - probed > PROBE_TTL /* safe to probe */
491 (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_try < now)
493 (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_try < now)
495 if (now - probed > PROBE_TTL
500 STR(addr), addr_status, now, updated);
509 verify_make_entry(put_buf, addr_status, now, update
534 long now = (long) event_time(); local
[all...]
/macosx-10.10/ruby-106/ruby/lib/
H A Dlogger.rb381 format_message(format_severity(severity), Time.now, progname, message))
609 "# Logfile created on %s by %s\n" % [Time.now.to_s, Logger::ProgName]
622 now = Time.now
623 period_end = previous_period_end(now)
661 def previous_period_end(now)
664 eod(now - 1 * SiD)
666 eod(now - ((now.wday + 1) * SiD))
668 eod(now
[all...]
H A Dprofiler.rb80 now = Process.times[0]
82 stack.push [now, 0.0]
85 now = Process.times[0]
92 cost = now - tick[0]
H A Dtime.rb30 # t = Time.now
132 def zone_offset(zone, year=self.now.year)
231 def make_time(year, mon, day, hour, min, sec, sec_fraction, zone, now)
234 if now
236 break if year; year = now.year
237 break if mon; mon = now.mon
238 break if day; day = now.day
239 break if hour; hour = now.hour
240 break if min; min = now.min
241 break if sec; sec = now
[all...]
/macosx-10.10/vim-55/src/
H A Dnbdebug.c84 time_t now; local
87 time(&now);
88 fprintf(nb_debug, "%s", asctime(localtime(&now)));
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWTimeoutQ.cpp103 //AbsoluteTime now;
104 //IOFWGetAbsoluteTime(&now);
105 //IOLog("timeoutQ waketime %lx:%lx (now %lx:%lx)\n",
106 // fHead->getDeadline().hi, fHead->getDeadline().lo, now.hi, now.lo);
174 AbsoluteTime now, dead; local
175 IOFWGetAbsoluteTime(&now);
178 IOLog("processTimeout, time is %llx\n", AbsoluteTime_to_scalar(&now));
190 if(CMP_ABSOLUTETIME(&dead, &now) == 1)
214 //AbsoluteTime now;
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Date/
H A D15.9.5.2-1.js52 var now = new Date();
58 "Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000",
60 Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000 );
63 "typeof now.toString()",
65 typeof now.toString() );
H A D15.9.5.2.js52 var now = new Date();
58 "Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000",
60 Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000 );
63 "typeof now.toString()",
65 typeof now.toString() );
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dtqueue.h82 Event *pop(Time now);
126 inline typename ScheduleQueue<Time>::Event *ScheduleQueue<Time>::pop(Time now) argument
130 if (top->fireTime <= now) {
132 secdebug("schedq", "event %p delivered at %.3f", top, double(now));
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtqueue.h82 Event *pop(Time now);
126 inline typename ScheduleQueue<Time>::Event *ScheduleQueue<Time>::pop(Time now) argument
130 if (top->fireTime <= now) {
132 secdebug("schedq", "event %p delivered at %.3f", top, double(now));
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A Dsc-95-ckd2client.c51 CFAbsoluteTime now = CFAbsoluteTimeGetCurrent(); local
52 const char *nowstr = cfabsoluteTimeToString(now);
67 CFAbsoluteTime now = CFAbsoluteTimeGetCurrent(); local
68 const char *nowstr = cfabsoluteTimeToStringLocal(now);
/macosx-10.10/WebCore-7600.1.25/platform/
H A DClockGeneric.h48 double now() const;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DReplaySessionSegment.js33 this._timestamp = Date.now();
/macosx-10.10/bind9-45.101/bind9/bin/dnssec/
H A Ddnssec-settime.c140 isc_stdtime_t now; local
166 isc_stdtime_get(&now);
247 now, now);
260 now, now);
273 now, now);
286 now, now);
[all...]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dsmtp-multi.c81 struct timeval now; local
84 now.tv_sec = (long)time(NULL);
85 now.tv_usec = 0;
87 return now;
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib1507.c52 struct timeval now; local
53 now.tv_sec = (long)time(NULL);
54 now.tv_usec = 0;
55 return now;
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Ddns-mode.el183 (now (format-time-string "%Y%m%d"))
184 (nowandoldserial (concat now counterstr)))
186 (let ((new (format "%s00" now)))
191 now (1+ counter))))
/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmxmake.c45 time_t now; local
111 now = tmxsec(t);
118 now = tmxsec(tmxtime(&te, tm->tm_zone->west));
120 if ((tp = tmlocaltime(&now)) && ((tm->tm_isdst = tp->tm_isdst) || o))
/macosx-10.10/misc_cmds-33/leave/
H A Dleave.c73 time_t now; local
110 (void)time(&now);
111 t = localtime(&now);
133 secs -= now % 60; /* truncate (now + secs) to min */
/macosx-10.10/network_cmds-457/rtsol.tproj/
H A Ddump.c92 struct timeval now; local
94 gettimeofday(&now, NULL);
121 (ifinfo->expire.tv_sec < now.tv_sec) ? "expired"
122 : sec2str(ifinfo->expire.tv_sec - now.tv_sec));
/macosx-10.10/ruby-106/ruby/sample/drb/
H A Ddbiff.rb19 last = Time.now
/macosx-10.10/ruby-106/ruby/test/rss/
H A Dtest_accessor.rb15 time = Time.now
19 time = Time.parse(Time.now.rfc822)
23 time = Time.parse(Time.now.iso8601)
30 time = Time.parse(Time.now.iso8601)
/macosx-10.10/top-100.1.2/
H A Dcsw.c33 psamp->csw.now,

Completed in 430 milliseconds

1234567891011>>