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()  local59   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()  function96   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 | 70     const dex::u1* ptr =  in DisassembleTryBlocks()  local144   const dex::u1* ptr = ir_debug_info->data.ptr<dex::u1>();  in DisassembleDebugInfo()  local
 241   const dex::u2* ptr = begin;  in DisassembleBytecode()  local
 370                                const dex::u2* ptr) {  in FixupPackedSwitch()
 396                                const dex::u2* ptr) {  in FixupSparseSwitch()
 413 ArrayData* CodeIr::DecodeArrayData(const dex::u2* ptr, dex::u4 offset) {  in DecodeArrayData()
 450 Bytecode* CodeIr::DecodeBytecode(const dex::u2* ptr, dex::u4 offset) {  in DecodeBytecode()
 
 | 
| D | reader.cc | 298     const dex::u1* ptr = reinterpret_cast<const dex::u1*>(dex_annotations + 1);  in ExtractAnnotations()  local322     const dex::u1* ptr = dexAnnotationItem->annotation;  in ExtractAnnotationItem()  local
 602     auto ptr = dataPtr<dex::u1>(offset);  in ExtractEncodedArray()  local
 614   const dex::u1* ptr = dataPtr<dex::u1>(offset);  in ExtractDebugInfo()  local
 739     auto ptr = handlers_list;  in ExtractCode()  local
 880   const dex::u2* ptr = code.begin();  in ParseInstructions()  local
 
 | 
| D | dex_bytecode.cc | 141 static u4 FetchU4(const u2* ptr) { return ptr[0] | (u4(ptr[1]) << 16); }  in FetchU4()144 static u8 FetchU8(const u2* ptr) {  in FetchU8()
 
 | 
| 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
 928   auto ptr = original_list;  in WriteTryBlocks()  local
 
 | 
| D | bytecode_encoder.cc | 581   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
 |