HomeSort by relevance Sort by last modified time
    Searched refs:code_units (Results 1 - 3 of 3) sorted by null

  /art/compiler/optimizing/
builder.cc 88 const uint32_t code_units = code_item_accessor_.InsnsSizeInCodeUnits(); local
89 if (compiler_options.IsHugeMethod(code_units)) {
92 << ": " << code_units << " code units";
98 if (compiler_options.IsLargeMethod(code_units) && (number_of_branches == 0)) {
101 << ": " << code_units << " code units";
  /art/libdexfile/dex/
dex_instruction.cc 142 std::string Instruction::DumpHex(size_t code_units) const {
144 if (inst_length > code_units) {
145 inst_length = code_units;
152 for (size_t i = inst_length; i < code_units; i++) {
dex_instruction.h 633 // Dump code_units worth of this instruction, padding to code_units for shorter instructions
634 std::string DumpHex(size_t code_units) const;
636 // Little-endian dump code_units worth of this instruction, padding to code_units for

Completed in 75 milliseconds