Home
last modified time | relevance | path

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

/tools/dexter/slicer/export/slicer/
Ddex_bytecode.h366 u8 vB_wide; // 64bit version of the B field (for kFmt51l)
Ddex_format.h33 typedef uint64_t u8; typedef
/tools/dexter/slicer/
Ddex_bytecode.cc746 static u8 FetchU8(const u2* ptr) { in FetchU8()
747 return FetchU4(ptr) | (u8(FetchU4(ptr + 2)) << 32); in FetchU8()
Dcode_ir.cc572 instr->operands.push_back(Alloc<Const64>(dex::u8(dex_instr.vB) << 48)); in DecodeBytecode()
Dbytecode_encoder.cc397 dex::u8 B = bytecode->CastOperand<Const64>(1)->u.u8_value; in Visit()