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

  /external/v8/src/interpreter/
bytecode-decoder.h 21 static Register DecodeRegisterOperand(const uint8_t* operand_start,
26 static RegisterList DecodeRegisterListOperand(const uint8_t* operand_start,
32 static int32_t DecodeSignedOperand(const uint8_t* operand_start,
37 static uint32_t DecodeUnsignedOperand(const uint8_t* operand_start,
bytecode-decoder.cc 16 Register BytecodeDecoder::DecodeRegisterOperand(const uint8_t* operand_start,
21 DecodeSignedOperand(operand_start, operand_type, operand_scale);
27 const uint8_t* operand_start, uint32_t count, OperandType operand_type,
30 DecodeRegisterOperand(operand_start, operand_type, operand_scale);
35 int32_t BytecodeDecoder::DecodeSignedOperand(const uint8_t* operand_start,
41 return static_cast<int8_t>(*operand_start);
43 return static_cast<int16_t>(ReadUnalignedUInt16(operand_start));
45 return static_cast<int32_t>(ReadUnalignedUInt32(operand_start));
53 uint32_t BytecodeDecoder::DecodeUnsignedOperand(const uint8_t* operand_start,
59 return *operand_start;
127 const uint8_t* operand_start = local
    [all...]
bytecode-array-accessor.cc 69 const uint8_t* operand_start = local
74 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type,
85 const uint8_t* operand_start = local
90 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type,
130 const uint8_t* operand_start = local
135 return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type,

Completed in 512 milliseconds