Searched refs:uint8_t (Results 1 – 18 of 18) sorted by relevance
/ndk/sources/cxx-stl/gabi++/src/ |
D | helper_func_internal.cc | 52 const uint8_t* classInfo, 53 uint8_t ttypeEncoding, 93 const uint8_t* lsda = (const uint8_t*)_Unwind_GetLanguageSpecificData(context); in scanEHTable() 103 const uint8_t* classInfo = NULL; in scanEHTable() 104 uint8_t lpStartEncoding = *lsda++; in scanEHTable() 105 const uint8_t* lpStart = (const uint8_t*)readEncodedPointer(&lsda, lpStartEncoding); in scanEHTable() 107 lpStart = (const uint8_t*)funcStart; in scanEHTable() 109 uint8_t ttypeEncoding = *lsda++; in scanEHTable() 114 uint8_t callSiteEncoding = *lsda++; in scanEHTable() 116 const uint8_t* callSiteTableStart = lsda; in scanEHTable() [all …]
|
D | dwarf_helper.h | 71 const uint8_t* actionRecord; // Currently unused. Retained to ease future maintenance. 72 const uint8_t* languageSpecificData; // Needed only for __cxa_call_unexpected 81 uintptr_t readULEB128(const uint8_t** data); 82 intptr_t readSLEB128(const uint8_t** data); 83 uintptr_t readEncodedPointer(const uint8_t** data, 84 uint8_t encoding);
|
D | dwarf_helper.cc | 56 uintptr_t readULEB128(const uint8_t** data) { in readULEB128() 60 const uint8_t *p = *data; in readULEB128() 70 intptr_t readSLEB128(const uint8_t** data) { in readSLEB128() 74 const uint8_t *p = *data; in readSLEB128() 87 static inline uint16_t readUData2(const uint8_t* data) { in readUData2() 97 static inline uint32_t readUData4(const uint8_t* data) { in readUData4() 111 static inline uint64_t readUData8(const uint8_t* data) { in readUData8() 133 static inline uintptr_t readAbsPtr(const uint8_t* data) { in readAbsPtr() 143 uintptr_t readEncodedPointer(const uint8_t** data, in readEncodedPointer() 144 uint8_t encoding) { in readEncodedPointer() [all …]
|
D | call_unexpected.cc | 261 const uint8_t* lsda; in __cxa_call_unexpected() 283 uint8_t lpStartEncoding = *lsda++; in __cxa_call_unexpected() 284 const uint8_t* lpStart = (const uint8_t*)readEncodedPointer(&lsda, lpStartEncoding); in __cxa_call_unexpected() 285 uint8_t ttypeEncoding = *lsda++; in __cxa_call_unexpected() 290 const uint8_t* classInfo = lsda + classInfoOffset; in __cxa_call_unexpected()
|
D | helper_func_internal.h | 49 const uint8_t* classInfo, 50 uint8_t ttypeEncoding,
|
D | vmi_class_type_info.cc | 59 static_cast<uint8_t*>(vtable) + cur_base_offset); in walk_to() 61 cur_base_ptr = static_cast<uint8_t*>(cur_base_ptr) + cur_base_offset; in walk_to()
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | elf_defs.h | 31 #define INC_PTR(p, n) (reinterpret_cast<uint8_t*>(p) + (n)) 38 #define INC_CPTR(p, n) (reinterpret_cast<const uint8_t*>(p) + (n)) 48 (reinterpret_cast<uint8_t*>(p) + (n)) 58 (reinterpret_cast<const uint8_t*>(p) + (n)) 90 return ((size_t)(reinterpret_cast<const uint8_t*>(e) - in diff_ptr() 91 reinterpret_cast<const uint8_t*>(s))); in diff_ptr() 101 static inline uint8_t 103 return *(reinterpret_cast<const uint8_t*>(ptr) + bt); in get_byte()
|
D | elf_file.h | 145 uint8_t pull_val(const uint8_t* val) const { in pull_val() 148 uint8_t pull_val(const uint8_t& val) const { in pull_val()
|
D | elff_elf.h | 41 typedef uint8_t Elf_Byte;
|
/ndk/sources/cxx-stl/llvm-libc++/src/ |
D | locale.cpp | 1620 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in utf16_to_utf8() 1629 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8() 1630 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8() 1631 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8() 1642 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8() 1648 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8() 1649 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8() 1655 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8() 1656 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8() 1657 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | cstdint | 110 uint8_t 158 using::uint8_t;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cxxabi.h | 301 const uint8_t* actionRecord; 302 const uint8_t* languageSpecificData;
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdint.in.h | 117 #undef uint8_t 121 #define uint8_t gl_uint8_t macro 194 #define uint_least8_t uint8_t
|
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 44 static_assert(sizeof(uint8_t)*CHAR_BIT == 8, in main() 46 static_assert(std::is_unsigned<uint8_t>::value, in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 44 static_assert(sizeof(std::uint8_t)*CHAR_BIT == 8, in main() 46 static_assert(std::is_unsigned<std::uint8_t>::value, in main()
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdint.m4 | 91 uint8_t b1 = UINT8_MAX; 180 int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 884 std::uint8_t i1 = 0; in main()
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | configure | 20096 uint8_t b1 = UINT8_MAX; 20185 int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;
|