Searched defs:dot (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/lib/Script/
H A DTernaryOp.cpp42 uint64_t dot = m_pOperand[0]->value(); local
47 alignAddress(dot, maxPageSize);
49 form1 = dot + (dot & (maxPageSize - 1));
50 form2 = dot + (dot & (maxPageSize - commonPageSize));
/frameworks/base/libs/hwui/
H A DVector.h98 float dot(const Vector2& v) const { function in struct:android::uirenderer::Vector2
/frameworks/base/media/mca/filterpacks/native/base/
H A Dvec_types.h91 T dot(const Vec<T,dim> &x, const Vec<T,dim> &y) { function in namespace:android::filterfw
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h37 const char dot = '.'; member in namespace:mcld::sys::fs
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp109 SkScalar dot = v->dotWithNormal(x, y, z); local
110 return SkScalarToFloat(dot);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringHash.h281 unsigned int dot = 0; local
287 ++dot;
311 result |= (dot << 28);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp348 // fixupDotSymbols - ensure the dot symbols are valid
352 // fixup the 1st explicit dot assignment if needed
354 Output::dot_iterator dot = (*it)->find_first_explicit_dot(); local
355 if (dot != (*it)->dot_end() &&
356 (*dot).symbol().isDot() &&
357 (*dot).getRpnExpr().hasDot()) {
362 Output::dot_iterator ref = (*it)->dotAssignments().insert(dot, assign);
363 for (RpnExpr::iterator tok = (*dot).getRpnExpr().begin(),
364 tokEnd = (*dot).getRpnExpr().end(); tok != tokEnd; ++tok) {
368 } // for each token in the RHS expr of the dot assignmen
374 Output::dot_iterator dot = (*it)->find_last_explicit_dot(); local
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.cpp35 const char *dot = fileName + strlen(fileName); local
36 const char *slash = dot - 1;
41 if ((*slash == '.') && (*dot == 0)) {
42 dot = slash;
47 return string(slash, dot - slash);
69 const char *dot = rsFileName + strlen(rsFileName); local
70 const char *slash = dot - 1;
75 if ((*slash == '.') && (*dot == 0)) {
76 dot = slash;
83 for (; (i < 255) && (slash < dot);
[all...]
/frameworks/native/include/ui/
H A DTVecHelpers.h351 T PURE dot(const BASE<T>& lv, const BASE<RT>& rv) { function in class:android::TVecFunctions
360 return sqrt( dot(lv, lv) );
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp119 uint32_t dot :1; // [12] member in struct:android::renderscript::__anon1486::__anon1487
258 // Look for a dot product where the r,g,b colums are the same
264 if (!key.u.addMask) key.u.dot = 1;
366 DEF_SYM(dot)
472 if (key.u.dot)
507 if (!key.u.dot) {
683 // If we have a dot product, perform the special pack.
684 if (key.u.dot) {
686 ADD_CHUNK(dot);
725 key.u.dot
[all...]
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dstochastic_linear_ranker.h177 const double dot = weight_.DotProduct(sample); local
182 return dot;
184 return pow(kernel_gain_ * dot + kernel_bias_, kernel_param_);
188 return exp(-1 * kernel_param_ * (w_square + s_square - 2 * dot));
213 // the dot product while calculating the kernel function. Kernel param is
/frameworks/native/libs/input/
H A DVelocityTracker.cpp468 float dot = vectorDot(&q[j][0], &q[i][0], m); local
470 q[j][h] -= dot * q[i][h];
/frameworks/rs/driver/runtime/
H A Drs_cl.c931 extern float __attribute__((overloadable)) dot(float lhs, float rhs) { function
934 extern float __attribute__((overloadable)) dot(float2 lhs, float2 rhs) { function
937 extern float __attribute__((overloadable)) dot(float3 lhs, float3 rhs) { function
940 extern float __attribute__((overloadable)) dot(float4 lhs, float4 rhs) { function
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2219 SectionMap::Output::dot_iterator dot; local
2231 // process dot assignments between 2 output sections
2254 } else if ((dot = (*out)->find_last_explicit_dot()) != (*out)->dot_end()) {
2256 vma = (*dot).symbol().value();
2347 // process dot assignments in the output section
2373 } // for each dot assignment
2534 // when section ordering is fixed, now we can make sure dot assignments are
/frameworks/native/services/inputflinger/
H A DInputReader.cpp5180 // Calculate the dot product of the displacement vectors.
5183 // approches 1.0. Recall that dot(v1, v2) = cos(angle) * mag(v1) * mag(v2).
5190 float dot = dx1 * dx2 + dy1 * dy2; local
5191 float cosine = dot / (dist1 * dist2); // denominator always > 0

Completed in 5136 milliseconds