/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cmsccoll.c | 1722 static const UChar dot = 0x2e; /* punctuation */ in TestVariableTopSetting() local 1736 ucol_equal(coll, &nul, 0, &dot, 1) || in TestVariableTopSetting() 1740 ucol_greaterOrEqual(coll, &space, 1, &dot, 1)) { in TestVariableTopSetting() 1744 varTop1 = ucol_setVariableTop(coll, &dot, 1, &status); in TestVariableTopSetting() 1746 log_verbose("ucol_setVariableTop(dot) -> %08x\n", varTop1); in TestVariableTopSetting() 1749 !ucol_equal(coll, &nul, 0, &dot, 1) || in TestVariableTopSetting() 1753 ucol_greaterOrEqual(coll, &dot, 1, °ree, 1)) { in TestVariableTopSetting() 1754 log_err("ucol_setVariableTop(dot) did not work - %s\n", u_errorName(status)); in TestVariableTopSetting() 1762 !ucol_equal(coll, &nul, 0, &dot, 1) || in TestVariableTopSetting() 1775 !ucol_equal(coll, &nul, 0, &dot, in TestVariableTopSetting() 1832 static const UChar dot = 0x2e; /* punctuation */ TestMaxVariable() local [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | ShaderCore.cpp | 1037 Float4 dot = dot3(src0, src1); in dp3() local 1039 dst.x = dot; in dp3() 1040 dst.y = dot; in dp3() 1041 dst.z = dot; in dp3() 1042 dst.w = dot; in dp3() 1047 Float4 dot = dot4(src0, src1); in dp4() local 1049 dst.x = dot; in dp4() 1050 dst.y = dot; in dp4() 1051 dst.z = dot; in dp4() 1052 dst.w = dot; in dp4() 1569 Float4 dot = dot2(src, src); nrm2() local 1580 Float4 dot = dot3(src, src); nrm3() local 1591 Float4 dot = dot4(src, src); nrm4() local [all...] |
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeHardwareTessellator.cpp | 500 float ab_cosTheta = a.dot(b); in internalPatchTo() 501 float ab_pow2 = a.dot(a) * b.dot(b); in internalPatchTo()
|
/third_party/spirv-tools/test/opt/ |
H A D | local_ssa_elim_test.cpp | 4396 float cosDir = dot(L, dir); in TEST_F() 4401 float NdotL = max(0.0, dot(N, L)); in TEST_F() 4406 float NdotR = max(0.0, dot(R, V)); in TEST_F()
|
/kernel/linux/linux-5.10/net/ipv4/ |
H A D | devinet.c | 1485 char old[IFNAMSIZ], *dot; in inetdev_changename() local 1491 dot = strchr(old, ':'); in inetdev_changename() 1492 if (!dot) { in inetdev_changename() 1494 dot = old; in inetdev_changename() 1496 if (strlen(dot) + strlen(dev->name) < IFNAMSIZ) in inetdev_changename() 1497 strcat(ifa->ifa_label, dot); in inetdev_changename() 1499 strcpy(ifa->ifa_label + (IFNAMSIZ - strlen(dot) - 1), dot); in inetdev_changename()
|
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | devinet.c | 1509 char old[IFNAMSIZ], *dot; in inetdev_changename() local 1515 dot = strchr(old, ':'); in inetdev_changename() 1516 if (!dot) { in inetdev_changename() 1518 dot = old; in inetdev_changename() 1520 if (strlen(dot) + strlen(dev->name) < IFNAMSIZ) in inetdev_changename() 1521 strcat(ifa->ifa_label, dot); in inetdev_changename() 1523 strcpy(ifa->ifa_label + (IFNAMSIZ - strlen(dot) - 1), dot); in inetdev_changename()
|
/third_party/python/Lib/unittest/ |
H A D | mock.py | 630 mocks using standard dot notation and unpacking a dictionary in the 701 dot = '.' 703 dot = '' 708 _name_list.append(_parent._mock_new_name + dot) 709 dot = '.' 711 dot = '' 1167 dot = '' 1169 dot = '.' 1171 mock_call_name = _new_parent._mock_new_name + dot + mock_call_name
|
/third_party/gn/src/gn/ |
H A D | function_rebase_path.cc | 181 slash, you can add a dot ("//.").
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 1285 parent, dot, me = self._name.rpartition('.') 1286 if dot == '': 1676 name, dot, suffix = item.partition('.') 1677 if dot:
|
/third_party/skia/src/gpu/ops/ |
H A D | AAHairLinePathRenderer.cpp | 505 SkScalar lineAW = -normA.dot(ptA); in intersect_lines() 506 SkScalar lineBW = -normB.dot(ptB); in intersect_lines() 583 if (abN.dot(ac) > 0) { in bloat_quad() 589 if (cbN.dot(ac) < 0) { in bloat_quad() 619 // K = dot(k, P), L = dot(l, P), M = dot(m, P)
|
/third_party/skia/src/shaders/ |
H A D | SkPerlinNoiseShader.cpp | 457 u = fPaintingData.fGradient[channel][b00].dot(fractionValue); 459 v = fPaintingData.fGradient[channel][b10].dot(fractionValue); 462 v = fPaintingData.fGradient[channel][b11].dot(fractionValue); 464 u = fPaintingData.fGradient[channel][b01].dot(fractionValue); 765 // [-1,1] vector and perform a dot product between that vector and the provided vector. 769 SkStringPrintf("dot((lattice.ga + lattice.rb*%s)*2 - half2(1), fractVal)", inc8bit);
|
/third_party/python/Python/ |
H A D | errors.c | 1135 const char *dot = strrchr(name, '.'); in PyErr_NewException() local 1136 if (dot == NULL) { in PyErr_NewException() 1156 (Py_ssize_t)(dot-name)); in PyErr_NewException() 1173 dot+1, bases, dict); in PyErr_NewException()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_decompress_symbolic.cpp | 411 summa += min(dot(error, blk.channel_weight), ERROR_CALC_DEFAULT); in compute_symbolic_block_difference_2plane() 508 summa += min(dot(error, blk.channel_weight), ERROR_CALC_DEFAULT); in compute_symbolic_block_difference_1plane()
|
/third_party/ninja/ |
H A D | configure.py | 610 command='dot -Tpng $in > $out') 611 dot = n.build(built('graph.dot'), 'gendot', ['ninja', 'build.ninja']) variable 612 n.build('graph.png', 'gengraph', dot)
|
/third_party/skia/samplecode/ |
H A D | SampleDegenerateQuads.cpp | 60 SkScalar c = -n.dot(l0); in signed_distance() 61 return n.dot(p) + c; in signed_distance()
|
/third_party/skia/tests/ |
H A D | M44Test.cpp | 77 REPORTER_ASSERT(reporter, a.dot(b) == 1 + 4 + 6); in DEF_TEST() 78 REPORTER_ASSERT(reporter, b.dot(a) == 1 + 4 + 6); in DEF_TEST()
|
/third_party/python/Modules/_decimal/tests/ |
H A D | randdec.py | 67 def dot(): function 81 return ''.join((dot(), digits(maxprec)))
|
/third_party/skia/include/core/ |
H A D | SkM44.h | 43 SkScalar dot(SkV2 v) const { return Dot(*this, v); } in dot() function 85 SkScalar dot(const SkV3& v) const { return Dot(*this, v); } in dot() function
|
/third_party/skia/modules/canvaskit/ |
H A D | matrix.js | 187 CanvasKit.Vector.dot = function(a, b) { 189 throw 'Cannot perform dot product on arrays of different length ('+a.length+' vs '+b.length+')'; 194 return CanvasKit.Vector.dot(v, v);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderBuiltinPrecisionTests.cpp | 3843 return "dot"; in getName() 3860 // Compute the first dot alternative: SUM(a[i]*b[i]), i = 0 .. Size-1 in doExpand() 3865 // using a permutation compute a dot alternative. in doExpand() 3866 // Generates all possible variants fo summation of products in the dot product expansion expression. in doExpand() 3886 return "dot"; in getName() 3896 ExprP<deFloat16> dot (const ExprP<Vector<deFloat16, Size> >& x, const ExprP<Vector<deFloat16, Size> >& y) in dot() function 3901 ExprP<deFloat16> dot (const ExprP<deFloat16>& x, const ExprP<deFloat16>& y) in dot() function 3907 ExprP<float> dot (const ExprP<Vector<float, Size> >& x, const ExprP<Vector<float, Size> >& y) in dot() function 3912 ExprP<float> dot (const ExprP<float>& x, const ExprP<float>& y) in dot() function 3918 ExprP<double> dot (cons function 3923 ExprP<double> dot (const ExprP<double>& x, const ExprP<double>& y) dot() function [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/ |
H A D | intel_dpll_mgr.c | 2120 { .dot = 162000, .p1 = 4, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a /* 32.4 */ }, 2121 { .dot = 270000, .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 /* 27.0 */ }, 2122 { .dot = 540000, .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 /* 27.0 */ }, 2123 { .dot = 216000, .p1 = 3, .p2 = 2, .n = 1, .m1 = 2, .m2 = 0x819999a /* 32.4 */ }, 2124 { .dot = 243000, .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6133333 /* 24.3 */ }, 2125 { .dot = 324000, .p1 = 4, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x819999a /* 32.4 */ }, 2126 { .dot = 432000, .p1 = 3, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x819999a /* 32.4 */ }, 2156 if (crtc_state->port_clock == bxt_dp_clk_val[i].dot) { in bxt_ddi_dp_pll_dividers() 2165 clk_div->dot != crtc_state->port_clock); in bxt_ddi_dp_pll_dividers()
|
/kernel/linux/linux-6.6/ |
H A D | Makefile | 275 no-dot-config-targets := $(clean-targets) \ 282 no-compiler-targets := $(no-dot-config-targets) install dtbs_install \ 284 no-sync-config-targets := $(no-dot-config-targets) %install modules_sign kernelrelease \ 295 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) 296 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) 1710 # Using the singular to avoid running afoul of `no-dot-config-targets`.
|
/third_party/alsa-lib/src/ucm/ |
H A D | parser.c | 887 char *dot = strchr(name, '.'); in strip_legacy_dev_index() local 888 if (!dot) in strip_legacy_dev_index() 890 if (dot[1] != '0' || dot[2] != '\0') { in strip_legacy_dev_index() 895 *dot = '\0'; in strip_legacy_dev_index()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsundelete.c | 165 const ntfschar *p, int plen, BOOL dot) in patmatch() 182 dot = TRUE; in patmatch() 191 dot = TRUE; in patmatch() 202 /* special case "*.*" requires the end or a dot */ in patmatch() 207 && !dot) { in patmatch() 216 if (patmatch(re,f,flen,p,plen,dot)) in patmatch() 164 patmatch(regex_t *re, const ntfschar *f, int flen, const ntfschar *p, int plen, BOOL dot) patmatch() argument
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrRasterizer.cpp | 189 return tcu::dot( v, u1) >= 0 && in vertexOnLineSegment() 190 tcu::dot(-v, u2) >= 0; // dot (A->B, A->V) >= 0 and dot (B->A, B->V) >= 0 in vertexOnLineSegment() 213 const deInt64 dotProduct = dot(v, cornerExitNormal); in lineInCornerAngleRange() 226 const deInt64 dotProduct = dot(v, cornerExitNormal); in lineInCornerOutsideAngleRange() 959 const float t = tcu::dot((pr - pa).asFloat(), (pb - pa).asFloat()) / tcu::lengthSquared(pb.asFloat() - pa.asFloat());
|