Home
last modified time | relevance | path

Searched defs:offset_ptr (Results 1 – 25 of 49) sorted by relevance

12

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A DDataExtractor.cpp40 T DataExtractor::getU(uint64_t *offset_ptr, Error *Err) const { in getU()
59 T *DataExtractor::getUs(uint64_t *offset_ptr, T *dst, uint32_t count, in getUs()
79 uint8_t DataExtractor::getU8(uint64_t *offset_ptr, llvm::Error *Err) const { in getU8()
83 uint8_t *DataExtractor::getU8(uint64_t *offset_ptr, uint8_t *dst, in getU8()
92 uint16_t DataExtractor::getU16(uint64_t *offset_ptr, llvm::Error *Err) const { in getU16()
96 uint16_t *DataExtractor::getU16(uint64_t *offset_ptr, uint16_t *dst, in getU16()
107 uint32_t DataExtractor::getU32(uint64_t *offset_ptr, llvm::Error *Err) const { in getU32()
111 uint32_t *DataExtractor::getU32(uint64_t *offset_ptr, uint32_t *dst, in getU32()
116 uint64_t DataExtractor::getU64(uint64_t *offset_ptr, llvm::Error *Err) const { in getU64()
120 uint64_t *DataExtractor::getU64(uint64_t *offset_ptr, uint64_t *dst, in getU64()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DDataExtractor.cpp27 static T getU(uint64_t *offset_ptr, const DataExtractor *de, in getU()
49 static T *getUs(uint64_t *offset_ptr, T *dst, uint32_t count, in getUs()
72 uint8_t DataExtractor::getU8(uint64_t *offset_ptr, llvm::Error *Err) const { in getU8()
77 DataExtractor::getU8(uint64_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8()
87 uint16_t DataExtractor::getU16(uint64_t *offset_ptr, llvm::Error *Err) const { in getU16()
91 uint16_t *DataExtractor::getU16(uint64_t *offset_ptr, uint16_t *dst, in getU16()
104 uint32_t DataExtractor::getU32(uint64_t *offset_ptr, llvm::Error *Err) const { in getU32()
108 uint32_t *DataExtractor::getU32(uint64_t *offset_ptr, uint32_t *dst, in getU32()
114 uint64_t DataExtractor::getU64(uint64_t *offset_ptr, llvm::Error *Err) const { in getU64()
118 uint64_t *DataExtractor::getU64(uint64_t *offset_ptr, uint64_t *dst, in getU64()
[all …]
/aosp_15_r20/external/llvm/lib/Support/
H A DDataExtractor.cpp17 static T getU(uint32_t *offset_ptr, const DataExtractor *de, in getU()
33 static T *getUs(uint32_t *offset_ptr, T *dst, uint32_t count, in getUs()
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8()
65 uint16_t *DataExtractor::getU16(uint32_t *offset_ptr, uint16_t *dst, in getU16()
75 uint32_t *DataExtractor::getU32(uint32_t *offset_ptr, uint32_t *dst, in getU32()
85 uint64_t *DataExtractor::getU64(uint32_t *offset_ptr, uint64_t *dst, in getU64()
92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const { in getUnsigned()
107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const { in getSigned()
/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/
H A Dreservation_offset_table.h177 uint16_t* offset_ptr) { in ComputeReservationStart()
200 uint16_t* offset_ptr = ReservationOffsetPointer(address); in GetDirectMapReservationStart() local
248 uint16_t* offset_ptr = ReservationOffsetPointer(pool, offset_in_pool); in GetDirectMapReservationStart() local
264 uint16_t* offset_ptr = ReservationOffsetPointer(address); in IsReservationStart() local
272 uint16_t* offset_ptr = ReservationOffsetPointer(address); in IsManagedByNormalBuckets() local
278 uint16_t* offset_ptr = ReservationOffsetPointer(address); in IsManagedByDirectMap() local
286 uint16_t* offset_ptr = ReservationOffsetPointer(address); in IsManagedByNormalBucketsOrDirectMap() local
H A Dpartition_page.cc363 auto* offset_ptr = ReservationOffsetPointer(reservation_start); in UnmapNow() local
/aosp_15_r20/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp134 bool DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr, in extractValue()
256 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, in skipValue()
263 uint32_t *offset_ptr, const DWARFUnit *cu) { in skipValue()
268 uint32_t *offset_ptr, uint16_t Version, in skipValue()
H A DDWARFUnit.cpp77 bool DWARFUnit::extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) { in extractImpl()
105 bool DWARFUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { in extract()
H A DDWARFDebugLine.cpp68 uint32_t *offset_ptr) { in parse()
248 uint32_t *offset_ptr) { in parse()
H A DDWARFTypeUnit.cpp17 uint32_t *offset_ptr) { in extractImpl()
H A DDWARFDebugArangeSet.cpp24 DWARFDebugArangeSet::extract(DataExtractor data, uint32_t *offset_ptr) { in extract()
H A DDWARFDebugRangeList.cpp22 bool DWARFDebugRangeList::extract(DataExtractor data, uint32_t *offset_ptr) { in extract()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Utility/
DDataExtractor.h337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData()
612 uint8_t GetU8_unchecked(lldb::offset_t *offset_ptr) const { in GetU8_unchecked()
993 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Utility/
DDataExtractor.h337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData()
612 uint8_t GetU8_unchecked(lldb::offset_t *offset_ptr) const { in GetU8_unchecked()
993 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Utility/
DDataExtractor.h337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData()
612 uint8_t GetU8_unchecked(lldb::offset_t *offset_ptr) const { in GetU8_unchecked()
993 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Utility/
DDataExtractor.h337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData()
612 uint8_t GetU8_unchecked(lldb::offset_t *offset_ptr) const { in GetU8_unchecked()
993 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get()
/aosp_15_r20/trusty/user/base/lib/hwaes/srv/
Dhwaes_server.c176 size_t* offset_ptr, in hwaes_set_arg_out()
252 size_t* offset_ptr, in hwaes_set_arg_in()
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_gather.c607 LLVMValueRef offset_ptr, in lp_build_masked_gather()
636 LLVMValueRef offset_ptr, in lp_build_masked_scatter()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.cpp33 DWARFDebugArangeSet::extract(DataExtractor data, uint64_t *offset_ptr) { in extract()
H A DDWARFDebugRangeList.cpp26 uint64_t *offset_ptr) { in extract()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRangeList.cpp32 uint64_t *offset_ptr) { in extract()
H A DDWARFDebugArangeSet.cpp39 uint64_t *offset_ptr, in extract()
/aosp_15_r20/external/llvm/include/llvm/Support/
H A DDataExtractor.h129 uint64_t getAddress(uint32_t *offset_ptr) const { in getAddress()
/aosp_15_r20/external/vboot_reference/firmware/lib20/
H A Dapi_kernel.c30 uint32_t *offset_ptr, uint32_t *size_ptr) in vb2api_get_kernel_size()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DDataExtractor.h226 uint64_t getAddress(uint64_t *offset_ptr) const { in getAddress()
/aosp_15_r20/external/llvm-libc/test/src/string/memory_utils/
H A Dmemory_check_utils.h56 char *offset_ptr = nullptr; member

12