Home
last modified time | relevance | path

Searched refs:dot (Results 1 - 25 of 234) sorted by relevance

12345678910

/third_party/openssl/doc/life-cycles/
H A DMakefile1 GRAPHS=cipher.dot digest.dot kdf.dot mac.dot pkey.dot rand.dot
5 png: $(subst .dot,.png,$(GRAPHS))
6 txt: $(subst .dot,.txt,$(GRAPHS))
12 # for the dot program:
14 %.png: %.dot
[all...]
/third_party/skia/tests/
H A DPoint3Test.cpp56 SkScalar dot = xAxis.dot(yAxis); in test_dot() local
57 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
59 dot = yAxis.dot(zAxis); in test_dot()
60 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
62 dot = zAxis.dot(xAxis); in test_dot()
63 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot()
68 dot in test_dot()
[all...]
H A DGrVxTest.cpp25 REPORTER_ASSERT(r, grvx::dot({0,1}, {1,0}) == 0); in DEF_TEST()
26 REPORTER_ASSERT(r, grvx::dot({1,0}, {0,1}) == 0); in DEF_TEST()
27 REPORTER_ASSERT(r, grvx::dot({1,1}, {1,-1}) == 0); in DEF_TEST()
28 REPORTER_ASSERT(r, grvx::dot({1,1}, {1,1}) == 2); in DEF_TEST()
29 REPORTER_ASSERT(r, grvx::dot({1,1}, {-1,-1}) == -2); in DEF_TEST()
39 grvx::dot({a,b}, {c,d}), SkPoint::DotProduct({a,b}, {c,d}), kTolerance)); in DEF_TEST()
/third_party/typescript/tests/baselines/reference/
H A DcontextualSignatureInstantiation2.js2 // dot f g x = f(g(x))
3 var dot: <T, S>(f: (_: T) => S) => <U>(g: (_: U) => T) => (_: U) => S; variable
4 dot = <T, S>(f: (_: T) => S) => <U>(g: (_: U) => T): (r:U) => S => (x) => f(g(x));
6 var r23 = dot(id)(id);
9 // dot f g x = f(g(x))
10 var dot; function
11 dot = function (f) { return function (g) { return function (x) { return f(g(x)); }; }; };
13 var r23 = dot(id)(id);
H A DjsDeclarationsFunctionLikeClasses2.js18 dot(other) {
76 // export const res = Point2D(2, 3).dot(origin); // TODO: when __proto__ works, validate this
97 dot: function (other) {
155 // export const res = Point2D(2, 3).dot(origin); // TODO: when __proto__ works, validate this
175 dot(other: Vec): number;
/third_party/libabigail/src/
H A Dabg-viz-dot.cc13 #include "abg-viz-dot.h"
32 dot::write() in write()
39 throw std::runtime_error("abigail::dot::write fail"); in write()
51 dot::start_element() in start_element()
68 dot::finish_element() in finish_element()
74 dot::add_title() in add_title()
83 dot::add_node(const node_base& __node) in add_node()
101 dot::add_edge(const node_base& __parent, const node_base& __child) in add_edge()
112 dot::add_parent(const parent_node& __p) in add_parent()
118 dot
[all...]
/third_party/python/Modules/_decimal/libmpdec/
H A Dio.c128 * The locations of a single optional dot or indicator are stored
345 /* Print word x with n decimal digits to string s. dot is either NULL
347 #define EXTRACT_DIGIT(s, x, d, dot) \
348 if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
350 word_to_string(char *s, mpd_uint_t x, int n, char *dot) in word_to_string() argument
354 case 20: EXTRACT_DIGIT(s, x, 10000000000000000000ULL, dot); /* GCOV_NOT_REACHED */ in word_to_string()
355 case 19: EXTRACT_DIGIT(s, x, 1000000000000000000ULL, dot); in word_to_string()
356 case 18: EXTRACT_DIGIT(s, x, 100000000000000000ULL, dot); in word_to_string()
357 case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot); in word_to_string()
358 case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot); in word_to_string()
419 coeff_to_string_dot(char *s, char *dot, const mpd_t *dec) coeff_to_string_dot() argument
987 _mpd_add_sep_dot(mpd_mbstr_t *dest, const char *sign, const char *src, mpd_ssize_t n_src, const char *dot, const char *rest, mpd_ssize_t n_rest, const mpd_spec_t *spec) _mpd_add_sep_dot() argument
1095 const char *sign = NULL, *intpart = NULL, *dot = NULL; _mpd_apply_lconv() local
[all...]
/third_party/skia/third_party/externals/swiftshader/tools/cmake_generate_graphviz/
H A Dcmake_generate_graphviz.bat11 where /q dot.exe
13 echo "GraphViz (dot.exe) not found. Please install it from https://graphviz.gitlab.io/"
30 cmake --graphviz=SwiftShader.dot ..
33 dot -Tpng -o SwiftShader.png SwiftShader.dot
/third_party/curl/lib/
H A Dcurl_gethostname.c64 char *dot; in Curl_gethostname()
95 dot = strchr(name, '.'); in Curl_gethostname()
96 if(dot) in Curl_gethostname()
97 *dot = '\0'; in Curl_gethostname()
/third_party/skia/src/core/
H A DSkDraw_vertices.cpp37 fMat[ 0] = a.dot(0, b.getScaleX(), b.getSkewY()); in setConcat()
38 fMat[ 1] = a.dot(1, b.getScaleX(), b.getSkewY()); in setConcat()
39 fMat[ 2] = a.dot(2, b.getScaleX(), b.getSkewY()); in setConcat()
40 fMat[ 3] = a.dot(3, b.getScaleX(), b.getSkewY()); in setConcat()
42 fMat[ 4] = a.dot(0, b.getSkewX(), b.getScaleY()); in setConcat()
43 fMat[ 5] = a.dot(1, b.getSkewX(), b.getScaleY()); in setConcat()
44 fMat[ 6] = a.dot(2, b.getSkewX(), b.getScaleY()); in setConcat()
45 fMat[ 7] = a.dot(3, b.getSkewX(), b.getScaleY()); in setConcat()
47 fMat[ 8] = a.dot(0, b.getTranslateX(), b.getTranslateY()) + a.fMat[ 8]; in setConcat()
48 fMat[ 9] = a.dot( in setConcat()
54 float dot(int index, float x, float y) const { dot() function
133 auto dot = [&, x, y](int row) { onProgram() local
[all...]
H A DSkColorFilter_Matrix.cpp111 auto dot = [&](int j) { in onProgram()
132 return std::make_tuple(dot(0), dot(1), dot(2), dot(3)); in onProgram()
/third_party/skia/src/utils/
H A DSkCamera.cpp123 SkScalar dot = diff.dot({mapPtr[6], mapPtr[7], mapPtr[8]}); in patchToMatrix() local
127 // the view axis (which is 'dot'). This transforms the patch (which transforms from local path in patchToMatrix()
131 // The divide by 'dot' isn't strictly necessary as the homogeneous divide would do much the in patchToMatrix()
132 // same thing (it's just scaling the entire matrix by 1/dot). It looks like it's normalizing in patchToMatrix()
135 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot)); in patchToMatrix()
136 matrix->set(SkMatrix::kMSkewY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot)); in patchToMatrix()
137 matrix->set(SkMatrix::kMPersp0, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot)); in patchToMatrix()
140 matrix->set(SkMatrix::kMSkewX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot)); in patchToMatrix()
141 matrix->set(SkMatrix::kMScaleY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot)); in patchToMatrix()
[all...]
/third_party/libabigail/tests/
H A Dtest-dot.cc6 #include "abg-viz-dot.h"
14 dot obj("sa-base"); in main()
24 dot obj("sa-A"); in main()
35 dot obj("sa-B"); in main()
46 dot obj("sa-D1"); in main()
/third_party/toybox/toys/lsb/
H A Dhostname.c43 char *hostname = toybuf, *dot; in hostname_main() local
68 dot = toybuf+strcspn(toybuf, "."); in hostname_main()
69 if (FLAG(s)) *dot = '\0'; in hostname_main()
70 xputs(FLAG(d) ? dot+1 : toybuf); in hostname_main()
/third_party/skia/src/shaders/
H A DSkTransformShader.cpp33 auto dot = [&,x,y](int row) { in applyMatrix() local
39 x = dot(0); in applyMatrix()
40 y = dot(1); in applyMatrix()
43 x = x * (1.0f / dot(2)); in applyMatrix()
44 y = y * (1.0f / dot(2)); in applyMatrix()
/third_party/gn/src/base/files/
H A Dfile_path.cc359 const StringType::size_type dot = ExtensionSeparatorPosition(base.path_); in Extension() local
360 if (dot == StringType::npos) in Extension()
363 return base.path_.substr(dot, StringType::npos); in Extension()
368 const StringType::size_type dot = FinalExtensionSeparatorPosition(base.path_); in FinalExtension() local
369 if (dot == StringType::npos) in FinalExtension()
372 return base.path_.substr(dot, StringType::npos); in FinalExtension()
379 const StringType::size_type dot = ExtensionSeparatorPosition(path_); in RemoveExtension() local
380 if (dot == StringType::npos) in RemoveExtension()
383 return FilePath(path_.substr(0, dot)); in RemoveExtension()
390 const StringType::size_type dot in RemoveFinalExtension() local
[all...]
/third_party/libwebsockets/lib/plat/windows/
H A Dwindows-plugins.c43 char sym[96], *dot; in lws_plat_dlopen() local
62 dot = strchr(sym, '.'); in lws_plat_dlopen()
63 if (dot) in lws_plat_dlopen()
64 *dot = '\0'; /* snip the .so or .lib or what-have-you*/ in lws_plat_dlopen()
/third_party/skia/src/effects/
H A DSkEmbossMask.cpp82 SkFixed dot = numer / denom; in Emboss() local
83 dot >>= 8; // now dot is 2^8 instead of 2^16 in Emboss()
84 mul = std::min(mul + dot, 255); in Emboss()
91 int hilite = (2 * dot - lz_dot8) * lz_dot8 >> 8; in Emboss()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dtest-one.sh54 --emit-ir-graphviz ir.dot \
61 dot -Tpng ir.dot -o ir.png
/third_party/ffmpeg/libavcodec/
H A Dtexturedspenc.c224 int dot = dots[x]; in match_colors() local
225 int bits = (dot < half_point ? 4 : 0) | in match_colors()
226 (dot < c0_point ? 2 : 0) | in match_colors()
227 (dot < c3_point ? 1 : 0); in match_colors()
330 int dot = block[x * 4 + y * stride + 0] * v_r + in optimize_colors() local
334 if (dot < mind) { in optimize_colors()
335 mind = dot; in optimize_colors()
337 } else if (dot > maxd) { in optimize_colors()
338 maxd = dot; in optimize_colors()
/third_party/node/deps/v8/src/inspector/
H A Dremote-object-id.cc27 const UChar dot = '.'; in parseId() local
28 size_t firstDotPos = objectId.find(dot); in parseId()
34 size_t secondDotPos = objectId.find(dot, firstDotPos); in parseId()
/third_party/python/Objects/
H A Dcapsule.c211 char *dot = strchr(trace, '.'); in PyCapsule_Import() local
212 if (dot) { in PyCapsule_Import()
213 *dot++ = '\0'; in PyCapsule_Import()
230 trace = dot; in PyCapsule_Import()
/third_party/skia/src/gpu/geometry/
H A DGrAAConvexTessellator.cpp31 // dot product below which we use a round cap between curve segments
34 // dot product above which we consider two adjacent curves to be part of the "same" curve
54 SkScalar perpDot = n0.dot(perp); in perp_intersect()
55 return v.dot(perp) / perpDot; in perp_intersect()
70 SkScalar distBToLineAC = SkScalarAbs(n.dot(b) - n.dot(a)); in points_are_colinear_and_b_is_middle()
71 if (*accumError + distBToLineAC >= kClose || aToC.dot(b - a) <= 0.f || aToC.dot(c - b) <= 0.f) { in points_are_colinear_and_b_is_middle()
198 if (SkScalarAbs(fNorms[cur].dot(fNorms[prev])) > kCurveConnectionThreshold) { in computeBisectors()
342 SkScalar depth = -fNorms[edgeIdx].dot( in computeDepthFromEdge()
[all...]
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_itertools.py20 dot='.' func=%(it_funcs)s > trailer< '(' [any] ')' > >
33 dot, it = (results['dot'], results['it'])
39 dot.remove()
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dapinames.c170 const char* dot; in names_dump() local
181 dot = strchr( dll_name, '.' ); in names_dump()
182 if ( dot ) in names_dump()
185 int len = dot - dll_name; in names_dump()

Completed in 10 milliseconds

12345678910