/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CachePruning.cpp | 110 uint64_t Mult = 1; in parseCachePruningPolicy() local 113 Mult = 1024; in parseCachePruningPolicy() 117 Mult = 1024 * 1024; in parseCachePruningPolicy() 121 Mult = 1024 * 1024 * 1024; in parseCachePruningPolicy() 129 Policy.MaxSizeBytes = Size * Mult; in parseCachePruningPolicy()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | alpha_processing.c | 29 static uint32_t Mult(uint8_t x, uint32_t mult) { in Mult() function 151 out |= Mult(argb >> 0, scale) << 0; in WebPMultARGBRow_C() 152 out |= Mult(argb >> 8, scale) << 8; in WebPMultARGBRow_C() 153 out |= Mult(argb >> 16, scale) << 16; in WebPMultARGBRow_C() 171 ptr[x] = Mult(ptr[x], scale); in WebPMultRow_C()
|
/third_party/python/Lib/test/ |
H A D | test_fstring.py | 108 self.assertEqual(type(binop.op), ast.Mult) 148 self.assertEqual(type(binop1.op), ast.Mult) 191 self.assertEqual(type(binop.op), ast.Mult) 247 self.assertEqual(type(binop.op), ast.Mult) 259 self.assertEqual(type(binop.op), ast.Mult) 271 self.assertEqual(type(binop.op), ast.Mult) 344 self.assertEqual(type(binop.op), ast.Mult)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsSEISelLowering.cpp | 454 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG); in LowerOperation() 456 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG); in LowerOperation() 458 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG); in LowerOperation() 1271 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped, in lowerMulDiv() local 1276 Lo = DAG.getNode(MipsISD::MFLO, DL, Ty, Mult); in lowerMulDiv() 1278 Hi = DAG.getNode(MipsISD::MFHI, DL, Ty, Mult); in lowerMulDiv() 1569 return lowerDSPIntr(Op, DAG, MipsISD::Mult); in lowerINTRINSIC_WO_CHAIN()
|
H A D | MipsISelLowering.h | 133 // Mult nodes. 134 Mult,
|
H A D | MipsISelLowering.cpp | 207 case MipsISD::Mult: return "MipsISD::Mult"; in getTargetNodeName() 997 SDValue Mult = ROOTNode->getOperand(0).getOpcode() == ISD::MUL in performMADD_MSUBCombine() 1007 if (!Mult.hasOneUse()) in performMADD_MSUBCombine() 1015 SDValue MultLHS = Mult->getOperand(0); in performMADD_MSUBCombine() 1016 SDValue MultRHS = Mult->getOperand(1); in performMADD_MSUBCombine() 1044 CurDAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Mult->getOperand(0)), in performMADD_MSUBCombine() 1045 CurDAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Mult->getOperand(1)), ACCIn}; in performMADD_MSUBCombine()
|
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 25 typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7, enumerator
|
/third_party/python/Python/ |
H A D | ast_unparse.c | 153 case Mult: op = " * "; pr = PR_TERM; break; in append_ast_binop()
|
H A D | ast_opt.c | 477 case Mult: in fold_binop()
|
H A D | Python-ast.c | 1510 "operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift | RShift | BitOr | BitXor | BitAnd | FloorDiv"); in init_types() 1525 state->Mult_type = make_type(state, "Mult", state->operator_type, NULL, 0, in init_types() 1526 "Mult"); in init_types() 4767 case Mult: in ast2obj_operator() 9991 *out = Mult; in obj2ast_operator() 12141 if (PyModule_AddObjectRef(m, "Mult", state->Mult_type) < 0) { in astmodule_exec()
|
H A D | compile.c | 4194 case Mult: in addop_binary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceInstMIPS32.h | 253 Mult, enumerator 1257 using InstMIPS32Mult = InstMIPS32ThreeAddrGPR<InstMIPS32::Mult>;
|
H A D | IceTargetLoweringX8632.cpp | 5169 uint32_t Mult = Const->getValue(); in matchShiftedIndex() local 5171 switch (Mult) { in matchShiftedIndex()
|
H A D | IceTargetLoweringX8664.cpp | 4590 uint32_t Mult = Const->getValue(); in matchShiftedIndex() local 4592 switch (Mult) { in matchShiftedIndex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAGHVX.cpp | 333 PermNetwork(ArrayRef<ElemType> Ord, unsigned Mult = 1) { in PermNetwork() 343 Row.resize(Mult*Log, None); in PermNetwork()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | macro-assembler-mips64.h | 453 DEFINE_INSTRUCTION2(Mult)
|
H A D | macro-assembler-mips64.cc | 531 void TurboAssembler::Mult(Register rs, const Operand& rt) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | macro-assembler-mips.h | 438 DEFINE_INSTRUCTION2(Mult)
|
H A D | macro-assembler-mips.cc | 506 void TurboAssembler::Mult(Register rs, const Operand& rt) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 1193 APInt Mult(W, i); in BinomialCoefficient() 1194 unsigned TwoFactors = Mult.countTrailingZeros(); in BinomialCoefficient() 1196 Mult.lshrInPlace(TwoFactors); in BinomialCoefficient() 1197 OddFactorial *= Mult; in BinomialCoefficient() 3188 const SCEV *Mult = getMulExpr(UDiv, RHS, SCEV::FlagNUW); 3189 return getMinusSCEV(LHS, Mult, SCEV::FlagNUW);
|
/third_party/python/Parser/ |
H A D | parser.c | 2534 _res = _PyPegen_augoperator ( p , Mult ); in augassign_rule() 13165 _res = _PyAST_BinOp ( a , Mult , b , EXTRA ); in term_raw() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | [all...] |