Home
last modified time | relevance | path

Searched refs:type_index (Results 1 – 5 of 5) sorted by relevance

/tools/dexter/slicer/
Ddebuginfo_encoder.cc77 auto type_index = dbg_annotation->CastOperand<Type>(2)->index; in Visit() local
81 dbginfo_.PushULeb128(type_index + 1); in Visit()
87 auto type_index = dbg_annotation->CastOperand<Type>(2)->index; in Visit() local
92 dbginfo_.PushULeb128(type_index + 1); in Visit()
Dreader.cc605 dex::u4 type_index = dex::ReadULeb128(pptr); in ParseAnnotation() local
608 ir_annotation->type = GetType(type_index); in ParseAnnotation()
696 dex::u4 type_index = dex::ReadULeb128(&ptr) - 1; in ExtractDebugInfo() local
697 if (type_index != dex::kNoIndex) { in ExtractDebugInfo()
698 GetType(type_index); in ExtractDebugInfo()
711 dex::u4 type_index = dex::ReadULeb128(&ptr) - 1; in ExtractDebugInfo() local
712 if (type_index != dex::kNoIndex) { in ExtractDebugInfo()
713 GetType(type_index); in ExtractDebugInfo()
788 dex::u4 type_index = dex::ReadULeb128(&ptr); in ExtractCode() local
789 GetType(type_index); in ExtractCode()
Dcode_ir.cc78 dex::u4 type_index = dex::ReadULeb128(&ptr); in DisassembleTryBlocks() local
79 handler.ir_type = dex_ir->types_map[type_index]; in DisassembleTryBlocks()
172 dex::u4 type_index = dex::ReadULeb128(&ptr) - 1; in DisassembleDebugInfo() local
173 annotation->operands.push_back(GetType(type_index)); in DisassembleDebugInfo()
187 dex::u4 type_index = dex::ReadULeb128(&ptr) - 1; in DisassembleDebugInfo() local
188 annotation->operands.push_back(GetType(type_index)); in DisassembleDebugInfo()
Dwriter.cc821 dex::u4 type_index = dex::ReadULeb128(&src) - 1; in WriteDebugInfo() local
822 data.PushULeb128(MapTypeIndex(type_index) + 1); in WriteDebugInfo()
832 dex::u4 type_index = dex::ReadULeb128(&src) - 1; in WriteDebugInfo() local
833 data.PushULeb128(MapTypeIndex(type_index) + 1); in WriteDebugInfo()
987 dex::u4 type_index = dex::ReadULeb128(&ptr); in WriteTryBlocks() local
988 handlers_list.PushULeb128(MapTypeIndex(type_index)); in WriteTryBlocks()
/tools/security/fuzzing/orphans/libffi/
Dfuzz_ffi.cc90 size_t type_index = dataProvider->ConsumeIntegralInRange<size_t>(0, in getRandomType() local
93 if (type_index == NUM_TYPES) { in getRandomType()
100 type = ffi_types[type_index]; in getRandomType()