Searched refs:dot (Results 226 - 250 of 307) sorted by relevance

1234567891011>>

/external/skia/include/core/
H A DSkPoint.h143 /** Returns the dot product of a and b, treating them as 2D vectors
433 /** Returns the dot product of a and b, treating them as 2D vectors
449 SkScalar dot(const SkPoint& vec) const { function in struct:SkPoint
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js421 * Calculates the dot product of two vec2's
425 * @returns {Number} dot product of a and b
427 vec2.dot = function (a, b) {
926 * Calculates the dot product of two vec3's
930 * @returns {Number} dot product of a and b
932 vec3.dot = function (a, b) {
1430 * Calculates the dot product of two vec4's
1434 * @returns {Number} dot product of a and b
1436 vec4.dot = function (a, b) {
3642 * Calculates the dot produc
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
H A Dvec3-spec.js312 describe("dot", function() {
313 beforeEach(function() { result = vec3.dot(vecA, vecB); });
315 it("should return the dot product", function() { expect(result).toEqual(32); });
H A Dvec4-spec.js312 describe("dot", function() {
313 beforeEach(function() { result = vec4.dot(vecA, vecB); });
315 it("should return the dot product", function() { expect(result).toEqual(70); });
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnew_tab.css222 body.bare-minimum #dot-list {
H A Dpage_list_view.js7 * PageListView manages page list, dot list, switcher buttons and handles apps
118 * @param {!Element} dotList An UL element to host nav dots. Each dot
251 // Make a deep copy of the dot template to add a new one.
256 // Set a tab index on the first dot.
339 // uninstall. Could we re-use the existing page and dot elements? It
470 // Set the App dot names. Skip the first dot (Most Visited).
471 var dots = this.dotList.getElementsByClassName('dot');
563 var dot = tempPage.navigationDot;
668 // Update the active dot
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Darc.c219 double dot = vector_dot(v0, v1); local
223 return acos(dot / (norm0 * norm1));
/external/chromium_org/third_party/skia/tests/
H A DPathOpsAngleIdeas.cpp139 // m = v1.cross(v2) / v1.dot(v2)
140 double s0dt0 = sweep[0].dot(tweep[0]);
752 // m = v1.cross(v2) / v1.dot(v2)
753 double div = v1.dot(v2);
/external/chromium_org/third_party/tcmalloc/vendor/
H A DMakefile.am746 # I don't know how to say "distribute the .dot files but don't install them";
748 # one day we figure it out. Regardless, installing the dot files isn't the
750 dist_doc_DATA += doc/overview.dot \
751 doc/pageheap.dot \
752 doc/spanmap.dot \
753 doc/threadheap.dot
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A DLevenbergMarquardt.h255 gnorm = (std::max)(gnorm, abs( fjac.col(j).head(j+1).dot(qtf.head(j+1)/fnorm) / wa2[permutation.indices()[j]]));
505 gnorm = (std::max)(gnorm, abs( fjac.col(j).head(j+1).dot(qtf.head(j+1)/fnorm) / wa2[permutation.indices()[j]]));
/external/lldb/include/lldb/Core/
H A DValueObject.h144 GetValueForExpressionPathOptions(bool dot = false,
148 m_check_dot_vs_arrow_syntax(dot),
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.c219 double dot = vector_dot(v0, v1); local
223 return acos(dot / (norm0 * norm1));
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp139 // m = v1.cross(v2) / v1.dot(v2)
140 double s0dt0 = sweep[0].dot(tweep[0]);
752 // m = v1.cross(v2) / v1.dot(v2)
753 double div = v1.dot(v2);
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c1053 HChar* dot; local
1153 /* Why +5 ? Because in the worst case, we could find a dot as the
1159 dot = VG_(strrchr)(pdbname, '.');
1160 if (!dot)
1161 goto out; /* there's no dot in the exe's name ?! */
1162 if (dot[1] == 0)
1165 if ('A' <= dot[1] && dot[1] <= 'Z')
1166 VG_(strcpy)(dot, ".PDB");
1168 VG_(strcpy)(dot, "
[all...]
/external/mksh/src/
H A DBuild.sh222 Build.sh|check.pl|check.t|dot.mkshrc|*.1|*.c|*.h|*.ico|*.opt) ;;
619 ccpr='|| for _f in ${tcfn}*; do case $_f in Build.sh|check.pl|check.t|dot.mkshrc|*.1|*.c|*.h|*.ico|*.opt) ;; *) rm -f "$_f" ;; esac; done'
2485 NONSRCS_INST= dot.mkshrc \$(MAN)
2568 $e "# $i -c -o root -g bin -m 444 dot.mkshrc /usr/share/doc/mksh/examples/"
2580 $e Please also read the sample file dot.mkshrc and the fine manual.
2653 Copy dot.mkshrc to /etc/skel/.mkshrc; install mksh into $prefix/bin; or
2657 and put dot.mkshrc as /etc/mkshrc so users need not keep up their HOME.
/external/deqp/modules/gles2/functional/
H A Des2fClippingTests.cpp329 if (tcu::dot(n, d))
333 if (deSign32(tcu::dot(n, tcu::cross(t1 - t0, p - t0))) == deSign32(tcu::dot(n, tcu::cross(t2 - t0, p - t0))))
335 if (deSign32(tcu::dot(n, tcu::cross(t2 - t1, p - t1))) == deSign32(tcu::dot(n, tcu::cross(t0 - t1, p - t1))))
337 if (deSign32(tcu::dot(n, tcu::cross(t0 - t2, p - t2))) == deSign32(tcu::dot(n, tcu::cross(t1 - t2, p - t2))))
/external/deqp/modules/gles3/functional/
H A Des3fClippingTests.cpp332 if (tcu::dot(n, d))
336 if (deSign32(tcu::dot(n, tcu::cross(t1 - t0, p - t0))) == deSign32(tcu::dot(n, tcu::cross(t2 - t0, p - t0))))
338 if (deSign32(tcu::dot(n, tcu::cross(t2 - t1, p - t1))) == deSign32(tcu::dot(n, tcu::cross(t0 - t1, p - t1))))
340 if (deSign32(tcu::dot(n, tcu::cross(t0 - t2, p - t2))) == deSign32(tcu::dot(n, tcu::cross(t1 - t2, p - t2))))
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_fxt1.c274 GLfloat dot = 0.0F; \
276 dot += V[i] * IV[i]; \
278 TEXEL = (GLint)(dot + B); \
/external/mesa3d/src/mesa/main/
H A Dtexcompress_fxt1.c274 GLfloat dot = 0.0F; \
276 dot += V[i] * IV[i]; \
278 TEXEL = (GLint)(dot + B); \
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp63 SkScalar colorScale = SkScalarMul(fKD, normal.dot(surfaceTolight));
84 SkScalarPow(normal.dot(halfDir), fShininess));
710 SkScalar cosAngle = -surfaceToLight.dot(fS);
1397 lightBody.appendf("\tfloat colorScale = %s * dot(normal, surfaceToLight);\n", kd);
1479 lightBody.appendf("\tfloat colorScale = %s * pow(dot(normal, halfDir), %s);\n", ks, shininess);
1596 lightColorBody.appendf("\tfloat cosAngle = -dot(surfaceToLight, %s);\n", s);
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-tree-wizard.rb43 assert_equal(type, :dot)
/external/ceres-solver/internal/ceres/
H A Dline_search.cc139 *g = direction_.dot(gradient_);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicUtilities.cpp58 if (startTan.dot(endTan) >= 0) {
329 Looking for F' dot F'' == 0
338 F' dot F'' -> CCt^3 + 3BCt^2 + (2BB + CA)t + AB
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h198 dot(const MatrixBase<OtherDerived>& other) const;
/external/eigen/Eigen/src/Eigenvalues/
H A DSelfAdjointEigenSolver.h646 Scalar d = eivecs.col(1).dot(eivecs.col(k));

Completed in 504 milliseconds

1234567891011>>