Searched defs:ptr (Results 1 – 11 of 11) sorted by relevance
/tools/dexter/slicer/export/slicer/ |
D | dex_leb128.h | 29 const u1* ptr = *pptr; in ReadULeb128() local 59 const u1* ptr = *pptr; in ReadSLeb128() local 96 inline u1* WriteULeb128(u1* ptr, u4 data) { in WriteULeb128() 112 inline u1* WriteSLeb128(u1* ptr, s4 value) { in WriteSLeb128()
|
D | memview.h | 31 MemView(const void* ptr, size_t size) : ptr_(ptr), size_(size) { in MemView() 38 const T* ptr() const { in ptr() function
|
D | arrayview.h | 34 ArrayView(T* ptr, size_t count) : begin_(ptr), end_(ptr + count) {} in ArrayView()
|
D | buffer.h | 75 T* ptr(size_t offset) { in ptr() function 96 size_t Push(const void* ptr, size_t size) { in Push()
|
D | reader.h | 106 const T* ptr(int offset) const { in ptr() function
|
/tools/dexter/slicer/ |
D | code_ir.cc | 71 const dex::u1* ptr = in DissasembleTryBlocks() local 145 const dex::u1* ptr = ir_debug_info->data.ptr<dex::u1>(); in DissasembleDebugInfo() local 242 const dex::u2* ptr = begin; in DissasembleBytecode() local 371 const dex::u2* ptr) { in FixupPackedSwitch() 397 const dex::u2* ptr) { in FixupSparseSwitch() 414 ArrayData* CodeIr::DecodeArrayData(const dex::u2* ptr, dex::u4 offset) { in DecodeArrayData() 451 Bytecode* CodeIr::DecodeBytecode(const dex::u2* ptr, dex::u4 offset) { in DecodeBytecode()
|
D | dex_bytecode.cc | 139 static u4 FetchU4(const u2* ptr) { return ptr[0] | (u4(ptr[1]) << 16); } in FetchU4() 142 static u8 FetchU8(const u2* ptr) { in FetchU8()
|
D | reader.cc | 297 const dex::u1* ptr = reinterpret_cast<const dex::u1*>(dex_annotations + 1); in ExtractAnnotations() local 321 const dex::u1* ptr = dexAnnotationItem->annotation; in ExtractAnnotationItem() local 601 auto ptr = dataPtr<dex::u1>(offset); in ExtractEncodedArray() local 613 const dex::u1* ptr = dataPtr<dex::u1>(offset); in ExtractDebugInfo() local 738 auto ptr = handlers_list; in ExtractCode() local 879 const dex::u2* ptr = code.begin(); in ParseInstructions() local
|
D | writer.cc | 235 static u4 ReadU4(const u2* ptr) { return ptr[0] | (u4(ptr[1]) << 16); } in ReadU4() 237 static void WriteU4(u2* ptr, u4 val) { in WriteU4() 826 dex::u2* ptr = dex_->code.ptr<dex::u2>(offset); in WriteInstructions() local 909 auto ptr = original_list; in WriteTryBlocks() local
|
D | bytecode_encoder.cc | 530 dex::u2* ptr = begin; in FixupSwitchOffsets() local
|
/tools/test/graphicsbenchmark/apps/alloc_stress_app/src/cpp/ |
D | alloc_stress_activity.cpp | 41 char *ptr = (char *) malloc(s); in Java_com_android_game_qualification_allocstress_MainActivity_cmain() local
|