Home
last modified time | relevance | path

Searched refs:dot (Results 1 – 25 of 784) sorted by relevance

12345678910>>...32

/external/libpcap/
DCREDITS4 Bill Fenner <fenner at research dot att dot com>
5 Denis Ovsienko <denis at ovsienko dot info>
6 Fulvio Risso <risso at polito dot it>
7 Guy Harris <guy at alum dot mit dot edu>
8 Hannes Gredler <hannes at juniper dot net>
9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca>
10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com>
14 Akos Vandra <axos88 at gmail dot com>
15 Alan Bawden <Alan at LCS dot MIT dot EDU>
16 Albert Chin <china at thewrittenword dot com>
[all …]
/external/tcpdump/
DCREDITS4 Bill Fenner <fenner at research dot att dot com>
5 Denis Ovsienko <denis at ovsienko dot info>
6 Fulvio Risso <risso at polito dot it>
7 Guy Harris <guy at alum dot mit dot edu>
8 Hannes Gredler <hannes at juniper dot net>
9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca>
10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com>
14 Aaron Campbell <aaron at arbor dot net>
15 A Costa <agcosta at gis dot net>
16 Albert Chin <china at thewrittenword dot com>
[all …]
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
Dtest_dot.py24 dot = Dot.Dot(g)
26 self.assertEqual(dot.name, 'G')
27 self.assertEqual(dot.attr, {})
28 self.assertEqual(dot.temp_dot, 'tmp_dot.dot')
29 self.assertEqual(dot.temp_neo, 'tmp_neo.dot')
30 self.assertEqual(dot.dot, 'dot')
31 self.assertEqual(dot.dotty, 'dotty')
32 self.assertEqual(dot.neato, 'neato')
33 self.assertEqual(dot.type, 'digraph')
35 self.assertEqual(dot.nodes, dict([(x, {}) for x in g]))
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Dnormalize_dot.inl20 glm::dot(x, y) *
21 glm::inversesqrt(glm::dot(x, x) *
22 glm::dot(y, y));
33 glm::dot(x, y) *
34 glm::inversesqrt(glm::dot(x, x) *
35 glm::dot(y, y));
46 glm::dot(x, y) *
47 glm::inversesqrt(glm::dot(x, x) *
48 glm::dot(y, y));
59 glm::dot(x, y) *
[all …]
Dintersect.inl24 typename genType::value_type d = glm::dot(dir, planeNormal);
29 intersectionDistance = glm::dot(planeOrig - orig, planeNormal) / d;
49 typename genType::value_type a = glm::dot(e1, p);
58 baryPosition.x = f * glm::dot(s, p);
65 baryPosition.y = f * glm::dot(dir, q);
71 baryPosition.z = f * glm::dot(e2, q);
91 // float det = dot(edge1, pvec);
97 // position.y = dot(tvec, pvec);
103 // position.z = dot(dir, qvec);
107 // position.x = dot(edge2, qvec);
[all …]
/external/mesa3d/src/mesa/program/
Dprogram_lexer.l161 dot "."[ \t]*
261 {dot}ambient { return AMBIENT; }
262 {dot}attenuation { return ATTENUATION; }
263 {dot}back { return BACK; }
264 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
265 {dot}color { return COLOR; }
266 {dot}depth { return_token_or_DOT(require_ARB_fp, DEPTH); }
267 {dot}diffuse { return DIFFUSE; }
268 {dot}direction { return DIRECTION; }
269 {dot}emission { return EMISSION; }
[all …]
/external/skia/tests/
DPoint3Test.cpp55 SkScalar dot = xAxis.dot(yAxis); in test_dot() local
56 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
58 dot = yAxis.dot(zAxis); in test_dot()
59 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
61 dot = zAxis.dot(xAxis); in test_dot()
62 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
67 dot = v.dot(v); in test_dot()
68 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 1.0f)); in test_dot()
72 dot = xAxis.dot(v); in test_dot()
73 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, SK_ScalarRoot2Over2)); in test_dot()
[all …]
/external/eigen/test/
Dadjoint.cpp19 …test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj… in run()
20 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0)); in run()
23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0)); in run()
34 …test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj… in run()
35 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), ref)); in run()
48 …VERIFY(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref… in run()
92 VERIFY_IS_APPROX(numext::conj(v1.dot(v2)), v2.dot(v1)); in adjoint()
93 VERIFY_IS_APPROX(numext::real(v1.dot(v1)), v1.squaredNorm()); in adjoint()
97 VERIFY_IS_MUCH_SMALLER_THAN(abs(vzero.dot(v1)), static_cast<RealScalar>(1)); in adjoint()
122 VERIFY_IS_APPROX(v1.dot(rv1.template cast<Scalar>()), v1.dot(rv1)); in adjoint()
[all …]
/external/bison/lib/
Dlocalcharset.c389 const char *dot = strchr (locale, '.'); in locale_charset() local
391 if (dot != NULL) in locale_charset()
395 dot++; in locale_charset()
397 modifier = strchr (dot, '@'); in locale_charset()
399 return dot; in locale_charset()
400 if (modifier - dot < sizeof (buf)) in locale_charset()
402 memcpy (buf, dot, modifier - dot); in locale_charset()
403 buf [modifier - dot] = '\0'; in locale_charset()
488 const char *dot = strchr (locale, '.'); in locale_charset() local
490 if (dot != NULL) in locale_charset()
[all …]
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
Ddot.rst1 :mod:`altgraph.Dot` --- Interface to the dot language
5 :synopsis: Interface to the dot language as used by Graphviz..
9 offload the most tedious part of the process (the **dot** file generation)
15 package needs to be installed on the system, moreover the :command:`dot` and :command:`dotty` progr…
30 # create a dot representation of the graph
31 dot = Dot.Dot(graph)
34 dot.display()
36 # save the dot representation into the mydot.dot file
37 dot.save_dot(file_name='mydot.dot')
39 # save dot file as gif image into the graph.gif file
[all …]
/external/ppp/pppd/plugins/pppoatm/
Dtext2atm.c78 int count,pos,dot; in do_try_nsap() local
82 count = dot = 0; in do_try_nsap()
86 dot = 1; in do_try_nsap()
89 else if (!dot) return FATAL; /* two dots in a row */ in do_try_nsap()
90 else dot = 0; in do_try_nsap()
96 if (!dot || *text == '0') return FATAL; in do_try_nsap()
114 for (dot = 0; *text; text++) in do_try_nsap()
122 dot = 1; in do_try_nsap()
128 if (!dot) return FATAL; /* two dots in a row */ in do_try_nsap()
129 dot = 0; in do_try_nsap()
[all …]
/external/bison/doc/
DMakefile.am104 FIGS_DOT = figs/example.dot figs/example-reduce.dot figs/example-shift.dot
108 $(FIGS_DOT:.dot=.eps) $(FIGS_DOT:.dot=.pdf) $(FIGS_DOT:.dot=.png)
109 SUFFIXES += .dot .eps .pdf .png
111 bison.dvi: $(FIGS_DOT:.dot=.eps)
112 bison.html: $(FIGS_DOT:.dot=.png)
113 bison.pdf: $(FIGS_DOT:.dot=.pdf)
115 .dot.eps:
120 .dot.pdf:
125 .dot.png:
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DDOTGenerator.java72 ST dot = null; in getDOT() local
75 dot = stlib.getInstanceOf("dfa"); in getDOT()
76 dot.add("startState", in getDOT()
78 dot.add("useBox", in getDOT()
80 walkCreatingDFADOT(dot, (DFAState)startState); in getDOT()
83 dot = stlib.getInstanceOf("nfa"); in getDOT()
84 dot.add("startState", in getDOT()
86 walkRuleNFACreatingDOT(dot, startState); in getDOT()
88 dot.add("rankdir", rankdir); in getDOT()
89 return dot.toString(); in getDOT()
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dnoise.inl46 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), detail::tvec3<T, P>(1));
77 …vec4<T, P> norm = taylorInvSqrt(detail::tvec4<T, P>(dot(g00, g00), dot(g01, g01), dot(g10, g10), d…
83 T n00 = dot(g00, detail::tvec2<T, P>(fx.x, fy.x));
84 T n10 = dot(g10, detail::tvec2<T, P>(fx.y, fy.y));
85 T n01 = dot(g01, detail::tvec2<T, P>(fx.z, fy.z));
86 T n11 = dot(g11, detail::tvec2<T, P>(fx.w, fy.w));
138 …orm0 = detail::taylorInvSqrt(detail::tvec4<T, P>(dot(g000, g000), dot(g010, g010), dot(g100, g100)…
143 …orm1 = detail::taylorInvSqrt(detail::tvec4<T, P>(dot(g001, g001), dot(g011, g011), dot(g101, g101)…
149 T n000 = dot(g000, Pf0);
150 T n100 = dot(g100, detail::tvec3<T, P>(Pf1.x, Pf0.y, Pf0.z));
[all …]
/external/toybox/toys/lsb/
Dseq.c63 int i, len, dot, left = 0, right = 0; in seq_main() local
70 dot = s-toybuf; in seq_main()
71 if (left<dot) left = dot; in seq_main()
72 dot = len-dot-1; in seq_main()
73 if (right<dot) right = dot; in seq_main()
/external/opencv3/modules/cudalegacy/perf/
Dperf_labeling.cpp53 struct dot struct
58 static dot make(int i, int j) in make() argument
60 dot d; d.x = i; d.y = j; in make()
83 …: image(img), _labels(image.size(), CV_32SC1, cv::Scalar::all(-1)) {stack = new dot[image.cols * i… in GreedyLabeling()
105 dot* top = stack; in operator ()()
106 dot p = dot::make(i, j); in operator ()()
120 *top++ = dot::make(p.x + 1, p.y); in operator ()()
124 *top++ = dot::make(p.x - 1, p.y); in operator ()()
128 *top++ = dot::make(p.x, p.y + 1); in operator ()()
132 *top++ = dot::make(p.x, p.y - 1); in operator ()()
[all …]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
DbtMprPenetration.h214 float dot; in btMprVec3Dot() local
216 dot = btDot(*a,*b); in btMprVec3Dot()
217 return dot; in btMprVec3Dot()
260 float dot; in portalEncapsulesOrigin() local
261 dot = btMprVec3Dot(dir, &btMprSimplexPoint(portal, 1)->v); in portalEncapsulesOrigin()
262 return btMprIsZero(dot) || dot > 0.f; in portalEncapsulesOrigin()
293 float dot; in portalCanEncapsuleOrigin() local
294 dot = btMprVec3Dot(&v4->v, dir); in portalCanEncapsuleOrigin()
295 return btMprIsZero(dot) || dot > 0.f; in portalCanEncapsuleOrigin()
301 float dot; in btExpandPortal() local
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/math/
DPlane.java60 this.d = -this.normal.dot(point); in Plane()
81 d = -point1.dot(normal); in set()
100 return normal.dot(point) + d; in distance()
109 float dist = normal.dot(point) + d; in testPoint()
127 float dist = normal.dot(x, y, z) + d; in testPoint()
143 float dot = normal.dot(direction); in isFrontFacing() local
144 return dot <= 0; in isFrontFacing()
163 d = -point.dot(normal); in set()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
DbtGeometryOperations.h45 plane.setValue(planenormal[0],planenormal[1],planenormal[2],e2.dot(planenormal)); in bt_edge_plane()
60 btScalar _scalar = cp.dot(n)/n.dot(n); in bt_closest_point_on_segment()
93 btScalar _dotdir = vDir.dot(plane); in bt_line_plane_collision()
140 _M[0] = vB1.dot(AD); in bt_segment_collision()
141 _M[1] = vB2.dot(AD); in bt_segment_collision()
148 _M[2] = vA1.dot(AD); in bt_segment_collision()
149 _M[3] = vA2.dot(AD); in bt_segment_collision()
194 _M.setValue(N[0],N[1],N[2],vB1.dot(N)); in bt_segment_collision()
201 tp = vPointB.dot(BD); in bt_segment_collision()
202 tp/= BD.dot(BD); in bt_segment_collision()
/external/opencv3/modules/cudalegacy/test/
Dtest_labeling.cpp51 struct dot struct
56 static dot make(int i, int j) in make() argument
58 dot d; d.x = i; d.y = j; in make()
81 dot* stack = new dot[image.cols * image.rows]; in operator ()()
98 dot* top = stack; in operator ()()
99 dot p = dot::make(i, j); in operator ()()
113 *top++ = dot::make(p.x + 1, p.y); in operator ()()
117 *top++ = dot::make(p.x - 1, p.y); in operator ()()
121 *top++ = dot::make(p.x, p.y + 1); in operator ()()
125 *top++ = dot::make(p.x, p.y - 1); in operator ()()
/external/ceres-solver/internal/ceres/
Dline_search_direction.cc70 beta = (current.gradient.dot(gradient_change) / in NextDirection()
75 beta = (current.gradient.dot(gradient_change) / in NextDirection()
76 previous.search_direction.dot(gradient_change)); in NextDirection()
84 current.gradient.dot(*search_direction); in NextDirection()
128 if (search_direction->dot(current.gradient) >= 0.0) { in NextDirection()
132 << search_direction->dot(current.gradient); in NextDirection()
176 const double delta_x_dot_delta_gradient = delta_x.dot(delta_gradient); in NextDirection()
254 delta_x_dot_delta_gradient / delta_gradient.dot(delta_gradient); in NextDirection()
322 if (search_direction->dot(current.gradient) >= 0.0) { in NextDirection()
326 << search_direction->dot(current.gradient); in NextDirection()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtConvexHullComputer.cpp72 int64_t dot(const Point64& b) const in dot() function in btConvexHullInternal::Point64
119 int64_t dot(const Point32& b) const in dot() function in btConvexHullInternal::Point32
124 int64_t dot(const Point64& b) const in dot() function in btConvexHullInternal::Point32
461 Rational128 dot(const Point64& b) const in dot() function in btConvexHullInternal::Vertex
463 return (point.index >= 0) ? Rational128(point.dot(b)) in dot()
1395 int64_t dot = n.dot(m); in getOrientation() local
1396 btAssert(dot != 0); in getOrientation()
1397 return (dot > 0) ? COUNTER_CLOCKWISE : CLOCKWISE; in getOrientation()
1426 Rational64 cot(t.dot(sxrxs), t.dot(rxs)); in findMaxAngle()
1433 btAssert(ccw ? (t.dot(s) < 0) : (t.dot(s) > 0)); in findMaxAngle()
[all …]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
DbtJacobianEntry.h50 m_Adiag = massInvA + m_0MinvJt.dot(m_aJ) + massInvB + m_1MinvJt.dot(m_bJ); in ATTRIBUTE_ALIGNED16()
67 m_Adiag = m_0MinvJt.dot(m_aJ) + m_1MinvJt.dot(m_bJ); in ATTRIBUTE_ALIGNED16()
83 m_Adiag = m_0MinvJt.dot(m_aJ) + m_1MinvJt.dot(m_bJ); in ATTRIBUTE_ALIGNED16()
101 m_Adiag = massInvA + m_0MinvJt.dot(m_aJ); in ATTRIBUTE_ALIGNED16()
112 btScalar lin = massInvA * jacA.m_linearJointAxis.dot(jacB.m_linearJointAxis); in ATTRIBUTE_ALIGNED16()
113 btScalar ang = jacA.m_0MinvJt.dot(jacB.m_aJ); in ATTRIBUTE_ALIGNED16()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DConstrainedConjGrad.h77 alpha = rho / p.dot(q); in pseudo_inverse()
81 rho = r.dot(r); in pseudo_inverse()
121 iter.setRhsNorm(sqrt(b.dot(b))); // gael vect_sp(PS, b, b) in constrained_cg()
138 Scalar al = C.row(i).dot(x) - f.coeff(i); in constrained_cg()
146 Scalar bb = CINV.row(i).dot(z); in constrained_cg()
158 rho = r.dot(z); in constrained_cg()
164 else gamma = (std::max)(0.0, (rho - old_z.dot(z)) / rho_1); in constrained_cg()
170 lambda = rho / q.dot(p); in constrained_cg()
175 Scalar bb = C.row(i).dot(p) - f[i]; in constrained_cg()
177 lambda = (std::min)(lambda, (f.coeff(i)-C.row(i).dot(x)) / bb); in constrained_cg()
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_noise.inl39 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), detail::tvec3<T, P>(1));
89 detail::tvec2<T, P> i = floor(v + dot(v, detail::tvec2<T, P>(C[1])));
90 detail::tvec2<T, P> x0 = v - i + dot(i, detail::tvec2<T, P>(C[0]));
109 dot(x0, x0),
110 dot(detail::tvec2<T, P>(x12.x, x12.y), detail::tvec2<T, P>(x12.x, x12.y)),
111 dot(detail::tvec2<T, P>(x12.z, x12.w), detail::tvec2<T, P>(x12.z, x12.w))), T(0));
134 return T(130) * dot(m, g);
144 detail::tvec3<T, P> i(floor(v + dot(v, detail::tvec3<T, P>(C.y))));
145 detail::tvec3<T, P> x0(v - i + dot(i, detail::tvec3<T, P>(C.x)));
200 …::tvec4<T, P> norm = taylorInvSqrt(detail::tvec4<T, P>(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(…
[all …]

12345678910>>...32