Searched refs:int64_t (Results 1 – 25 of 30) sorted by relevance
12
/bionic/tests/ |
D | sstream_test.cpp | 30 EXPECT_FALSE(ss.bad()) << value << ' ' << int64_t(result); in CheckOverflow() 31 EXPECT_EQ(should_overflow, ss.fail()) << value << ' ' << int64_t(result); in CheckOverflow() 63 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::min(), "-9223372036854775808", false); in TEST() 64 CheckOverflow<int64_t>(0, "-9223372036854775809", true); in TEST() 65 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::max(), "9223372036854775807", false); in TEST() 66 CheckOverflow<int64_t>(0, "9223372036854775808", true); in TEST()
|
D | sys_param_test.cpp | 43 int64_t min64 = INT64_MIN; in TEST()
|
D | utils.cpp | 92 int64_t NanoTime() { in NanoTime()
|
D | stdio_test.cpp | 3024 static int64_t GetTotalRamGiB() { in GetTotalRamGiB() 3027 return (static_cast<int64_t>(si.totalram) * si.mem_unit) / 1024 / 1024 / 1024; in GetTotalRamGiB() 3280 int64_t f = 0x3b; in TEST() 3306 int64_t f = 0x3b; in TEST() 3321 int64_t b = 0x11111111'22222222; in TEST() 3322 int64_t c = 0x33333333'44444444; in TEST() 3323 int64_t d = 0xaaaaaaaa'aaaaaaaa; in TEST() 3342 int64_t b = 0x11111111'22222222; in TEST() 3343 int64_t c = 0x33333333'44444444; in TEST() 3344 int64_t d = 0xaaaaaaaa'aaaaaaaa; in TEST() [all …]
|
D | utils.h | 320 int64_t NanoTime();
|
/bionic/libc/include/ |
D | stdint.h | 67 typedef __int64_t int64_t; typedef 82 typedef int64_t int_least64_t; 88 typedef int64_t int_fast64_t; 92 typedef int64_t int_fast16_t; 94 typedef int64_t int_fast32_t; 104 typedef int64_t intmax_t;
|
D | time64.h | 45 typedef int64_t time64_t;
|
/bionic/libc/bionic/ |
D | sysinfo.cpp | 68 return (static_cast<int64_t>(si.totalram) * si.mem_unit) / page_size(); in get_phys_pages() 74 return ((static_cast<int64_t>(si.freeram) + si.bufferram) * si.mem_unit) / page_size(); in get_avphys_pages()
|
D | __cxa_guard.cpp | 63 int64_t aligner;
|
D | libc_init_static.cpp | 300 static int64_t __get_memtag_upgrade_secs() { in __get_memtag_upgrade_secs() 303 int64_t timed_upgrade = 0; in __get_memtag_upgrade_secs() 340 if (int64_t timed_upgrade = __get_memtag_upgrade_secs()) { in __libc_init_mte()
|
D | time64.c | 74 typedef int64_t Int64; 76 typedef int64_t Year;
|
D | fdsan.cpp | 242 return static_cast<uint64_t>(static_cast<int64_t>(tag << 8) >> 8); in android_fdsan_get_tag_value()
|
/bionic/libc/include/bits/ |
D | pthread_types.h | 49 int64_t __private[4]; 97 int64_t __private;
|
/bionic/benchmarks/ |
D | bionic_benchmarks.cpp | 100 typedef std::vector<std::vector<int64_t>> args_vector_t; 238 int64_t align; in ParseOnebufManualStr() 239 int64_t size; in ParseOnebufManualStr() 281 int64_t align1; in ParseTwobufManualStr() 282 int64_t align2; in ParseTwobufManualStr() 283 int64_t size; in ParseTwobufManualStr() 347 to_populate->emplace_back(std::vector<int64_t>{converted}); in ResolveArgs() 351 std::vector<int64_t> test_args{converted}; in ResolveArgs() 368 to_populate->emplace_back(std::vector<int64_t>{}); in ResolveArgs() 389 for (const std::vector<int64_t>& args : (*run_args)) { in RegisterGoogleBenchmarks()
|
D | stdio_benchmark.cpp | 55 state.SetBytesProcessed(int64_t(state.iterations()) * int64_t(chunk_size)); in ReadWriteTest()
|
D | syscall_mm_benchmark.cpp | 38 int64_t size; 44 int64_t size;
|
/bionic/libc/include/sys/ |
D | types.h | 101 typedef int64_t off_t;
|
/bionic/libc/private/ |
D | bionic_globals.h | 137 int64_t heap_tagging_upgrade_timer_sec = 0;
|
/bionic/libc/async_safe/ |
D | async_safe_log.cpp | 217 if (is_signed && static_cast<int64_t>(value) < 0) { in format_integer() 221 value = static_cast<uint64_t>(-static_cast<int64_t>(value)); in format_integer() 404 value = static_cast<uint64_t>((static_cast<int64_t>(value << shift)) >> shift); in out_vformat()
|
/bionic/libc/kernel/uapi/linux/ |
D | fuse.h | 32 int64_t tv_sec; 535 int64_t off; 536 int64_t len;
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | e_rem_pio2l.h | 67 int64_t n; in __ieee754_rem_pio2l()
|
/bionic/linker/ |
D | linker_utils_test.cpp | 140 int64_t val = 42; in TEST()
|
/bionic/tests/headers/posix/ |
D | stdint_h.c | 41 TYPE(int64_t); in stdint_h()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_fmodl.c | 68 int64_t hx,hz; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */ in fmodl()
|
D | s_remquol.c | 71 int64_t hx,hz; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */ in remquol()
|
12