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

  /external/v8/src/interpreter/
bytecode-decoder.h 21 static Register DecodeRegisterOperand(Address operand_start,
26 static RegisterList DecodeRegisterListOperand(Address operand_start,
32 static int32_t DecodeSignedOperand(Address operand_start,
37 static uint32_t DecodeUnsignedOperand(Address operand_start,
bytecode-decoder.cc 18 Register BytecodeDecoder::DecodeRegisterOperand(Address operand_start,
23 DecodeSignedOperand(operand_start, operand_type, operand_scale);
29 Address operand_start, uint32_t count, OperandType operand_type,
32 DecodeRegisterOperand(operand_start, operand_type, operand_scale);
37 int32_t BytecodeDecoder::DecodeSignedOperand(Address operand_start,
43 return *reinterpret_cast<const int8_t*>(operand_start);
45 return static_cast<int16_t>(ReadUnalignedUInt16(operand_start));
47 return static_cast<int32_t>(ReadUnalignedUInt32(operand_start));
55 uint32_t BytecodeDecoder::DecodeUnsignedOperand(Address operand_start,
61 return *reinterpret_cast<const uint8_t*>(operand_start);
142 Address operand_start = reinterpret_cast<Address>( local
    [all...]
bytecode-array-accessor.cc 84 Address operand_start = local
89 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type,
100 Address operand_start = local
105 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type,
150 Address operand_start = local
155 return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type,
  /external/tensorflow/tensorflow/compiler/xla/service/
algebraic_simplifier.cc     [all...]

Completed in 2797 milliseconds