Home
last modified time | relevance | path

Searched refs:uint8_t (Results 1 – 25 of 26) 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/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.cpp179 readULEB128(const uint8_t** data) in readULEB128()
184 const uint8_t *p = *data; in readULEB128()
202 readSLEB128(const uint8_t** data) in readSLEB128()
207 const uint8_t *p = *data; in readSLEB128()
228 readEncodedPointer(const uint8_t** data, uint8_t encoding) in readEncodedPointer()
233 const uint8_t* p = *data; in readEncodedPointer()
337 get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, in get_shim_type_info()
338 uint8_t ttypeEncoding, bool native_exception, in get_shim_type_info()
350 const uint8_t* ttypePtr = classInfo - ttypeIndex * sizeof(uintptr_t); in get_shim_type_info()
357 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/
DEHHeaderParser.hpp37 uint8_t table_enc;
50 uint8_t tableEnc,
53 static size_t getTableEntrySize(uint8_t tableEnc);
60 uint8_t version = addressSpace.get8(p++); in decodeEHHdr()
64 uint8_t eh_frame_ptr_enc = addressSpace.get8(p++); in decodeEHHdr()
65 uint8_t fde_count_enc = addressSpace.get8(p++); in decodeEHHdr()
78 uint8_t tableEnc, typename CFI_Parser<A>::FDE_Info *fdeInfo, in decodeTableEntry()
138 size_t EHHeaderParser<A>::getTableEntrySize(uint8_t tableEnc) { in getTableEntrySize()
DAddressSpace.hpp107 uint8_t get8(pint_t addr) { in get8()
108 uint8_t val; in get8()
141 pint_t getEncodedP(pint_t &addr, pint_t end, uint8_t encoding,
161 const uint8_t *p = (uint8_t *)addr; in getULEB128()
162 const uint8_t *pend = (uint8_t *)end; in getULEB128()
186 const uint8_t *p = (uint8_t *)addr; in getSLEB128()
187 const uint8_t *pend = (uint8_t *)end; in getSLEB128()
190 uint8_t byte; in getSLEB128()
206 LocalAddressSpace::getEncodedP(pint_t &addr, pint_t end, uint8_t encoding, in getEncodedP()
209 const uint8_t *p = (uint8_t *)addr; in getEncodedP()
[all …]
DUnwind-EHABI.cpp35 uint8_t getByte(const uint32_t* data, size_t offset) { in getByte()
36 const uint8_t* byteData = reinterpret_cast<const uint8_t*>(data); in getByte()
195 uint32_t RegisterMask(uint8_t start, uint8_t count_minus_one) { in RegisterMask()
201 uint32_t RegisterRange(uint8_t start, uint8_t count_minus_one) { in RegisterRange()
249 uint8_t byte = getByte(data, offset++); in _Unwind_VRS_Interpret()
274 uint8_t reg = byte & 0x0f; in _Unwind_VRS_Interpret()
299 uint8_t registers = getByte(data, offset++); in _Unwind_VRS_Interpret()
327 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
329 RegisterRange(static_cast<uint8_t>(v >> 4), in _Unwind_VRS_Interpret()
357 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
[all …]
DDwarfParser.hpp44 uint8_t pointerEncoding;
45 uint8_t lsdaEncoding;
46 uint8_t personalityEncoding;
47 uint8_t personalityOffsetInCIE;
53 uint8_t returnAddressRegister;
286 uint8_t version = addressSpace.get8(p); in parseCIE()
302 cieInfo->returnAddressRegister = (uint8_t)raReg; in parseCIE()
316 cieInfo->personalityOffsetInCIE = (uint8_t)(p - cie); in parseCIE()
383 uint8_t opcode = addressSpace.get8(p); in parseInstructions()
384 uint8_t operand; in parseInstructions()
DRegisters.hpp549 memcpy(&_registers, static_cast<const uint8_t *>(registers), in Registers_ppc()
554 static_cast<const uint8_t *>(registers) + sizeof(ppc_thread_state_t), in Registers_ppc()
559 static_cast<const uint8_t *>(registers) + sizeof(ppc_thread_state_t) + in Registers_ppc()
1081 static_cast<const uint8_t *>(registers) + sizeof(GPRs), in Registers_arm64()
DUnwindLevel1.c423 if (*((uint8_t *)result) != 0xFF) in _Unwind_GetLanguageSpecificData()
/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/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/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()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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/tests/device/asan-smoke/jni/
Dasan_oob_test.cc19 typedef uint8_t U1;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcinttypes.pass.cpp884 std::uint8_t i1 = 0; in main()

12