OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmrec
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/icu/source/common/
putil.c
295
struct tm
tmrec
;
local
297
uprv_memset( &
tmrec
, 0, sizeof(
tmrec
) );
298
tmrec
.tm_year = 70;
299
tmrec
.tm_mon = 0;
300
tmrec
.tm_mday = 1;
301
t1 = mktime(&
tmrec
); /* seconds of 1/1/1970*/
304
uprv_memcpy( &
tmrec
, gmtime(&t), sizeof(
tmrec
) );
305
t2 = mktime(&
tmrec
); /* seconds of current GMT*
[
all
...]
/external/icu4c/common/
putil.cpp
311
struct tm
tmrec
;
local
313
uprv_memset( &
tmrec
, 0, sizeof(
tmrec
) );
314
tmrec
.tm_year = 70;
315
tmrec
.tm_mon = 0;
316
tmrec
.tm_mday = 1;
317
t1 = mktime(&
tmrec
); /* seconds of 1/1/1970*/
320
uprv_memcpy( &
tmrec
, gmtime(&t), sizeof(
tmrec
) );
321
t2 = mktime(&
tmrec
); /* seconds of current GMT*
[
all
...]
Completed in 103 milliseconds