/third_party/openssl/doc/life-cycles/ |
H A D | Makefile | 1 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 D | Point3Test.cpp | 56 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 D | GrVxTest.cpp | 25 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 D | contextualSignatureInstantiation2.js | 2 // 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);
|
/third_party/libabigail/src/ |
H A D | abg-viz-dot.cc | 13 #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...] |
/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/src/graph/ |
H A D | graph_converter.py | 45 def draw_title_and_touch_points(tree: EventTree, tree_name, dot): 56 dot.subgraph(sub_graph) 112 def draw_event_procedures(tree: EventTree, tree_name, dot, is_show_detail): 126 dot.edge(tree_name, scope_root_node_name, color=edge_colors[current_index]) 131 dot.subgraph(sub_graph) 140 dot = Digraph(comment=comment) 143 draw_title_and_touch_points(tree, tree_name, dot) 145 draw_event_procedures(tree, tree_name, dot, is_show_detail) 149 dot.render(out_graph_file_name, format='svg', cleanup=True, view=False) 211 def draw_hittest_result(tree: EventTree, tree_name, dot) [all...] |
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | io.c | 128 * 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 D | cmake_generate_graphviz.bat | 11 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 D | curl_gethostname.c | 64 char *dot; in Curl_gethostname() 95 dot = strchr(name, '.'); in Curl_gethostname() 96 if(dot) in Curl_gethostname() 97 *dot = '\0'; in Curl_gethostname()
|
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/ |
H A D | 3d_dm_lighting_common.h | 100 pow(clamp(max(dot(normalDFdx, normalDFdx), dot(normalDdFdy, normalDdFdy)), 0.0, 1.0), 0.333); in GetFinalCorrectedRoughness() 121 const float ccNoV = clamp(dot(ccsv.ccNormal, V), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in AppendIndirectClearcoat() 274 const float VoH = clamp(dot(sd.V, H), 0.0, 1.0); in CalculateLight() 275 const float NoH = clamp(dot(sd.N, H), 0.0, 1.0); in CalculateLight() 296 const float VoH = clamp(dot(sd.V, H), 0.0, 1.0); in CalculateLight() 297 const float NoH = clamp(dot(sd.N, H), 0.0, 1.0); in CalculateLight() 310 const float ccNoL = clamp(dot(ccsv.ccNormal, L), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLight() 311 const float ccNoH = clamp(dot(ccsv.ccNormal, H), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLight() 312 const float ccLoH = clamp(dot( in CalculateLight() [all...] |
/third_party/libabigail/tests/ |
H A D | test-dot.cc | 6 #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 D | hostname.c | 43 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/core/ |
H A D | SkDraw_vertices.cpp | 37 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...] |
/foundation/graphic/graphic_3d/lume/Lume_3D/assets/3d/shaders/common/ |
H A D | inplace_lighting_common.h | 33 const float VoH = clamp(dot(sd.V, H), 0.0, 1.0); in CalculateLightInplace() 34 const float NoH = clamp(dot(sd.N, H), 0.0, 1.0); in CalculateLightInplace() 47 const float ccNoL = clamp(dot(ccsv.ccNormal, L), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLightInplace() 48 const float ccNoH = clamp(dot(ccsv.ccNormal, H), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLightInplace() 49 const float ccLoH = clamp(dot(L, H), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLightInplace() 50 const float ccNoV = clamp(dot(ccsv.ccNormal, sd.V), CORE3D_PBR_LIGHTING_EPSILON, 1.0); in CalculateLightInplace() 97 const float NoL = clamp(dot(sd.N, L), 0.0, 1.0); in CalculateLightingInplace() 130 const float NoL = clamp(dot(sd.N, L), 0.0, 1.0); in CalculateLightingInplace() 152 const float cd = dot(uLightData.lights[currLightIdx].dir.xyz, -L); in CalculateLightingInplace() 177 const float NoL = clamp(dot(s in CalculateLightingInplace() [all...] |
/third_party/skia/src/utils/ |
H A D | SkCamera.cpp | 123 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/skia/src/shaders/ |
H A D | SkTransformShader.cpp | 33 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/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | test-one.sh | 54 --emit-ir-graphviz ir.dot \ 61 dot -Tpng ir.dot -o ir.png
|
/third_party/libwebsockets/lib/plat/windows/ |
H A D | windows-plugins.c | 43 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 D | SkEmbossMask.cpp | 82 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/gn/src/base/files/ |
H A D | file_path.cc | 359 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...] |
/foundation/graphic/graphic_3d/lume/LumeRender/api/render/shaders/common/ |
H A D | render_color_conversion_common.h | 103 const float y = dot(rgb, vec3(0.25, 0.5, 0.25)); in rgbToYCoCg() 104 const float co = dot(rgb, vec3(0.5, 0.0, -0.5)); in rgbToYCoCg() 105 const float cg = dot(rgb, vec3(-0.25, 0.5, -0.25)); in rgbToYCoCg()
|
H A D | render_post_process_common.h | 41 return dot(distUv, distUv) * chromaCoefficient; in getChromaCoeff() 49 return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453); in RandomDither()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | remote-object-id.cc | 27 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/ffmpeg/libavcodec/ |
H A D | texturedspenc.c | 224 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/python/Objects/ |
H A D | capsule.c | 211 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()
|