/external/icu/icu4c/source/tools/tzcode/ |
D | localtime.c | 145 static struct tm * gmtsub(const time_t * timep, int_fast32_t offset, 147 static struct tm * localsub(const time_t * timep, int_fast32_t offset, 170 static struct tm * timesub(const time_t * timep, int_fast32_t offset, 1256 localsub(const time_t *const timep, const int_fast32_t offset, in localsub() argument 1263 const time_t t = *timep; in localsub() 1267 return gmtsub(timep, offset, tmp); in localsub() 1332 localtime(const time_t *const timep) in localtime() argument 1335 return localsub(timep, 0L, &tm); in localtime() 1343 localtime_r(const time_t *const timep, struct tm *tmp) in localtime_r() argument 1345 return localsub(timep, 0L, tmp); in localtime_r() [all …]
|
D | zic.c | 174 const char * dayp, const char * timep); 1399 const char *const timep) in rulesub() argument 1413 dp = ecpyalloc(timep); in rulesub()
|
/external/webrtc/webrtc/base/ |
D | timeutils.cc | 116 static struct tm *gmtime_r(const time_t *timep, struct tm *result) { in gmtime_r() argument 118 struct tm *tm = gmtime(timep); // NOLINT in gmtime_r()
|
/external/compiler-rt/lib/dfsan/ |
D | dfsan_custom.cc | 422 char *__dfsw_ctime_r(const time_t *timep, char *buf, dfsan_label timep_label, in __dfsw_ctime_r() argument 424 char *ret = ctime_r(timep, buf); in __dfsw_ctime_r() 426 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), buf, in __dfsw_ctime_r() 644 struct tm *__dfsw_localtime_r(const time_t *timep, struct tm *result, in __dfsw_localtime_r() argument 647 struct tm *ret = localtime_r(timep, result); in __dfsw_localtime_r() 649 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), result, in __dfsw_localtime_r()
|
/external/autotest/site_utils/admin/scripts/ |
D | check_db.out | 216 timep 708
|
/external/iputils/ |
D | clockdiff.c | 427 __u32 *timep = (__u32*)(opt+4+i*8+4); in measure_opt() local 428 __u32 t = ntohl(*timep); in measure_opt()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 952 INTERCEPTOR(__sanitizer_tm *, localtime, unsigned long *timep) { 954 COMMON_INTERCEPTOR_ENTER(ctx, localtime, timep); 955 __sanitizer_tm *res = REAL(localtime)(timep); 957 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep)); 962 INTERCEPTOR(__sanitizer_tm *, localtime_r, unsigned long *timep, void *result) { 964 COMMON_INTERCEPTOR_ENTER(ctx, localtime_r, timep, result); 965 __sanitizer_tm *res = REAL(localtime_r)(timep, result); 967 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep)); 972 INTERCEPTOR(__sanitizer_tm *, gmtime, unsigned long *timep) { 974 COMMON_INTERCEPTOR_ENTER(ctx, gmtime, timep); [all …]
|
/external/curl/lib/ |
D | curl_setup.h | 507 extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
|
/external/python/cpython2/Lib/plat-unixware7/ |
D | IN.py | 426 def GET_TIME(timep): return \ argument
|