Home
last modified time | relevance | path

Searched refs:offset_ptr (Results 1 - 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/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() argument
34 uint64_t offset = *offset_ptr; in getU()
44 *offset_ptr += sizeof(val); in getU()
49 static T *getUs(uint64_t *offset_ptr, T *dst, uint32_t count, in getUs() argument
56 uint64_t offset = *offset_ptr; in getUs()
64 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data, Err); in getUs()
66 *offset_ptr = offset; in getUs()
72 uint8_t DataExtractor::getU8(uint64_t *offset_ptr, llvm::Error *Err) const { in getU8() argument
73 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data(), Err); in getU8()
77 DataExtractor::getU8(uint64_t *offset_ptr, uint8_ argument
87 getU16(uint64_t *offset_ptr, llvm::Error *Err) const getU16() argument
91 getU16(uint64_t *offset_ptr, uint16_t *dst, uint32_t count) const getU16() argument
104 getU32(uint64_t *offset_ptr, llvm::Error *Err) const getU32() argument
108 getU32(uint64_t *offset_ptr, uint32_t *dst, uint32_t count) const getU32() argument
114 getU64(uint64_t *offset_ptr, llvm::Error *Err) const getU64() argument
118 getU64(uint64_t *offset_ptr, uint64_t *dst, uint32_t count) const getU64() argument
124 getUnsigned(uint64_t *offset_ptr, uint32_t byte_size, llvm::Error *Err) const getUnsigned() argument
140 getSigned(uint64_t *offset_ptr, uint32_t byte_size) const getSigned() argument
174 getULEB128(uint64_t *offset_ptr, llvm::Error *Err) const getULEB128() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.cpp33 DWARFDebugArangeSet::extract(DataExtractor data, uint64_t *offset_ptr) { in extract() argument
34 if (data.isValidOffset(*offset_ptr)) { in extract()
36 Offset = *offset_ptr; in extract()
52 HeaderData.Length = data.getU32(offset_ptr); in extract()
53 HeaderData.Version = data.getU16(offset_ptr); in extract()
54 HeaderData.CuOffset = data.getU32(offset_ptr); in extract()
55 HeaderData.AddrSize = data.getU8(offset_ptr); in extract()
56 HeaderData.SegSize = data.getU8(offset_ptr); in extract()
69 const uint32_t header_size = *offset_ptr - Offset; in extract()
75 *offset_ptr in extract()
[all...]
H A DDWARFDebugRangeList.cpp26 uint64_t *offset_ptr) { in extract()
28 if (!data.isValidOffset(*offset_ptr)) in extract()
30 "invalid range list offset 0x%" PRIx64, *offset_ptr); in extract()
36 Offset = *offset_ptr; in extract()
41 uint64_t prev_offset = *offset_ptr; in extract()
42 Entry.StartAddress = data.getRelocatedAddress(offset_ptr); in extract()
44 data.getRelocatedAddress(offset_ptr, &Entry.SectionIndex); in extract()
47 if (*offset_ptr != prev_offset + 2 * AddressSize) { in extract()
25 extract(const DWARFDataExtractor &data, uint64_t *offset_ptr) extract() argument
H A DDWARFUnit.cpp257 uint64_t *offset_ptr, in extract()
261 Offset = *offset_ptr; in extract()
265 IndexEntry = Index->getFromOffset(*offset_ptr); in extract()
266 Length = debug_info.getRelocatedValue(4, offset_ptr, nullptr, &Err); in extract()
269 Length = debug_info.getU64(offset_ptr, &Err); in extract()
272 FormParams.Version = debug_info.getU16(offset_ptr, &Err); in extract()
274 UnitType = debug_info.getU8(offset_ptr, &Err); in extract()
275 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
277 FormParams.getDwarfOffsetByteSize(), offset_ptr, nullptr, &Err); in extract()
280 FormParams.getDwarfOffsetByteSize(), offset_ptr, nullpt in extract()
255 extract(DWARFContext &Context, const DWARFDataExtractor &debug_info, uint64_t *offset_ptr, DWARFSectionKind SectionKind, const DWARFUnitIndex *Index, const DWARFUnitIndex::Entry *Entry) extract() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DDataExtractor.h100 /// Extract a C string from \a *offset_ptr.
103 /// pointed to by \a offset_ptr. A variable length NULL terminated C
104 /// string will be extracted and the \a offset_ptr will be
108 /// @param[in,out] offset_ptr
117 /// pointed to by \a offset_ptr is out of bounds, or if the
120 const char *getCStr(uint64_t *offset_ptr) const;
122 /// Extract a C string from \a *offset_ptr.
125 /// pointed to by \a offset_ptr. A variable length NULL terminated C
126 /// string will be extracted and the \a offset_ptr will be
130 /// \param[in,out] offset_ptr
[all...]
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dbackward_references_enc.h155 int* const offset_ptr, in VP8LHashChainFindCopy()
157 *offset_ptr = VP8LHashChainFindOffset(p, base_position); in VP8LHashChainFindCopy()
153 VP8LHashChainFindCopy(const VP8LHashChain* const p, int base_position, int* const offset_ptr, int* const length_ptr) VP8LHashChainFindCopy() argument
/third_party/node/deps/v8/src/profiler/
H A Dtick-sample.cc64 for (int* offset_ptr = pattern->offsets; *offset_ptr != -1; ++offset_ptr) { in IsNoFrameRegion()
65 int offset = *offset_ptr; in IsNoFrameRegion()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.h60 bool extract(DataExtractor data, uint64_t *offset_ptr);
H A DDWARFDebugRangeList.h71 Error extract(const DWARFDataExtractor &data, uint64_t *offset_ptr);
H A DDWARFUnit.h72 /// Parse a unit header from \p debug_info starting at \p offset_ptr.
74 uint64_t *offset_ptr, DWARFSectionKind Kind = DW_SECT_INFO,
/third_party/node/src/
H A Dnode_wasi.cc943 uint32_t offset_ptr; in FdTell() local
948 CHECK_TO_TYPE_OR_RETURN(args, args[1], Uint32, offset_ptr); in FdTell()
950 Debug(wasi, "fd_tell(%d, %d)\n", fd, offset_ptr); in FdTell()
954 offset_ptr, in FdTell()
960 uvwasi_serdes_write_filesize_t(memory, offset_ptr, offset); in FdTell()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeARM_32.c2738 sljit_u8 *offset_ptr = offsets; in softfloat_call_with_args() local
2752 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2757 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2762 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2795 offset = *(--offset_ptr); in softfloat_call_with_args()
2811 offset = *(--offset_ptr); in softfloat_call_with_args()
2825 offset = *(--offset_ptr); in softfloat_call_with_args()
H A DsljitNativeARM_T2_32.c2315 sljit_u8 *offset_ptr = offsets; in softfloat_call_with_args() local
2329 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2334 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2339 *offset_ptr++ = (sljit_u8)offset; in softfloat_call_with_args()
2374 offset = *(--offset_ptr); in softfloat_call_with_args()
2390 offset = *(--offset_ptr); in softfloat_call_with_args()
2404 offset = *(--offset_ptr); in softfloat_call_with_args()
/third_party/mesa3d/src/amd/llvm/
H A Dac_nir_to_llvm.c4152 LLVMValueRef offset_ptr = LLVMBuildGEP2(ctx->ac.builder, comp_type, ptr, &offset, 1, ""); in visit_intrinsic() local
4154 offset_ptr = LLVMBuildBitCast(ctx->ac.builder, offset_ptr, in visit_intrinsic()
4157 LLVMBuildStore(ctx->ac.builder, offset_src, offset_ptr); in visit_intrinsic()
H A Dac_llvm_build.c1104 LLVMValueRef offset_ptr = LLVMBuildGEP(ctx->builder, ptr, &index, 1, ""); in ac_build_pointer_add() local
1105 return LLVMBuildPointerCast(ctx->builder, offset_ptr, LLVMTypeOf(ptr), ""); in ac_build_pointer_add()

Completed in 32 milliseconds