/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | IntegerDivision.cpp | 433 bool llvm::expandDivision(BinaryOperator *Div) { in expandDivision() argument 434 assert((Div->getOpcode() == Instruction::SDiv || in expandDivision() 435 Div->getOpcode() == Instruction::UDiv) && in expandDivision() 438 IRBuilder<> Builder(Div); in expandDivision() 440 assert(!Div->getType()->isVectorTy() && "Div over vectors not supported"); in expandDivision() 441 assert((Div->getType()->getIntegerBitWidth() == 32 || in expandDivision() 442 Div->getType()->getIntegerBitWidth() == 64) && in expandDivision() 446 if (Div->getOpcode() == Instruction::SDiv) { in expandDivision() 448 Value *Quotient = generateSignedDivisionCode(Div->getOperand(0), in expandDivision() 449 Div->getOperand(1), Builder); in expandDivision() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | checkJsxChildrenProperty2.js | 33 <div> My Div </div> 39 <div> My Div </div> 45 <div> My Div </div> 51 <div> My Div </div> 52 <div> My Div </div> 76 <div> My Div </div> 80 <div> My Div </div> 84 <div> My Div </div> 88 <div> My Div </div> 89 <div> My Div </div>
|
D | checkJsxChildrenProperty2.types | 82 ><Comp a={10} b="hi"> <div> My Div </div> {(name: string) => <div> My name {name} </d… 88 <div> My Div </div> 89 ><div> My Div </div> : JSX.Element 108 ><Comp a={10} b="hi"> <div> My Div </div> {1000000} </Comp> : JSX.Element 114 <div> My Div </div> 115 ><div> My Div </div> : JSX.Element 129 ><Comp a={10} b="hi" > <div> My Div </div> hi hi hi! </Comp> : JSX.Element 135 <div> My Div </div> 136 ><div> My Div </div> : JSX.Element 148 ><Comp a={10} b="hi" > <div> My Div </div> <div> My Div </div> </Comp> : JSX.Eleme… [all …]
|
D | tsxElementResolution8.types | 8 var Div = 3; 9 >Div : number 12 <Div />; 13 ><Div /> : JSX.Element 14 >Div : number
|
D | tsxElementResolution8.js | 8 var Div = 3; 9 <Div />; 40 var Div = 3; variable 41 <Div />;
|
D | tsxElementResolution8.symbols | 13 var Div = 3; 14 >Div : Symbol(Div, Decl(file.tsx, 6, 3)) 16 <Div />; 17 >Div : Symbol(Div, Decl(file.tsx, 6, 3))
|
D | tsxElementResolution8.errors.txt | 1 tests/cases/conformance/jsx/file.tsx(8,2): error TS2604: JSX element type 'Div' does not have any c… 12 var Div = 3; 13 <Div />; 15 !!! error TS2604: JSX element type 'Div' does not have any construct or call signatures.
|
D | checkJsxChildrenProperty2.errors.txt | 48 <div> My Div </div> 56 <div> My Div </div> 64 <div> My Div </div> 72 <div> My Div </div> 73 <div> My Div </div>
|
D | checkJsxChildrenProperty2.symbols | 81 <div> My Div </div> 102 <div> My Div </div> 118 <div> My Div </div> 134 <div> My Div </div> 138 <div> My Div </div>
|
D | parserRealSource3.types | 191 Div, 192 >Div : NodeType.Div
|
D | parserRealSource3.symbols | 191 Div, 192 >Div : Symbol(NodeType.Div, Decl(parserRealSource3.ts, 66, 12))
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | checkJsxChildrenProperty2.tsx | 39 <div> My Div </div> 45 <div> My Div </div> 51 <div> My Div </div> 57 <div> My Div </div> 58 <div> My Div </div>
|
D | tsxElementResolution8.tsx | 9 var Div = 3; 10 <Div />;
|
/third_party/rust/crates/nom/tests/ |
D | arithmetic_ast.rs | 21 Div(Box<Expr>, Box<Expr>), enumerator 30 Div, enumerator 41 Div(ref left, ref right) => write!(format, "{} / {}", left, right), in fmt() 55 Div(ref left, ref right) => write!(format, "({:?} / {:?})", left, right), in fmt() 86 Oper::Div => Expr::Div(Box::new(acc), Box::new(expr)), in fold_exprs() 100 Ok((i, (Oper::Div, div))) in term()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | IntegerDivision.h | 41 bool expandDivision(BinaryOperator* Div); 62 bool expandDivisionUpTo32Bits(BinaryOperator *Div); 68 bool expandDivisionUpTo64Bits(BinaryOperator *Div);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | nanobenchmark_test.cc | 25 uint64_t Div(const void*, FuncInput in) { in Div() function 37 const size_t num_results = Measure(&Div, nullptr, inputs, N, results, params); in MeasureDiv()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 302 BinaryOperator *Div = dyn_cast<BinaryOperator>(Op0); in visitMul() local 303 if (!Div || (Div->getOpcode() != Instruction::UDiv && in visitMul() 304 Div->getOpcode() != Instruction::SDiv)) { in visitMul() 306 Div = dyn_cast<BinaryOperator>(Op1); in visitMul() 309 if (Div && Div->hasOneUse() && in visitMul() 310 (Div->getOperand(1) == Y || Div->getOperand(1) == Neg) && in visitMul() 311 (Div->getOpcode() == Instruction::UDiv || in visitMul() 312 Div->getOpcode() == Instruction::SDiv)) { in visitMul() 313 Value *X = Div->getOperand(0), *DivOp1 = Div->getOperand(1); in visitMul() 316 if (Div->isExact()) { in visitMul() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | DivRemPairs.cpp | 57 Instruction *Div; in matchExpandedRem() local 62 m_Instruction(Div)), in matchExpandedRem() 67 M.Key.SignedOp = Div->getOpcode() == Instruction::SDiv; in matchExpandedRem()
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | expand.c | 252 goto Div; in simplify_int_binop() 259 if (!r) goto Div; in simplify_int_binop() 265 goto Div; in simplify_int_binop() 272 if (!r) goto Div; in simplify_int_binop() 297 Div: in simplify_int_binop() 356 case '/': if (!r) goto Div; in simplify_float_binop() 365 case '/': if (!r) goto Div; in simplify_float_binop() 374 case '/': if (!r) goto Div; in simplify_float_binop() 382 Div: in simplify_float_binop()
|
/third_party/rust/crates/syn/src/ |
D | op.rs | 15 Div(Token![/]), 112 input.parse().map(BinOp::Div) in parse_binop() 195 BinOp::Div(t) => t.to_tokens(tokens), in to_tokens()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | MVETailPredication.cpp | 384 if (auto *Div = dyn_cast<SCEVUDivExpr>(TC->getOperand(1))) in ComputeElements() local 385 if (auto *Add = dyn_cast<SCEVAddExpr>(Div->getLHS())) in ComputeElements() 387 if (auto *Div = VisitMul(Mul)) in ComputeElements() local 388 if (auto *Res = VisitDiv(Div)) in ComputeElements()
|
/third_party/node/deps/v8/tools/ |
D | bigint-tester.py | 212 class Div(BinaryOp): class 225 class Mod(Div): # Sharing GenerateInputLengths. 279 "div": Div,
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | quaternion.inl | 98 T Div = sin(NewAngle) / sin(Angle); local 101 …return tquat<T, P>(cos(NewAngle) * magnitude * Mag, x.x * Div * Mag, x.y * Div * Mag, x.z * Div * …
|
/third_party/glslang/Test/ |
D | spv.specConstantOperations.vert | 36 // Mul, Div and Rem 86 // Mul, Div and Rem
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource3.ts | 68 Div, enumerator
|