Searched refs:operand_start (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-decoder.cc | 18 Register BytecodeDecoder::DecodeRegisterOperand(Address operand_start, in DecodeRegisterOperand() argument 23 DecodeSignedOperand(operand_start, operand_type, operand_scale); in DecodeRegisterOperand() 29 Address operand_start, uint32_t count, OperandType operand_type, in DecodeRegisterListOperand() argument 32 DecodeRegisterOperand(operand_start, operand_type, operand_scale); in DecodeRegisterListOperand() 37 int32_t BytecodeDecoder::DecodeSignedOperand(Address operand_start, in DecodeSignedOperand() argument 43 return *reinterpret_cast<const int8_t*>(operand_start); in DecodeSignedOperand() 45 return static_cast<int16_t>(ReadUnalignedUInt16(operand_start)); in DecodeSignedOperand() 47 return static_cast<int32_t>(ReadUnalignedUInt32(operand_start)); in DecodeSignedOperand() 55 uint32_t BytecodeDecoder::DecodeUnsignedOperand(Address operand_start, in DecodeUnsignedOperand() argument 61 return *reinterpret_cast<const uint8_t*>(operand_start); in DecodeUnsignedOperand() [all …]
|
D | 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,
|
D | bytecode-array-accessor.cc | 84 Address operand_start = in GetUnsignedOperand() local 89 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type, in GetUnsignedOperand() 100 Address operand_start = in GetSignedOperand() local 105 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type, in GetSignedOperand() 150 Address operand_start = in GetRegisterOperand() local 155 return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type, in GetRegisterOperand()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | algebraic_simplifier.cc | 2734 int64 operand_start = 0; in TrySimplifyScalarSlice() local 2740 int64 next_operand_start = operand_start + operand->shape().dimensions(0); in TrySimplifyScalarSlice() 2744 operand_start = next_operand_start; in TrySimplifyScalarSlice() 2757 {slice->slice_starts(0) - operand_start}, in TrySimplifyScalarSlice() 2758 {slice->slice_starts(0) - operand_start + 1}, in TrySimplifyScalarSlice()
|