Searched refs:time (Results 126 - 150 of 3079) sorted by relevance

1234567891011>>

/macosx-10.9.5/bootp-268.1/bootplib/
H A DDHCPDUID.h59 uint8_t time[4]; /* seconds since midnight UTC 2000/01/01 */ member in struct:__anon6772
116 return (net_uint32_get(llt->time));
121 DHCPDUID_LLTSetTime(DHCPDUID_LLTRef llt, uint32_t time) argument
123 net_uint32_set(llt->time, time);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/
H A DUtilities.h48 /* $Copyright: * * Copyright 1998-2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation, and that the name of M.I.T. not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. Furthermore if you modify * this software you must label your software as modified software and not * distribute it in such a fashion that it might be confused with the * original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/Utilities.h,v 1.4 2005/01/10 19:10:48 snsimon Exp $ */ /* * Utilities.h - Public header file for the Utilities library */ #ifndef __UTILITIES__ #define __UTILITIES__ #include <time.h> #include <KerberosSupport/pwd.h> #include <ConditionalMacros.h> #include <MacTypes.h> #if PRAGMA_ONCE #pragma once #endif #ifdef __cplusplus extern "C" { #endif #if PRAGMA_IMPORT #pragma import on #endif #if PRAGMA_STRUCT_ALIGN #pragma options align=mac68k #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(push, 2) #elif PRAGMA_STRUCT_PACK #pragma pack(2) #endif /************************/ /* Structures and Types */ /************************/ /* common types for POSIX structures */ typedef unsigned char u_char; typedef unsigned short u_short; typedef unsigned int u_int; typedef unsigned long u_long; typedef unsigned char uchar_t; typedef unsigned short ushort_t; /*typedef UInt32 uint_t;*/ /* We don't define uint_t because OpenTransport.h does. */ typedef unsigned long ulong_t; typedef char *caddr_t; typedef SInt32 daddr_t; typedef SInt16 cnt_t; typedef ulong_t paddr_t; typedef uchar_t use_t; typedef SInt16 sysid_t; typedef SInt16 index_t; /**********/ /* Macros */ /**********/ /* macros for BSD memory utilities */ #define bzero(dest, nbytes) memset(dest, 0, nbytes) #define bcopy(src, dest, nbytes) memcpy(dest, src, nbytes) #define bcmp(ptr1, ptr2, nbytes) memcmp(ptr1, ptr2, nbytes) #define index(s, c) strchr(s, c) #define rindex(s, c) strrchr(s, c) /***********************/ /* Function Prototypes */ /***********************/ /* String Utilities */ int strcasecmp(const char *s1, const char *s2); int strncasecmp(const char *s1, const char *s2, register int n); char *strtoken (const char *s, const char *delim, int index); char *strdup (const char *s); void swab(register char *from, register char *to, register int n); /* Time Utilities */ int gettimeofday (struct timeval *tp, struct timezone *); int settimeofday (struct timeval *tp, struct timezone *); void get_gmt_offset(void); void mac_time_to_unix_time (time_t *time); void unix_time_to_mac_time (time_t *time); void msl_time_to_unix_time (time_t *time); void unix_time_to_msl_time (time_t *time); /* Mac OS X Runtime utilities */ Boolean RunningUnderClassic (void); Boolean RunningUnderMacOSX (…)
/macosx-10.9.5/xnu-2422.115.4/tools/tests/perf_index/
H A Dtest_controller.py4 import time
35 start_time = time.time()
46 end_time = time.time()
/macosx-10.9.5/JavaScriptCore-7537.78.1/profiler/
H A DProfileNode.h85 void setTotalTime(double time) { m_actualTotalTime = time; m_visibleTotalTime = time; } argument
86 void setActualTotalTime(double time) { m_actualTotalTime = time; } argument
87 void setVisibleTotalTime(double time) { m_visibleTotalTime = time; } argument
90 void setSelfTime(double time) {m_actualSelfTime = time; m_visibleSelfTime = time; } argument
91 setActualSelfTime(double time) argument
92 setVisibleSelfTime(double time) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/calendar/
H A Dtime-date.el0 ;;; time-date.el --- Date and time handling functions
35 ;; < 2^16. If the time value represents a point in time, then HIGH is
36 ;; nonnegative. If the time value is a time difference, then HIGH can
37 ;; be negative as well. The macro `with-decoded-time-value' and the
38 ;; function `encode-time-value' make it easier to deal with these
39 ;; three formats. See `time-subtract' for an example of how to use
44 (defmacro with-decoded-time
[all...]
H A Dlunar.el88 "Local date and time of lunar phase INDEX.
94 (time (/ index 1236.85))
98 (* 0.0001178 time time)
99 (* -0.000000155 time time time)
102 (* 132.87 time)
103 (* -0.009173 time time))))))
[all...]
/macosx-10.9.5/CPANInternal-140/IO-KQueue/
H A DKQueue.xs10 #include <sys/time.h>
86 I32 time = SvIV(timeout);
87 if (time >= 0) {
88 t.tv_sec = time / 1000;
89 t.tv_nsec = (time % 1000) * 1000000;
126 I32 time = SvIV(timeout);
127 if (time >= 0) {
128 t.tv_sec = time / 1000;
129 t.tv_nsec = (time % 1000) * 1000000;
/macosx-10.9.5/CPANInternal-140/IO-KQueue-0.34/
H A DKQueue.xs10 #include <sys/time.h>
86 I32 time = SvIV(timeout);
87 if (time >= 0) {
88 t.tv_sec = time / 1000;
89 t.tv_nsec = (time % 1000) * 1000000;
126 I32 time = SvIV(timeout);
127 if (time >= 0) {
128 t.tv_sec = time / 1000;
129 t.tv_nsec = (time % 1000) * 1000000;
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dwinscard_msg.c38 #include <sys/time.h>
43 #include <time.h>
68 * record the time when we started
70 time_t start = time(0);
93 if ((timeout.tv_sec = start + blockAmount - time(0)) < 0)
181 * record the time when we started
183 time_t start = time(0);
206 if ((timeout.tv_sec = start + blockAmount - time(0)) < 0)
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dtimezone.el1 ;;; timezone.el --- time zone package for GNU Emacs
58 because time zone names are ambiguous in practice.
59 Use `current-time-zone' instead.")
72 Optional 3rd argument TIMEZONE specifies a time zone to be represented in;
73 if nil, the local time zone is assumed."
74 (let ((new (timezone-fix-time date local timezone)))
76 (timezone-make-time-string
86 if nil, the local time zone is assumed."
87 (let ((new (timezone-fix-time date local timezone)))
89 (timezone-make-time
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftp/
H A Dextern.h41 #include <sys/time.h>
42 #include <time.h>
44 #include <sys/time.h>
46 #include <time.h>
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dtztrans.h27 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
28 * An instance has a time of transition and rules for both before and after the transition.
34 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
37 * @param time The time of transition in milliseconds since the base time.
38 * @param from The time zone rule used before the transition.
39 * @param to The time zone rule used after the transition.
42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to);
97 * Returns the time o
[all...]
/macosx-10.9.5/Libc-997.90.3/sys/
H A Dgettimeofday.c29 #include <time.h>
31 #include <sys/time.h>
/macosx-10.9.5/Libc-997.90.3/uuid/uuidsrc/
H A DuuidP.h41 #include <sys/time.h>
42 #include <time.h>
/macosx-10.9.5/WebCore-7537.78.1/Modules/vibration/
H A DNavigatorVibration.cpp42 void NavigatorVibration::vibrate(Navigator* navigator, unsigned time, ExceptionCode& ec) argument
57 Vibration::from(navigator->frame()->page())->vibrate(time);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DClockGeneric.cpp41 void ClockGeneric::setCurrentTime(double time) argument
44 m_offset = time;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DMediaPlayerProxy.h85 - (void)_setCurrentTime:(double)time;
88 - (void)_setEndTime:(double)time;
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/darwin/
H A Dsysconf.h106 #include <time.h>
115 #include <sys/time.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/freebsd6.0/
H A Dsysconf.h107 #include <time.h>
116 #include <sys/time.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.10/
H A Dsysconf.h106 #include <time.h>
115 #include <sys/time.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.8/
H A Dsysconf.h106 #include <time.h>
115 #include <sys/time.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.9/
H A Dsysconf.h105 #include <time.h>
114 #include <sys/time.h>
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-dyld-locking/
H A Dbase.c24 #include <time.h>
27 #include <sys/time.h>
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Dprofile.c28 ** 'p' -- return time (on stdout) as string with format <sec>.<micro-sec>
51 /* This call returns the time since the last reset_watch call. The time
73 extern long time ();
75 tp->tv_sec = time ((long *)0);
/macosx-10.9.5/libpcap-42/libpcap/msdos/
H A Dbin2c.c4 #include <time.h>
19 time_t now = time (NULL);

Completed in 305 milliseconds

1234567891011>>