HomeSort by relevance Sort by last modified time
    Searched defs:gmtime (Results 1 - 9 of 9) sorted by null

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
ConstantTimeClock.c 5 This C file implements constant time value for time() and NULL for gmtime()
38 struct tm * gmtime (const time_t *timer) function
TimerWrapper.c 113 struct tm * gmtime (const time_t *timer) function
115 struct tm *GmTime;
127 GmTime = malloc (sizeof (struct tm));
128 if (GmTime == NULL) {
132 ZeroMem ((VOID *) GmTime, (UINTN) sizeof (struct tm));
137 GmTime->tm_sec = (int) (DayRemainder % SECSPERMIN);
138 GmTime->tm_min = (int) ((DayRemainder % SECSPERHOUR) / SECSPERMIN);
139 GmTime->tm_hour = (int) (DayRemainder / SECSPERHOUR);
140 GmTime->tm_wday = (int) ((DayNo + 4) % 7);
152 GmTime->tm_year = (int) (YearNo + (1970 - 1900));
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
Time.c 660 ** gmtsub is to gmtime as localsub is to localtime.
708 gmtime(const time_t *timer) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 196 struct tm *__cdecl gmtime(const time_t *_Time) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
208 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime64(_Time); } function
219 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime32(_Time); } function
  /external/icu/icu4c/source/tools/tzcode/
private.h 264 # undef gmtime macro
265 # define gmtime tz_gmtime macro
284 struct tm *gmtime(time_t const *);
localtime.c 211 ** ctime, gmtime, localtime] return values in one of two static
1379 gmtime(const time_t *const timep) function
    [all...]
  /bionic/libc/tzcode/
private.h 338 # undef gmtime macro
339 # define gmtime tz_gmtime macro
384 struct tm *gmtime(time_t const *);
localtime.c 184 ** ctime, gmtime, localtime] return values in one of two static
1558 gmtime(const time_t *timep) function
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsio0.c 487 #define gmtime wceex_gmtime macro
506 memmove(&Icc ->Created, gmtime(&now), sizeof(Icc ->Created));
    [all...]

Completed in 641 milliseconds