Searched defs:Time (Results 1 - 17 of 17) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java15 public class Time class in inherits:ASN1Encodable,ASN1Choice
21 public static Time getInstance(
28 public Time( method in class:Time
34 throw new IllegalArgumentException("unknown object passed to Time");
45 public Time( method in class:Time
66 public static Time getInstance(
69 if (obj == null || obj instanceof Time)
71 return (Time)obj;
75 return new Time((DERUTCTime)obj);
79 return new Time((DERGeneralizedTim
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dratetracker.cc48 uint32 current_time = Time();
76 uint32 RateTracker::Time() const { function in class:talk_base::RateTracker
77 return talk_base::Time();
H A Dtime.cc48 uint32 Time() { function in namespace:talk_base
56 uint32 Time() { function in namespace:talk_base
63 static const uint32 g_start = Time();
73 return Time() + elapsed;
/external/openssl/ssl/
H A Ds23_clnt.c144 unsigned long Time=(unsigned long)time(NULL); local
149 RAND_add(&Time,sizeof(Time),0);
273 unsigned long Time,l; local
327 Time=(unsigned long)time(NULL); /* Time */
328 l2n(Time,p);
H A Ds23_srvr.c143 unsigned long Time=(unsigned long)time(NULL); local
148 RAND_add(&Time,sizeof(Time),0);
H A Dd1_clnt.c150 unsigned long Time=(unsigned long)time(NULL); local
155 RAND_add(&Time,sizeof(Time),0);
602 unsigned long Time,l; local
636 Time=(unsigned long)time(NULL); /* Time */
637 l2n(Time,p);
H A Dd1_srvr.c148 unsigned long Time=(unsigned long)time(NULL); local
155 RAND_add(&Time,sizeof(Time),0);
767 unsigned long l,Time; local
773 Time=(unsigned long)time(NULL); /* Time */
774 l2n(Time,p);
775 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
H A Ds3_clnt.c186 unsigned long Time=(unsigned long)time(NULL); local
191 RAND_add(&Time,sizeof(Time),0);
670 unsigned long Time,l; local
701 Time=(unsigned long)time(NULL); /* Time */
702 l2n(Time,p);
H A Ds3_srvr.c190 unsigned long alg_k,Time=(unsigned long)time(NULL); local
195 RAND_add(&Time,sizeof(Time),0);
1112 unsigned long Time; local
1114 Time=(unsigned long)time(NULL); /* Time */
1116 l2n(Time,pos);
1339 unsigned long Time; local
1348 Time=(unsigned long)time(NULL); /* Time */
[all...]
/external/llvm/include/llvm/Support/
H A DTimer.h54 // Sort by Wall Time elapsed, as it is the only thing really accurate
85 TimeRecord Time; member in class:llvm::Timer
111 /// startTimer - Start the timer running. Time between calls to
/external/tcpdump/
H A Dutil.c149 time_t Time; local
192 Time = (tvp->tv_sec + thiszone) - s;
193 tm = gmtime (&Time);
/external/webkit/Source/WebCore/html/
H A DDateComponents.h44 // * Time type: hour-minute-second-millisecond
77 // The format argument is valid for DateTime, DateTimeLocal, and Time types.
123 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
193 Time, enumerator in enum:WebCore::DateComponents::Type
/external/chromium/base/
H A Dtime.h5 // Time represents an absolute point in time, internally represented as
16 // decrease (if the user changes the computer clock, Time::Now() may actually
44 class Time;
137 Time operator+(Time t) const;
161 friend class Time;
179 // Time -----------------------------------------------------------------------
182 class BASE_API Time { class in namespace:base
221 // Exploded value can be successfully converted to a Time value.
225 // Contains the NULL time. Use Time
226 explicit Time() : us_(0) { function in class:base::Time
389 explicit Time(int64 us) : us_(us) { function in class:base::Time
[all...]
/external/llvm/lib/CodeGen/
H A DBranchFolding.cpp431 unsigned Time = 0; local
437 Time += 10;
439 Time += 2;
441 ++Time;
443 return Time;
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DXvproto.h63 #define Time CARD32 macro
272 Time time B32;
281 Time time B32;
571 Time time B32;
583 Time time B32;
600 #undef Time macro
/external/v8/src/
H A Dplatform-win32.cc240 // The Time class represents time on win32. A timestamp is represented as
245 class Time { class in namespace:v8::internal
248 Time();
249 explicit Time(double jstime);
250 Time(int year, int mon, int day, int hour, int min, int sec);
301 int64_t Diff(Time* other);
323 bool Time::tz_initialized_ = false;
324 TIME_ZONE_INFORMATION Time::tzinfo_;
325 char Time::std_tz_name_[kTzNameSize];
326 char Time
330 Time::Time() { function in class:v8::internal::Time
336 Time::Time(double jstime) { function in class:v8::internal::Time
342 Time::Time(int year, int mon, int day, int hour, int min, int sec) { function in class:v8::internal::Time
[all...]
/external/valgrind/main/massif/
H A Dms_main.c1045 // Time is measured either in i or ms or bytes, depending on the --time-unit
1048 typedef Long Time; typedef
1063 Time time;
1187 Time min_timespan;
1217 Time timespan = snapshots[jn].time - snapshots[jp].time;
1282 Time timespan = snapshots[i].time - snapshots[i-1].time;
1306 static Time get_time(void)
1322 static Time start_time_ms;
1342 take_snapshot(Snapshot* snapshot, SnapshotKind kind, Time my_time,
1388 static Time min_time_interva
[all...]

Completed in 505 milliseconds