Home
last modified time | relevance | path

Searched refs:uint8_t (Results 1 – 18 of 18) sorted by relevance

/ndk/sources/cxx-stl/gabi++/src/
Dhelper_func_internal.cc52 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 …]
Ddwarf_helper.h71 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);
Ddwarf_helper.cc56 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 …]
Dcall_unexpected.cc261 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()
Dhelper_func_internal.h49 const uint8_t* classInfo,
50 uint8_t ttypeEncoding,
Dvmi_class_type_info.cc59 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/
Delf_defs.h31 #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()
Delf_file.h145 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()
Delff_elf.h41 typedef uint8_t Elf_Byte;
/ndk/sources/cxx-stl/llvm-libc++/src/
Dlocale.cpp1620 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/
Dcstdint110 uint8_t
158 using::uint8_t;
/ndk/sources/cxx-stl/gabi++/include/
Dcxxabi.h301 const uint8_t* actionRecord;
302 const uint8_t* languageSpecificData;
/ndk/sources/host-tools/sed-4.2.1/lib/
Dstdint.in.h117 #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/
Dstdint_h.pass.cpp44 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/
Dcstdint.pass.cpp44 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/
Dstdint.m491 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/
Dcinttypes.pass.cpp884 std::uint8_t i1 = 0; in main()
/ndk/sources/host-tools/sed-4.2.1/
Dconfigure20096 uint8_t b1 = UINT8_MAX;
20185 int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;