OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:time64_t
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/include/
time64.h
48
typedef int64_t
time64_t
;
typedef
52
char* ctime64(const
time64_t
*);
53
char* ctime64_r(const
time64_t
*, char*);
54
struct tm* gmtime64(const
time64_t
*);
55
struct tm* gmtime64_r(const
time64_t
*, struct tm*);
56
struct tm* localtime64(const
time64_t
*);
57
struct tm* localtime64_r(const
time64_t
*, struct tm*);
58
time64_t
mktime64(const struct tm*);
59
time64_t
timegm64(const struct tm*);
60
time64_t
timelocal64(const struct tm*)
[
all
...]
/bionic/libc/tzcode/
strftime.c
46
#define
time64_t
time_t
macro
357
time64_t
) + 1];
358
time64_t
mkt;
362
if (TYPE_SIGNED(
time64_t
))
/external/libchrome/base/
os_compat_android.cc
51
time64_t
result = timegm64(t);
/device/google/cuttlefish_common/guest/hals/camera/
Exif.cpp
46
// platforms have
time64_t
but 64-bit platforms do not.
53
using Timestamp =
time64_t
;
/external/libchrome/base/time/
time_posix.cc
43
// a
time64_t
depending on the host system, and associated convertion.
46
typedef
time64_t
SysTime;
/bionic/libc/bionic/
time64.c
75
typedef
time64_t
Time64_T
;
109
static const
Time64_T
seconds_in_gregorian_cycle = days_in_gregorian_cycle * 60LL * 60LL * 24LL;
196
Time64_T
timegm64(const struct TM *date) {
197
Time64_T
days = 0;
198
Time64_T
seconds = 0;
206
days += (
Time64_T
)cycles * days_in_gregorian_cycle;
211
days += (
Time64_T
)cycles * days_in_gregorian_cycle;
461
static
Time64_T
seconds_between_years(Year left_year, Year right_year) {
463
Time64_T
seconds = 0
[
all
...]
/device/generic/goldfish/camera/
Exif.cpp
38
// platforms have
time64_t
but 64-bit platforms do not.
45
using Timestamp =
time64_t
;
Completed in 1865 milliseconds