Searched refs:Mul (Results 1 – 9 of 9) sorted by relevance
/frameworks/libs/binary_translation/base/ |
D | bit_util_test.cc | 109 static_assert(Mul(SatInt8{127}, SatInt8{1}) == std::tuple{SatInt8{127}, false}); 110 static_assert(Mul(SatInt8{-128}, SatInt8{1}) == std::tuple{SatInt8{-128}, false}); 111 static_assert(Mul(SatInt8{1}, SatInt8{-128}) == std::tuple{SatInt8{-128}, false}); 112 static_assert(Mul(SatInt8{1}, SatInt8{127}) == std::tuple{SatInt8{127}, false}); 113 static_assert(Mul(SatInt8{-128}, SatInt8{-128}) == std::tuple{SatInt8{127}, true}); 114 static_assert(Mul(SatInt8{-128}, SatInt8{127}) == std::tuple{SatInt8{-128}, true}); 115 static_assert(Mul(SatInt8{127}, SatInt8{-128}) == std::tuple{SatInt8{-128}, true}); 116 static_assert(Mul(SatInt8{127}, SatInt8{127}) == std::tuple{SatInt8{127}, true}); 126 static_assert(Mul(SatUInt8{255}, SatUInt8{1}) == std::tuple{SatUInt8{255}, false}); 127 static_assert(Mul(SatUInt8{255}, SatUInt8{255}) == std::tuple{SatUInt8{255}, true});
|
/frameworks/libs/binary_translation/intrinsics/common_to_x86/include/berberis/intrinsics/ |
D | macro_assembler-inl.h | 190 DEFINE_INT_INSTRUCTION(Mul, Imul, , kIntTypeWLQ, (Operand dest, Register src), (dest, src)) 191 DEFINE_INT_INSTRUCTION(Mul, Imul, , kIntTypeWLQ, (Operand dest, Operand src), (dest, src)) 192 DEFINE_INT_INSTRUCTION(Mul, 198 DEFINE_INT_INSTRUCTION(Mul, 215 DEFINE_ARITH_INSTRUCTION(Mul, Imul, kSignedIntType) 216 DEFINE_ARITH_INSTRUCTION(Mul, Mul, kUnsignedIntType) 593 DEFINE_XMM_FLOAT_INSTRUCTIONS_GROUP(Mul, Vmul)
|
/frameworks/base/libs/hwui/ |
D | SafeMath.h | 68 static size_t Mul(size_t x, size_t y) { in Mul() function
|
/frameworks/libs/binary_translation/base/include/berberis/base/ |
D | bit_util.h | 513 [[nodiscard]] friend constexpr std::tuple<Saturating, bool> Mul(Saturating lhs, Saturating rhs) { in Mul() function 530 return std::get<0>(Mul(lhs, rhs));
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 524 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul; in GetDecodedBinaryOpcode() 1787 Opc == Instruction::Mul || in ParseConstants() 2677 Opc == Instruction::Mul || in ParseFunctionBody()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 761 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul; in GetDecodedBinaryOpcode() 2080 Opc == Instruction::Mul || in ParseConstants() 2938 Opc == Instruction::Mul || in ParseFunctionBody()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 103 case Instruction::Mul: in GetEncodedBinaryOpcode()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 88 case Instruction::Mul: in GetEncodedBinaryOpcode()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 88 case Instruction::Mul: in GetEncodedBinaryOpcode()
|