/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | cstdint.hpp | 126 using ::int64_t; 169 using ::int64_t; 170 typedef int64_t int_least64_t; 171 typedef int64_t int_fast64_t; 176 typedef int64_t intmax_t; 308 typedef ::boost::long_long_type int64_t; typedef 320 typedef long int64_t; typedef 332 __extension__ typedef long long int64_t; typedef 344 typedef __int64 int64_t; typedef
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdint.in.h | 140 # undef int64_t 142 # define int64_t gl_int64_t macro 145 # undef int64_t 147 # define int64_t gl_int64_t macro 150 # undef int64_t 152 # define int64_t gl_int64_t macro 200 # define int_least64_t int64_t 237 # define int_fast64_t int64_t 262 # define intmax_t int64_t
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | elf_file.h | 256 int64_t pull_val(const int64_t* val) const { in pull_val() 257 return static_cast<int64_t> in pull_val() 260 int64_t pull_val(const int64_t& val) const { in pull_val() 261 return static_cast<int64_t> in pull_val()
|
D | elff_elf.h | 51 typedef int64_t Elf_Sxword;
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | DwarfParser.hpp | 78 int64_t value; 85 int64_t cfaExpression; // CFA = expression 380 int64_t offset; in parseInstructions() 420 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd) in parseInstructions() 488 results->savedRegisters[reg].value = (int64_t)reg2; in parseInstructions() 521 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd); in parseInstructions() 553 results->cfaExpression = (int64_t)p; in parseInstructions() 569 results->savedRegisters[reg].value = (int64_t)p; in parseInstructions() 618 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd) in parseInstructions() 649 results->savedRegisters[reg].value = (int64_t)p; in parseInstructions() [all …]
|
D | AddressSpace.hpp | 109 typedef int64_t sint_t; 146 static int64_t getSLEB128(pint_t &addr, pint_t end); 191 inline int64_t LocalAddressSpace::getSLEB128(pint_t &addr, pint_t end) { in getSLEB128() 194 int64_t result = 0; in getSLEB128() 421 int64_t getSLEB128(pint_t &addr, pint_t end); 465 int64_t OtherAddressSpace<P>::getSLEB128(pint_t &addr, pint_t end) { in getSLEB128()
|
/ndk/tests/build/issue17144-byteswap/jni/ |
D | issue17144-byteswap.c | 6 int64_t I64;
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_personality.cpp | 263 result = static_cast<uintptr_t>(*((int64_t*)p)); in readEncodedPointer() 264 p += sizeof(int64_t); in readEncodedPointer() 396 exception_spec_can_catch(int64_t specIndex, const uint8_t* classInfo, in exception_spec_can_catch() 438 exception_spec_can_catch(int64_t specIndex, const uint8_t* classInfo, in exception_spec_can_catch() 488 int64_t ttypeIndex; // > 0 catch handler, < 0 exception spec handler, == 0 a cleanup 684 int64_t ttypeIndex = readSLEB128(&action); in scan_eh_tab() 842 int64_t actionOffset = readSLEB128(&temp); in scan_eh_tab() 1046 results.ttypeIndex = (int64_t)(int32_t)unwind_exception->barrier_cache.bitpattern[4]; in load_results_from_barrier_cache() 1188 int64_t ttypeIndex; in __cxa_call_unexpected() 1198 ttypeIndex = (int64_t)(int32_t)unwind_exception->barrier_cache.bitpattern[4]; in __cxa_call_unexpected()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdint | 108 int64_t 156 using::int64_t;
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | dwarf_helper.h | 71 int64_t ttypeIndex; // > 0 catch handler, < 0 exception spec handler, == 0 a cleanup
|
D | helper_func_internal.cc | 147 int64_t ttypeIndex = readSLEB128(&action); in scanEHTable() 263 int64_t actionOffset = readSLEB128(&temp); in scanEHTable() 313 bool canExceptionSpecCatch(int64_t specIndex, in canExceptionSpecCatch() 376 results.ttypeIndex = (int64_t) exc->barrier_cache.bitpattern[1]; in loadDataFromBarrierCache() 447 bool canExceptionSpecCatch(int64_t specIndex, in canExceptionSpecCatch()
|
D | dwarf_helper.cc | 186 result = static_cast<uintptr_t>(static_cast<int64_t>(readUData8(p))); in readEncodedPointer() 187 p += sizeof(int64_t); in readEncodedPointer()
|
D | helper_func_internal.h | 48 bool canExceptionSpecCatch(int64_t specIndex,
|
D | call_unexpected.cc | 261 int64_t ttypeIndex; in __cxa_call_unexpected()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 38 static_assert(sizeof(int64_t)*CHAR_BIT == 64, in main() 40 static_assert(std::is_signed<int64_t>::value, in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 38 static_assert(sizeof(std::int64_t)*CHAR_BIT == 64, in main() 40 static_assert(std::is_signed<std::int64_t>::value, in main()
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdint.m4 | 87 int64_t a4 = INT64_MAX; 88 int64_t a4min = INT64_MIN;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 881 std::int64_t i4 = 0; in main()
|
/ndk/sources/host-tools/ndk-depends/ |
D | ndk-depends.cc | 422 typedef int64_t Sxword;
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | configure | 20092 int64_t a4 = INT64_MAX; 20093 int64_t a4min = INT64_MIN;
|