/third_party/python/Python/ |
H A D | import.c | 1633 Py_ssize_t dot; in resolve_name() local 1639 dot = PyUnicode_FindChar(package, '.', in resolve_name() 1641 if (dot == -2) { in resolve_name() 1644 else if (dot == -1) { in resolve_name() 1647 PyObject *substr = PyUnicode_Substring(package, 0, dot); in resolve_name() 1850 Py_ssize_t dot; in PyImport_ImportModuleLevelObject() local 1852 dot = PyUnicode_FindChar(name, '.', 0, len, 1); in PyImport_ImportModuleLevelObject() 1853 if (dot == -2) { in PyImport_ImportModuleLevelObject() 1857 if (dot == -1) { in PyImport_ImportModuleLevelObject() 1858 /* No dot i in PyImport_ImportModuleLevelObject() [all...] |
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | genutil.py | 196 def dot(a, b): return a.dot(b) member in GenMath 263 def dot(self, v): member in Scalar 318 return Scalar(math.sqrt(self.dot(self).x)) 381 def dot(self, v): member in Vec2 467 def dot(self, v): member in Vec3 560 def dot(self, v): member in Vec4
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuVectorUtil.hpp | 85 inline float dot (float x, float y) { return (x * y); } in dot() function 127 inline T dot (const Vector<T, Size>& a, const Vector<T, Size>& b) in dot() function 185 return (dot(ref, i) < T(0)) ? n: -n; in faceForward() 191 return i - T(2) * dot(n, i) * n; in reflect() 197 T cosAngle = dot(n, i); in refract()
|
/third_party/node/deps/npm/node_modules/glob/dist/commonjs/ |
H A D | ignore.js | 5 // Ignores are always parsed in dot:true mode 29 dot: true,
|
/third_party/node/deps/npm/node_modules/glob/dist/esm/ |
H A D | ignore.js | 4 // Ignores are always parsed in dot:true mode 26 dot: true,
|
/third_party/python/Tools/demo/ |
H A D | vector.py | 31 and dot product 32 >>> a.dot(b) 83 def dot(self, other): member in Vec 84 "Vector dot product"
|
/third_party/skia/third_party/externals/spirv-tools/tools/cfg/ |
H A D | cfg.cpp | 28 R"(%s - Show the control flow graph in GraphiViz "dot" form. EXPERIMENTAL in print_usage()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/cfg/ |
H A D | cfg.cpp | 28 R"(%s - Show the control flow graph in GraphiViz "dot" form. EXPERIMENTAL in print_usage()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_geometric.hpp | 41 /// Returns the dot product of x and y, i.e., result = x * y. 45 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/dot.xml">GLSL dot man page</a> 48 GLM_FUNC_DECL T dot( 72 /// If dot(Nref, I) < 0.0, return N, otherwise, return -N. 85 /// returns the reflection direction : result = I - 2.0 * dot(N, I) * N.
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | item_kind.rs | 4 use super::dot::DotAttributes;
|
H A D | module.rs | 4 use super::dot::DotAttributes;
|
/third_party/spirv-tools/tools/cfg/ |
H A D | cfg.cpp | 28 R"(%s - Show the control flow graph in GraphiViz "dot" form. EXPERIMENTAL
|
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/ |
H A D | 3d_dm_shadowing_common.h | 41 const float compZ = compareDepth + dot(uvOffset, receiverPlaneDepthBias); in GetPcfSample() 83 const float fSamplingError = 2.0 * dot(vec2(1.0) * texelSize, abs(receiverPlaneDepthBias)); in CalcPcfShadow() 155 const float fSamplingError = 2.0 * dot(vec2(1.0) * texelSize, abs(receiverPlaneDepthBias)); in CalcPcfShadowMed()
|
H A D | 3d_dm_inplace_fog_common.h | 53 const float cameraToPointLengthSqr = dot(cameraToPointVector, cameraToPointVector); in InplaceFogBlock()
|
/third_party/skia/samplecode/ |
H A D | SampleSimpleStroker.cpp | 232 const float cosTheta = before.dot(after); in join() 263 const float cosAlpha = prevUnitTangent.dot(-after); in join() 343 return diff.dot(diff); in squaredLineLength()
|
/third_party/skia/third_party/externals/harfbuzz/util/ |
H A D | ansi-print.hh | 61 int dot (const color_diff_t &o) in dot() function 199 int dd = diff.dot (diff); 202 int d = diff.dot (image (x, y).diff (bgc));
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_server.c | 3042 int i, j, k, dot; in www_body() local 3312 dot = 1; in www_body() 3319 dot = -1; in www_body() 3323 switch (dot) { in www_body() 3325 dot = (e[0] == '.') ? 2 : 0; in www_body() 3328 dot = (e[0] == '.') ? 3 : 0; in www_body() 3331 dot = (e[0] == '/' || e[0] == '\\') ? -1 : 0; in www_body() 3334 if (dot == 0) in www_body() 3335 dot = (e[0] == '/' || e[0] == '\\') ? 1 : 0; in www_body() 3337 dot in www_body() [all...] |
/third_party/openssl/apps/ |
H A D | s_server.c | 3037 int i, j, k, dot; in www_body() local 3307 dot = 1; in www_body() 3314 dot = -1; in www_body() 3318 switch (dot) { in www_body() 3320 dot = (e[0] == '.') ? 2 : 0; in www_body() 3323 dot = (e[0] == '.') ? 3 : 0; in www_body() 3326 dot = (e[0] == '/' || e[0] == '\\') ? -1 : 0; in www_body() 3329 if (dot == 0) in www_body() 3330 dot = (e[0] == '/' || e[0] == '\\') ? 1 : 0; in www_body() 3332 dot in www_body() [all...] |
/third_party/tzdata/ |
H A D | localtime.c | 439 char const *dot; in tzloadbody() local 452 for (dot = name; (dot = strchr(dot, '.')); dot++) in tzloadbody() 453 if ((dot == name || dot[-1] == '/') && dot[1] == '.' in tzloadbody() 454 && (dot[2] == '/' || !dot[ in tzloadbody() [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | unistr.c | 1536 static const ntfschar dot = const_cpu_to_le16('.'); local 1562 if (((len == 3) || (name[3] == dot)) 1570 if (((len == 3) || (name[3] == dot)) 1576 if (((len == 3) || (name[3] == dot)) 1585 && ((len == 4) || (name[4] == dot)) 1594 && ((len == 4) || (name[4] == dot))
|
/third_party/skia/src/utils/ |
H A D | SkPolyUtils.cpp | 108 SkScalar v0dotv0 = v0.dot(v0); in compute_intersection() 111 SkScalar v1dotv1 = v1.dot(v1); in compute_intersection() 125 tNumer = v1.dot(-w); in compute_intersection() 133 sNumer = v0.dot(w); in compute_intersection() 139 SkScalar v1dotv1 = v1.dot(v1); in compute_intersection() 146 sNumer = v0.dot(w + v1); in compute_intersection() 156 tNumer = v1.dot(-w); in compute_intersection() 290 localS *= v0.dot(v0); in computeCrossingDistance() 476 SkScalar rCos = v1.dot(v2); in SkComputeRadialSteps()
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
H A D | loadimage_etc.cpp | 758 const int dot = pixel.R * direction[0] + pixel.G * direction[1] + in matchBC1Bits() local 762 (static_cast<float>(dot - stops[1]) / (stops[0] - stops[1])) * 2 + in matchBC1Bits() 792 const int dot = in matchBC1Bits() local 796 (static_cast<float>(dot - stops[1]) / (stops[0] - stops[1])) * 3 + in matchBC1Bits() 1107 int dot = pixel.R * vr + pixel.G * vg + pixel.B * vb; in selectEndPointPCA() local 1108 if (dot < minD) in selectEndPointPCA() 1110 minD = dot; in selectEndPointPCA() 1113 if (dot > maxD) in selectEndPointPCA() 1115 maxD = dot; in selectEndPointPCA()
|
/third_party/mesa3d/.gitlab-ci/common/ |
H A D | init-stage2.sh | 66 wget -S --progress=dot:giga -O /lava-files/${KERNEL_IMAGE_NAME} \
|
/third_party/mesa3d/src/gallium/frontends/clover/util/ |
H A D | algebra.hpp | 154 dot(U &&u, V &&v) { in dot() function
|
/third_party/skia/src/gpu/tessellate/ |
H A D | Tessellation.h | 38 AI float dot(float2 a, float2 b) { in dot() function
|