Home
last modified time | relevance | path

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

12

/ndk/sources/cxx-stl/gabi++/src/
Dhelper_func_internal.cc48 const uint8_t* classInfo,
49 uint8_t ttypeEncoding,
89 const uint8_t* lsda = (const uint8_t*)_Unwind_GetLanguageSpecificData(context); in scanEHTable()
99 const uint8_t* classInfo = NULL; in scanEHTable()
100 uint8_t lpStartEncoding = *lsda++; in scanEHTable()
101 const uint8_t* lpStart = (const uint8_t*)readEncodedPointer(&lsda, lpStartEncoding); in scanEHTable()
103 lpStart = (const uint8_t*)funcStart; in scanEHTable()
105 uint8_t ttypeEncoding = *lsda++; in scanEHTable()
110 uint8_t callSiteEncoding = *lsda++; in scanEHTable()
112 const uint8_t* callSiteTableStart = lsda; in scanEHTable()
[all …]
Ddwarf_helper.h72 const uint8_t* actionRecord; // Currently unused. Retained to ease future maintenance.
73 const uint8_t* languageSpecificData; // Needed only for __cxa_call_unexpected
82 uintptr_t readULEB128(const uint8_t** data) _GABIXX_HIDDEN;
83 intptr_t readSLEB128(const uint8_t** data) _GABIXX_HIDDEN;
84 uintptr_t readEncodedPointer(const uint8_t** data,
85 uint8_t encoding) _GABIXX_HIDDEN;
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.cc262 const uint8_t* lsda; in __cxa_call_unexpected()
284 uint8_t lpStartEncoding = *lsda++; in __cxa_call_unexpected()
286 uint8_t ttypeEncoding = *lsda++; in __cxa_call_unexpected()
291 const uint8_t* classInfo = lsda + classInfoOffset; in __cxa_call_unexpected()
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()
Dhelper_func_internal.h49 const uint8_t* classInfo,
50 uint8_t ttypeEncoding,
Dcxxabi_defines.h298 const uint8_t* actionRecord;
299 const uint8_t* languageSpecificData;
/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++/libcxx/src/
Dlocale.cpp1779 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in utf16_to_utf8()
1788 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8()
1789 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8()
1790 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8()
1801 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8()
1807 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8()
1808 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8()
1814 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1815 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1816 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
[all …]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_personality.cpp174 readULEB128(const uint8_t** data) in readULEB128()
179 const uint8_t *p = *data; in readULEB128()
197 readSLEB128(const uint8_t** data) in readSLEB128()
202 const uint8_t *p = *data; in readSLEB128()
223 readEncodedPointer(const uint8_t** data, uint8_t encoding) in readEncodedPointer()
228 const uint8_t* p = *data; in readEncodedPointer()
330 get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, in get_shim_type_info()
331 uint8_t ttypeEncoding, bool native_exception, in get_shim_type_info()
343 const uint8_t* ttypePtr = classInfo - ttypeIndex * sizeof(uintptr_t); in get_shim_type_info()
349 get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, in get_shim_type_info()
[all …]
Dcxa_guard.cpp119 uint8_t lock[2]; in get_lock()
131 uint8_t lock[2]; in set_lock()
144 uint8_t lock[2]; in get_lock()
156 uint8_t lock[2]; in set_lock()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DAddressSpace.hpp114 uint8_t get8(pint_t addr) { in get8()
115 uint8_t val; in get8()
148 pint_t getEncodedP(pint_t &addr, pint_t end, uint8_t encoding);
167 const uint8_t *p = (uint8_t *)addr; in getULEB128()
168 const uint8_t *pend = (uint8_t *)end; in getULEB128()
192 const uint8_t *p = (uint8_t *)addr; in getSLEB128()
193 const uint8_t *pend = (uint8_t *)end; in getSLEB128()
196 uint8_t byte; in getSLEB128()
213 uint8_t encoding) { in getEncodedP()
215 const uint8_t *p = (uint8_t *)addr; in getEncodedP()
[all …]
DUnwind-EHABI.cpp31 uint8_t getByte(uint32_t* data, size_t offset) { in getByte()
32 uint8_t* byteData = reinterpret_cast<uint8_t*>(data); in getByte()
201 uint32_t RegisterMask(uint8_t start, uint8_t count_minus_one) { in RegisterMask()
207 uint32_t RegisterRange(uint8_t start, uint8_t count_minus_one) { in RegisterRange()
221 uint8_t byte = getByte(data, offset++); in _Unwind_VRS_Interpret()
245 uint8_t reg = byte & 0x0f; in _Unwind_VRS_Interpret()
270 uint8_t registers = getByte(data, offset++); in _Unwind_VRS_Interpret()
298 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
327 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
328 uint8_t start = v >> 4; in _Unwind_VRS_Interpret()
[all …]
DDwarfParser.hpp43 uint8_t pointerEncoding;
44 uint8_t lsdaEncoding;
45 uint8_t personalityEncoding;
46 uint8_t personalityOffsetInCIE;
52 uint8_t returnAddressRegister;
285 uint8_t version = addressSpace.get8(p); in parseCIE()
301 cieInfo->returnAddressRegister = (uint8_t)raReg; in parseCIE()
315 cieInfo->personalityOffsetInCIE = (uint8_t)(p - cie); in parseCIE()
382 uint8_t opcode = addressSpace.get8(p); in parseInstructions()
383 uint8_t operand; in parseInstructions()
/ndk/tests/build/b9193874-neon/jni/
Db9193874-neon.c3 typedef unsigned char uint8_t; typedef
89 vmov_n_u8 (uint8_t __a) in vmov_n_u8()
139 vld1_u8 (const uint8_t * __a) in vld1_u8()
144 vst2_u8 (uint8_t * __a, uint8x8x2_t __b) in vst2_u8()
150 vst4_u8 (uint8_t * __a, uint8x8x4_t __b) in vst4_u8()
163uint8_t *top_y, const uint8_t *bottom_y, const uint8_t *top_u, const uint8_t *top_v, const uint8_t in UpsampleRgbaLinePairNEON()
166 uint8_t uv_buf[2 * 32 + 15]; in UpsampleRgbaLinePairNEON()
167 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); in UpsampleRgbaLinePairNEON()
/ndk/sources/host-tools/ndk-depends/
Dndk-depends.cc239 uint16_t get_u16_le(const uint8_t* bytes) { in get_u16_le()
243 uint32_t get_u32_le(const uint8_t* bytes) { in get_u32_le()
248 uint64_t get_u64_le(const uint8_t* bytes) { in get_u64_le()
254 uint16_t get_u16_be(const uint8_t* bytes) { in get_u16_be()
258 uint32_t get_u32_be(const uint8_t* bytes) { in get_u32_be()
263 uint64_t get_u64_be(const uint8_t* bytes) { in get_u64_be()
275 virtual const uint8_t* GetBytesAt(off_t pos, size_t size) = 0;
287 virtual const uint8_t* GetBytesAt(off_t pos, size_t size) { in GetBytesAt()
299 uint8_t buffer_[kMaxBytes];
307 const uint8_t* buf = GetBytesAt(pos, 2); in GetU16At()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Dcstdint.hpp106 using ::uint8_t;
149 using ::uint8_t;
150 typedef uint8_t uint_least8_t;
151 typedef uint8_t uint_fast8_t;
211 typedef unsigned char uint8_t; typedef
434 # define UINT8_C(value) static_cast<boost::uint8_t>(value##u)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdint110 uint8_t
158 using::uint8_t;
/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_elf_symbols.cpp16 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(name); in ElfHash()
Dcrazy_linker_elf_loader.cpp194 uint8_t* addr = reinterpret_cast<uint8_t*>(min_vaddr); in ReserveAddressSpace()
199 addr = static_cast<uint8_t*>(wanted_load_address_); in ReserveAddressSpace()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
Denum.pass.cpp28 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet };
/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++/libcxx/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()

12