Searched defs:dot (Results 76 - 100 of 129) sorted by relevance

123456

/external/chromium_org/ui/events/gesture_detection/
H A Dgesture_detector.cc247 // Check the dot product of current velocities.
263 const float dot = vx1 * vx2 + vy1 * vy2; local
264 if (dot < 0) {
/external/deqp/modules/gles2/scripts/
H A Dgenutil.py174 def dot(a, b): return a.dot(b) member in class:GenMath
241 def dot(self, v): member in class:Scalar
296 return Scalar(math.sqrt(self.dot(self).x))
359 def dot(self, v): member in class:Vec2
445 def dot(self, v): member in class:Vec3
538 def dot(self, v): member in class:Vec4
/external/deqp/modules/gles3/scripts/
H A Dgenutil.py184 def dot(a, b): return a.dot(b) member in class:GenMath
267 def dot(self, v): member in class:Scalar
354 return Scalar(math.sqrt(self.dot(self).x))
421 def dot(self, v): member in class:Vec2
532 def dot(self, v): member in class:Vec3
652 def dot(self, v): member in class:Vec4
/external/deqp/modules/gles31/scripts/
H A Dgenutil.py184 def dot(a, b): return a.dot(b) member in class:GenMath
267 def dot(self, v): member in class:Scalar
356 return Scalar(math.sqrt(self.dot(self).x))
423 def dot(self, v): member in class:Vec2
534 def dot(self, v): member in class:Vec3
654 def dot(self, v): member in class:Vec4
/external/dnsmasq/src/
H A Ddhcp.c989 char *dot = strchr(hostname, '.'); local
991 if (!dot)
994 *dot = 0; /* truncate */
995 if (strlen(dot+1) != 0)
996 return dot+1;
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h128 /** \returns the dot product of \c *this and \a other
129 * Geometrically speaking, the dot product of two unit quaternions
133 template<class OtherDerived> inline Scalar dot(const QuaternionBase<OtherDerived>& other) const { return coeffs().dot(other.coeffs()); } function in class:Eigen::QuaternionBase
577 Scalar c = v1.dot(v0);
579 // if dot == -1, vectors are nearly opposites
663 * \sa dot()
672 Scalar d = abs(this->dot(other));
695 Scalar d = this->dot(other);
/external/fsck_msdos/
H A Ddir.c451 int dot, dotdot; local
452 dot = dotdot = 0;
494 dot=1;
507 if (!dot || !dotdot) {
508 if (!dot)
550 int dot,dotdot; local
551 dot = dotdot = 0;
918 a dot (.) entry that points to itself, and a dot-dot (
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp497 size_t dot = Filename.find_last_of("."); local
498 if (dot == std::string::npos)
501 Filename.erase(dot);
/external/oprofile/opjitconv/
H A Dopjitconv.c421 char const * dot = index(++fname, '.'); local
422 if (!dot)
424 proc_id_length = dot - fname;
/external/skia/experimental/Intersection/
H A DDataTypes.h237 double dot(const _Vector& a) const { function in struct:_Vector
/external/skia/tools/
H A Dskimage_main.cpp638 const char* dot = strrchr(srcPath, '.'); local
639 if (NULL != dot) {
640 format = guess_format_from_suffix(dot);
/external/stlport/src/
H A Dnum_put_float.cpp758 char static_buf[limits::max_exponent10 + 6]; // 6: -xxx.yyyE-zzz (sign, dot, E, exp sign, \0)
875 const ctype<wchar_t>& ct, wchar_t dot, bool __check_dot) {
878 //First loop, check the dot char
884 out += dot;
895 //Second loop, dot has been found, no check anymore
905 __adjust_float_buffer(__iostring &str, char dot) { argument
906 if ('.' != dot) {
909 str[__dot_pos] = dot;
874 __convert_float_buffer( __iostring const& str, __iowstring &out, const ctype<wchar_t>& ct, wchar_t dot, bool __check_dot) argument
/external/chromium_org/base/files/
H A Dfile_path.cc369 const StringType::size_type dot = ExtensionSeparatorPosition(base.path_); local
370 if (dot == StringType::npos)
373 return base.path_.substr(dot, StringType::npos);
378 const StringType::size_type dot = FinalExtensionSeparatorPosition(base.path_); local
379 if (dot == StringType::npos)
382 return base.path_.substr(dot, StringType::npos);
389 const StringType::size_type dot = ExtensionSeparatorPosition(path_); local
390 if (dot == StringType::npos)
393 return FilePath(path_.substr(0, dot));
400 const StringType::size_type dot local
[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));
H A Dbezier.c396 float dot = (orig->x1 - orig->x2)*(orig->x3 - orig->x4) + local
398 if (dot < 0 && dot*dot < 0.8*l)
/external/chromium_org/third_party/skia/src/core/
H A DSkStroke.cpp33 // if the dot-product is -1, then we are definitely too pinchy. We tweak
43 SkScalar dot = SkPoint::DotProduct(norm0, norm1);
44 return dot <= kTooPinchyNormalDotProd;
271 SkScalar dot = SkPoint::DotProduct(unitNormalAB, *unitNormalBC); local
273 SkScalarSqrt((SK_Scalar1 + dot)/2))));
349 SkScalar dot = SkPoint::DotProduct(unitNormalAB, unitBC); local
351 SkScalarSqrt((SK_Scalar1 + dot)/2))));
352 dot = SkPoint::DotProduct(*unitNormalCD, unitBC);
354 SkScalarSqrt((SK_Scalar1 + dot)/2))));
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadIntersection.cpp205 double dot = dxy1.dot(dxy2); local
206 if (dot < 0) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddeep-heap-profile.cc350 char* dot = strchr(hostname, '.'); local
351 if (dot != NULL)
352 *dot = '\0';
/external/chromium_org/ui/gfx/
H A Dcanvas.cc140 // have a dot pattern out of phase to each other).
153 uint32_t* dot = dots->getAddr32(0, 0); local
157 dot[i * row_pixels + u] = color;
/external/jemalloc/src/
H A Dctl.c727 const char *elm, *tdot, *dot; local
733 dot = ((tdot = strchr(elm, '.')) != NULL) ? tdot : strchr(elm, '\0');
734 elen = (size_t)((uintptr_t)dot - (uintptr_t)elm);
789 if (*dot != '\0') {
803 if (*dot == '\0') {
808 elm = &dot[1];
809 dot = ((tdot = strchr(elm, '.')) != NULL) ? tdot :
811 elen = (size_t)((uintptr_t)dot - (uintptr_t)elm);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dmachine.c731 char *dot = strrchr(dent->d_name, '.'), local
736 if (dot == NULL || strcmp(dot, ".ko"))
739 (int)(dot - dent->d_name), dent->d_name);
929 char *name, *dot; local
937 dot = strrchr(name, '.');
938 if (dot == NULL)
941 "[%.*s]", (int)(dot - name), name);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.c219 double dot = vector_dot(v0, v1); local
223 return acos(dot / (norm0 * norm1));
H A Dbezier.c396 float dot = (orig->x1 - orig->x2)*(orig->x3 - orig->x4) + local
398 if (dot < 0 && dot*dot < 0.8*l)
/external/skia/src/core/
H A DSkStroke.cpp33 // if the dot-product is -1, then we are definitely too pinchy. We tweak
43 SkScalar dot = SkPoint::DotProduct(norm0, norm1);
44 return dot <= kTooPinchyNormalDotProd;
271 SkScalar dot = SkPoint::DotProduct(unitNormalAB, *unitNormalBC); local
273 SkScalarSqrt((SK_Scalar1 + dot)/2))));
349 SkScalar dot = SkPoint::DotProduct(unitNormalAB, unitBC); local
351 SkScalarSqrt((SK_Scalar1 + dot)/2))));
352 dot = SkPoint::DotProduct(*unitNormalCD, unitBC);
354 SkScalarSqrt((SK_Scalar1 + dot)/2))));
/external/skia/src/pathops/
H A DSkDQuadIntersection.cpp205 double dot = dxy1.dot(dxy2); local
206 if (dot < 0) {

Completed in 457 milliseconds

123456