Home
last modified time | relevance | path

Searched refs:Div (Results 1 – 25 of 146) sorted by relevance

123456

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp433 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/
DcheckJsxChildrenProperty2.js33 <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>
DcheckJsxChildrenProperty2.types82 ><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 …]
DtsxElementResolution8.types8 var Div = 3;
9 >Div : number
12 <Div />;
13 ><Div /> : JSX.Element
14 >Div : number
DtsxElementResolution8.js8 var Div = 3;
9 <Div />;
40 var Div = 3; variable
41 <Div />;
DtsxElementResolution8.symbols13 var Div = 3;
14 >Div : Symbol(Div, Decl(file.tsx, 6, 3))
16 <Div />;
17 >Div : Symbol(Div, Decl(file.tsx, 6, 3))
DtsxElementResolution8.errors.txt1 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.
DcheckJsxChildrenProperty2.errors.txt48 <div> My Div </div>
56 <div> My Div </div>
64 <div> My Div </div>
72 <div> My Div </div>
73 <div> My Div </div>
DcheckJsxChildrenProperty2.symbols81 <div> My Div </div>
102 <div> My Div </div>
118 <div> My Div </div>
134 <div> My Div </div>
138 <div> My Div </div>
DparserRealSource3.types191 Div,
192 >Div : NodeType.Div
DparserRealSource3.symbols191 Div,
192 >Div : Symbol(NodeType.Div, Decl(parserRealSource3.ts, 66, 12))
/third_party/typescript/tests/cases/conformance/jsx/
DcheckJsxChildrenProperty2.tsx39 <div> My Div </div>
45 <div> My Div </div>
51 <div> My Div </div>
57 <div> My Div </div>
58 <div> My Div </div>
DtsxElementResolution8.tsx9 var Div = 3;
10 <Div />;
/third_party/rust/crates/nom/tests/
Darithmetic_ast.rs21 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/
DIntegerDivision.h41 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/
Dnanobenchmark_test.cc25 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/
DInstCombineMulDivRem.cpp302 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/
DDivRemPairs.cpp57 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/
Dexpand.c252 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/
Dop.rs15 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/
DMVETailPredication.cpp384 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/
Dbigint-tester.py212 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/
Dquaternion.inl98 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/
Dspv.specConstantOperations.vert36 // Mul, Div and Rem
86 // Mul, Div and Rem
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource3.ts68 Div, enumerator

123456