Home
last modified time | relevance | path

Searched refs:Dot (Results 1 - 25 of 47) sorted by relevance

12

/third_party/alsa-utils/bat/tests/
H A Dalsabat_main.sh88 Dot="$Dot".
89 echo "Now doing $TestItem test$Dot"
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_execfile.py11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node, namespace
37 read = [Node(syms.trailer, [Dot(), Name('read')]),
H A Dfix_dict.py34 from ..fixer_util import Name, Call, Dot namespace
69 [Dot(),
/third_party/skia/include/core/
H A DSkM44.h21 static SkScalar Dot(SkV2 a, SkV2 b) { return a.x * b.x + a.y * b.y; } in Dot() function
40 SkScalar lengthSquared() const { return Dot(*this, *this); } in lengthSquared()
43 SkScalar dot(SkV2 v) const { return Dot(*this, v); } in dot()
59 static SkScalar Dot(const SkV3& a, const SkV3& b) { return a.x*b.x + a.y*b.y + a.z*b.z; } in Dot() function
82 SkScalar lengthSquared() const { return Dot(*this, *this); } in lengthSquared()
83 SkScalar length() const { return SkScalarSqrt(Dot(*this, *this)); } in length()
85 SkScalar dot(const SkV3& v) const { return Dot(*this, v); } in dot()
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dmod.rs477 Dot(Span),
500 Ast::Dot(ref span) => span, in span()
525 | Ast::Dot(_) in has_subexprs()
1367 | Ast::Dot(_) in drop()
1386 | Ast::Dot(_) in drop()
H A Dparse.rs27 Dot(Span),
38 Primitive::Dot(ref span) => span, in span()
49 Primitive::Dot(span) => Ast::Dot(span), in into_ast()
1395 let ast = Primitive::Dot(self.span_char()); in parse_primitive()
2183 | Ast::Dot(_) in visit_pre()
2204 | Ast::Dot(_) in visit_post()
2900 Ast::Dot(span_range(pat, 0..1)), in parse_newlines()
2902 Ast::Dot(span_range(pat, 2..3)), in parse_newlines()
4132 Ok(Primitive::Dot(spa in parse_primitive_non_escape()
[all...]
/third_party/skia/samplecode/
H A DSamplePath.cpp595 static void Dot(SkCanvas* canvas, SkPoint p, SkScalar radius, SkColor c) { in Dot() function in CubicCurve2
620 Dot(canvas, storage[i], 4, SK_ColorBLUE); in showFrame()
679 Dot(canvas, p0, 4, SK_ColorRED); in showInnerQuads()
682 Dot(canvas, p1, 4, SK_ColorBLUE); in showInnerQuads()
688 Dot(canvas, p2, 4, 0xFF00AA00); in showInnerQuads()
731 Dot(canvas, p, 7, SK_ColorBLACK);
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DCommon.h127 inline float Dot(const vec3& lhs, const vec3& rhs) in Dot() function
313 -Dot(xAxis, eye), -Dot(yAxis, eye), -Dot(zAxis, eye), 1.0f); in LookAt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCAsmMacro.h49 Star, Dot, Comma, Dollar, Equal, EqualEqual, enumerator
/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsFunctionLikeClasses2.js20 throw new Error(`Dot product only applicable for vectors of equal length`);
99 throw new Error("Dot product only applicable for vectors of equal length");
H A DparserRealSource2.js24 Dot = 1 << 7, // Dot
52 Postfix = Dot | LParen | LBrack,
296 ErrorRecoverySet[ErrorRecoverySet["Dot"] = 128] = "Dot";
H A DparserRealSource3.js29 Dot,
150 NodeType[NodeType["Dot"] = 19] = "Dot";
H A DparserRealSource10.js112 Dot,
311 setTokenInfo(TokenID.Dot, Reservation.None, OperatorPrecedence.Unary, NodeType.None, OperatorPrecedence.None, NodeType.None, ".", ErrorRecoverySet.Dot); // .
584 TokenID[TokenID["Dot"] = 101] = "Dot";
779 setTokenInfo(TokenID.Dot, Reservation.None, OperatorPrecedence.Unary, NodeType.None, OperatorPrecedence.None, NodeType.None, ".", ErrorRecoverySet.Dot); // .
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DMCAsmLexer.cpp67 case AsmToken::Dot: OS << "Dot"; break; in dump()
H A DAsmLexer.cpp160 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1)); in LexIdentifier()
/third_party/python/Lib/lib2to3/
H A Dfixer_util.py42 return [obj, Node(syms.trailer, [Dot(), attr])]
48 def Dot(): function
/third_party/skia/src/sksl/ir/
H A DSkSLFunctionCall.cpp645 return (N() * Select(Dot(NRef(), I()) < 0, 1, -1)).release(); in optimize_intrinsic_call()
650 return (I() - 2.0 * Dot(N(), I()) * N()).release(); in optimize_intrinsic_call()
658 (1 - Pow(Eta(), 2) * (1 - Pow(Dot(N(), I()), 2))).release(); in optimize_intrinsic_call()
665 (Eta() * I() - (Eta() * Dot(N(), I()) + std::sqrt(kValue)) * N())).release(); in optimize_intrinsic_call()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1463 case AsmToken::Dot: in ParseOperand()
1574 size_t Dot = Name.find('.'); in ParseInstruction() local
1575 StringRef Mnemonic = Name.slice(0, Dot); in ParseInstruction()
1581 if (Dot != StringRef::npos) { in ParseInstruction()
1582 SMLoc DotLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Dot); in ParseInstruction()
1583 StringRef DotStr = Name.slice(Dot, StringRef::npos); in ParseInstruction()
/third_party/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp117 edge = Dot(edgeArray[i], Half3(Swizzle(sk_FragCoord(), X, Y, ONE))); in onMakeProgramImpl()
/third_party/ltp/tools/sparse/sparse-src/
H A Dtokenize.c500 Dot = 16, enumerator
520 ['.' + 1] = Dot | ValidSecond,
554 if (!(class & (Dot | Digit | Letter))) in get_one_number()
/third_party/rust/crates/syn/src/
H A Dtoken.rs801 "." pub struct Dot/1 /// field access, tuple index
976 [.] => { $crate::token::Dot };
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderGLSLstd450.cpp298 SIMD::Float d = Dot(type.componentCount, I, N); in EmitExtGLSLstd450()
312 SIMD::Float d = Dot(type.componentCount, I, N); in EmitExtGLSLstd450()
329 SIMD::Float d = Dot(type.componentCount, I, Nref); in EmitExtGLSLstd450()
342 SIMD::Float d = Dot(getObjectType(insn.word(5)).componentCount, x, x); in EmitExtGLSLstd450()
350 SIMD::Float d = Dot(getObjectType(insn.word(5)).componentCount, x, x); in EmitExtGLSLstd450()
/third_party/python/Lib/test/
H A Dtest_collections.py531 Dot = namedtuple('Dot', 'd')
532 self.assertEqual(Dot(1), (1,))
533 self.assertEqual(Dot._make([1]), (1,))
534 self.assertEqual(Dot(1).d, 1)
535 self.assertEqual(repr(Dot(1)), 'Dot(d=1)')
536 self.assertEqual(Dot(1)._asdict(), {'d':1})
537 self.assertEqual(Dot(1)._replace(d=999), (999,))
538 self.assertEqual(Dot(
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp547 const MCSymbolRefExpr *Dot = MCSymbolRefExpr::create(DotSym, OutContext); in EmitNop() local
550 .addImm(0).addExpr(Dot), STI); in EmitNop()
/third_party/skia/include/sksl/
H A DDSLCore.h287 DSLExpression Dot(DSLExpression x, DSLExpression y, PositionInfo pos = PositionInfo::Capture());

Completed in 29 milliseconds

12