/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/mach-o/ |
D | compact_unwind_encoding.h | 451 uint16_t entryPageOffset; 452 uint16_t entryCount; 460 uint16_t entryPageOffset; 461 uint16_t entryCount; 462 uint16_t encodingsPageOffset; 463 uint16_t encodingsCount;
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | dwarf_helper.cc | 87 static inline uint16_t readUData2(const uint8_t* data) { in readUData2() 89 return ((static_cast<uint16_t>(data[0])) | in readUData2() 90 (static_cast<uint16_t>(data[1]) << 8)); in readUData2() 92 return ((static_cast<uint16_t>(data[0]) << 8) | in readUData2() 93 (static_cast<uint16_t>(data[1]))); in readUData2() 167 p += sizeof(uint16_t); in readEncodedPointer()
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | elf_file.h | 165 uint16_t pull_val(const uint16_t* val) const { in pull_val() 170 return (uint16_t)get_byte(val, 0) << 8 | get_byte(val, 1); in pull_val() 172 return (uint16_t)get_byte(val, 1) << 8 | get_byte(val, 0); in pull_val() 175 uint16_t pull_val(const uint16_t& val) const { in pull_val() 180 (pull_val(reinterpret_cast<const uint16_t*>(val))); in pull_val() 184 (pull_val(reinterpret_cast<const uint16_t&>(val))); in pull_val()
|
D | elf_defs.h | 130 uint16_t tmp = 0x00FF; in is_little_endian_cpu()
|
D | elff_elf.h | 44 typedef uint16_t Elf_Half;
|
D | dwarf_defs.h | 35 typedef uint16_t Dwarf_Tag; 38 typedef uint16_t Dwarf_At; 41 typedef uint16_t Dwarf_Form;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 1778 utf16_to_utf8(const uint16_t* frm, const uint16_t* frm_end, const uint16_t*& frm_nxt, in utf16_to_utf8() 1794 uint16_t wc1 = *frm_nxt; in utf16_to_utf8() 1822 uint16_t wc2 = frm_nxt[1]; in utf16_to_utf8() 1871 uint16_t wc1 = static_cast<uint16_t>(*frm_nxt); in utf16_to_utf8() 1899 uint16_t wc2 = static_cast<uint16_t>(frm_nxt[1]); in utf16_to_utf8() 1933 uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, in utf8_to_utf16() 1951 *to_nxt = static_cast<uint16_t>(c1); in utf8_to_utf16() 1965 uint16_t t = static_cast<uint16_t>(((c1 & 0x1F) << 6) | (c2 & 0x3F)); in utf8_to_utf16() 1994 uint16_t t = static_cast<uint16_t>(((c1 & 0x0F) << 12) in utf8_to_utf16() 2032 *to_nxt = static_cast<uint16_t>( in utf8_to_utf16() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | cstdint.hpp | 113 using ::uint16_t; 156 using ::uint16_t; 157 typedef uint16_t uint_least16_t; 158 typedef uint16_t uint_fast16_t; 227 typedef unsigned short uint16_t; typedef 234 typedef unsigned short uint16_t; typedef 244 typedef unsigned __short16 uint16_t; typedef 441 # define UINT16_C(value) static_cast<boost::uint16_t>(value##u)
|
/ndk/sources/android/support/src/musl-math/ |
D | libm.h | 29 uint16_t se; 38 uint16_t top; 39 uint16_t se;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdint | 111 uint16_t 159 using::uint16_t;
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | AddressSpace.hpp | 119 uint16_t get16(pint_t addr) { in get16() 120 uint16_t val; in get16() 416 uint16_t get16(pint_t addr); 437 template <typename P> uint16_t OtherAddressSpace<P>::get16(pint_t addr) { in get16() 438 return P::E::get16(*(uint16_t *)localCopy(addr)); in get16()
|
D | UnwindCursor.hpp | 253 uint16_t entryPageOffset() const { in entryPageOffset() 258 uint16_t entryCount() const { in entryCount() 300 uint16_t entryPageOffset() const { in entryPageOffset() 305 uint16_t entryCount() const { in entryCount() 310 uint16_t encodingsPageOffset() const { in encodingsPageOffset() 315 uint16_t encodingsCount() const { in encodingsCount() 335 uint16_t encodingIndex(uint32_t index) const { in encodingIndex() 1042 uint16_t encodingIndex = pageIndex.encodingIndex(low); in getInfoFromCompactEncodingSection() 1051 uint16_t pageEncodingIndex = in getInfoFromCompactEncodingSection() 1052 encodingIndex - (uint16_t)sectionHeader.commonEncodingsArrayCount(); in getInfoFromCompactEncodingSection()
|
D | Unwind-EHABI.cpp | 42 *out = *reinterpret_cast<const uint16_t*>(data); in getNextNibble() 235 uint16_t registers = in _Unwind_VRS_Interpret()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdint.in.h | 124 #undef uint16_t 128 #define uint16_t gl_uint16_t macro 196 #define uint_least16_t uint16_t
|
/ndk/sources/host-tools/ndk-depends/ |
D | ndk-depends.cc | 239 uint16_t get_u16_le(const uint8_t* bytes) { in get_u16_le() 240 return static_cast<uint16_t>(bytes[0] | (bytes[1] << 8)); in get_u16_le() 254 uint16_t get_u16_be(const uint8_t* bytes) { in get_u16_be() 255 return static_cast<uint16_t>((bytes[0] << 8) | bytes[1]); in get_u16_be() 276 virtual uint16_t GetU16At(off_t pos) = 0; 306 virtual uint16_t GetU16At(off_t pos) { in GetU16At() 326 virtual uint16_t GetU16At(off_t pos) { in GetU16At() 377 typedef uint16_t Half; 416 typedef uint16_t Half;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 49 static_assert(sizeof(uint16_t)*CHAR_BIT == 16, in main() 51 static_assert(std::is_unsigned<uint16_t>::value, in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 49 static_assert(sizeof(std::uint16_t)*CHAR_BIT == 16, in main() 51 static_assert(std::is_unsigned<std::uint16_t>::value, in main()
|
/ndk/sources/android/support/src/msun/ |
D | math_private.h | 553 uint16_t __hx; \ 607 uint16_t __hx; \
|
/ndk/tests/abcc/jni/ |
D | Abcc.cpp | 86 uint16_t tag, length; in readWrapper()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_personality.cpp | 243 result = *((uint16_t*)p); in readEncodedPointer() 244 p += sizeof(uint16_t); in readEncodedPointer()
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdint.m4 | 96 uint16_t b2 = UINT16_MAX; 183 int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 885 std::uint16_t i2 = 0; in main()
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | configure | 20101 uint16_t b2 = UINT16_MAX; 20188 int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;
|