Lines Matching refs:OperandScale
24 OperandScale operand_scale) { in BytecodeToIndex()
28 case OperandScale::kSingle: return index; in BytecodeToIndex()
29 case OperandScale::kDouble: return index + Bytecodes::kBytecodeCount; in BytecodeToIndex()
30 case OperandScale::kQuadruple: return index + 2 * Bytecodes::kBytecodeCount; in BytecodeToIndex()
36 std::pair<interpreter::Bytecode, interpreter::OperandScale>
43 case 0: return {bytecode, OperandScale::kSingle}; in BytecodeFromIndex()
44 case 1: return {bytecode, OperandScale::kDouble}; in BytecodeFromIndex()
45 case 2: return {bytecode, OperandScale::kQuadruple}; in BytecodeFromIndex()
52 std::function<void(Bytecode, OperandScale)> f) { in ForEachBytecode()
53 static const OperandScale kOperandScales[] = { in ForEachBytecode()
54 #define VALUE(Name, _) OperandScale::k##Name, in ForEachBytecode()
59 for (OperandScale operand_scale : kOperandScales) { in ForEachBytecode()