Lines Matching refs:HVecUnaryOperation
198 class HVecUnaryOperation : public HVecOperation {
200 HVecUnaryOperation(InstructionKind kind, in HVecUnaryOperation() function
318 class HVecReplicateScalar final : public HVecUnaryOperation {
325 : HVecUnaryOperation( in HVecReplicateScalar()
344 class HVecExtractScalar final : public HVecUnaryOperation {
352 : HVecUnaryOperation( in HVecExtractScalar()
375 class HVecReduce final : public HVecUnaryOperation {
389 : HVecUnaryOperation(kVecReduce, allocator, input, packed_type, vector_length, dex_pc), in HVecReduce()
415 class HVecCnv final : public HVecUnaryOperation {
422 : HVecUnaryOperation(kVecCnv, allocator, input, packed_type, vector_length, dex_pc) { in HVecCnv()
440 class HVecNeg final : public HVecUnaryOperation {
447 : HVecUnaryOperation(kVecNeg, allocator, input, packed_type, vector_length, dex_pc) { in HVecNeg()
462 class HVecAbs final : public HVecUnaryOperation {
469 : HVecUnaryOperation(kVecAbs, allocator, input, packed_type, vector_length, dex_pc) { in HVecAbs()
484 class HVecNot final : public HVecUnaryOperation {
491 : HVecUnaryOperation(kVecNot, allocator, input, packed_type, vector_length, dex_pc) { in HVecNot()