Home
last modified time | relevance | path

Searched refs:UINT64_C (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/include/
Dstdint.h134 #define UINT_LEAST64_C(c) UINT64_C(c)
135 #define UINT_FAST64_C(c) UINT64_C(c)
138 #define UINTMAX_C(c) UINT64_C(c)
142 # define UINT64_C(c) c ## UL macro
144 # define UINTPTR_C(c) UINT64_C(c)
148 # define UINT64_C(c) c ## ULL macro
193 #define UINT64_MAX (UINT64_C(18446744073709551615))
/bionic/tests/
Dsystem_properties_test2.cpp31 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_nsec; in NanoTime()