HomeSort by relevance Sort by last modified time
    Searched defs:ax (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/Inputs/include_next/x/
a.h 2 enum { ax = 1 }; enumerator in enum:__anon7709
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
h3lis331dl.js 43 var ax, ay, az; variable
44 ax = digitalAccelerometer.new_floatp();
59 myDigitalAccelerometer.getAcceleration(ax, ay, az);
60 outputStr = "Acceleration: AX = "
61 + roundNum(digitalAccelerometer.floatp_value(ax), 6)
85 digitalAccelerometer.delete_floatp(ax);
mma7660.js 49 var ax, ay, az; variable
50 ax = digitalAccelerometer.new_floatp();
64 myDigitalAccelerometer.getAcceleration(ax, ay, az);
66 + roundNum(digitalAccelerometer.floatp_value(ax), 6)
90 digitalAccelerometer.delete_floatp(ax);
  /external/ceres-solver/internal/ceres/
gradient_checker_test.cc 76 double ax = 0; local
79 ax += a_[j][u] * parameters[j][u];
85 double f = *residuals = exp(-ax);
129 double ax = 0; local
132 ax += a_[j][u] * parameters[j][u];
138 double f = *residuals = exp(-ax);
gradient_checking_cost_function_test.cc 92 double ax = 0; local
95 ax += a_[j][u] * parameters[j][u];
101 double f = *residuals = exp(-ax);
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
h3lis331dl.cxx 57 float ax, ay, az; local
62 accel->getAcceleration(&ax, &ay, &az);
66 cout << "Acceleration: AX = " << ax << " AY = " << ay << " AZ = " << az
mma7660.cxx 69 float ax, ay, az; local
71 accel->getAcceleration(&ax, &ay, &az);
72 cout << "Acceleration: x = " << ax
  /hardware/bsp/intel/peripheral/libupm/examples/python/
h3lis331dl.py 55 ax = upmH3LIS331DL.new_floatp() variable
69 myDigitalAccelerometer.getAcceleration(ax, ay, az)
70 outputStr = ("Acceleration: AX = {0}"
72 " AZ = {2}").format(upmH3LIS331DL.floatp_value(ax),
mma7660.py 61 ax = upmMMA7660.new_floatp() variable
74 myDigitalAccelerometer.getAcceleration(ax, ay, az)
77 "g z = {2}g").format(upmMMA7660.floatp_value(ax),
  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 39 A1<Array<int, 17>::type> ax; variable
  /external/eigen/demos/opengl/
gpuhelper.cpp 63 Vector3f ax = Matrix3f::Identity().col(2).cross(vec); local
64 ax.normalize();
69 glRotatef(angle, ax.x(), ax.y(), ax.z());
84 Vector3f ax = Matrix3f::Identity().col(2).cross(vec); local
85 ax.normalize();
90 glRotatef(angle, ax.x(), ax.y(), ax.z())
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 59 ActiveInput ax = x.template cast<ActiveScalar>(); local
67 ax[i].derivatives() = DerivativeType::Unit(this->inputs(),i);
69 Functor::operator()(ax, &av);
  /external/skia/tests/
ColorTest.cpp 33 int ax = SkMulDiv255Ceiling(x, a); local
34 REPORTER_ASSERT(reporter, ax <= a);
PathOpsSimplifyTrianglesThreadedTest.cpp 19 int ax = state.fA & 0x03; local
42 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
52 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
79 int ax = a & 0x03; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
PathOpsSimplifyDegenerateThreadedTest.cpp 18 int ax = state.fA & 0x03; local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
49 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
74 int ax = a & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
PathOpsSimplifyQuadThreadedTest.cpp 19 int ax = state.fA & 0x03; local
41 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
57 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 19 int ax = state.fA & 0x03; local
41 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_log1p.c 105 int32_t k,hx,hu,ax; local
108 ax = hx&0x7fffffff;
112 if(ax>=0x3ff00000) { /* x <= -1.0 */
116 if(ax<0x3e200000) { /* |x| < 2**-29 */
118 &&ax<0x3c900000) /* |x| < 2**-54 */
s_log1pf.c 43 int32_t k,hx,hu,ax; local
46 ax = hx&0x7fffffff;
50 if(ax>=0x3f800000) { /* x <= -1.0 */
54 if(ax<0x38000000) { /* |x| < 2**-15 */
56 &&ax<0x33800000) /* |x| < 2**-24 */
  /external/fdlibm/
s_log1p.c 107 int k,hx,hu,ax; local
110 ax = hx&0x7fffffff;
114 if(ax>=0x3ff00000) { /* x <= -1.0 */
118 if(ax<0x3e200000) { /* |x| < 2**-29 */
120 &&ax<0x3c900000) /* |x| < 2**-54 */
  /external/boringssl/src/crypto/x509/
x509_trs.c 287 X509_CERT_AUX *ax; local
288 ax = x->aux;
289 if(!ax) return X509_TRUST_UNTRUSTED;
290 if(ax->reject) {
291 for(i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
292 obj = sk_ASN1_OBJECT_value(ax->reject, i);
296 if(ax->trust) {
297 for(i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
298 obj = sk_ASN1_OBJECT_value(ax->trust, i);
  /external/clang/test/SemaCXX/
atomic-type.cpp 91 _Atomic(X) ax = { X(0) }; member in namespace:copy_init
  /external/deqp/framework/common/
tcuTexVerifierUtil.cpp 66 const float ax = de::abs(x); local
75 if (ay+ey < ax-ex && az+ez < ax-ex)
80 else if (ax+ex < ay-ey && az+ez < ay-ey)
85 else if (ax+ex < az-ez && ay+ey < az-ez)
93 if (ax > ex)
  /external/eigen/Eigen/src/Core/
StableNorm.h 99 RealScalar ax = abs(it.value()); local
100 if(ax > ab2) abig += numext::abs2(ax*s2m);
101 else if(ax < b1) asml += numext::abs2(ax*s1m);
102 else amed += numext::abs2(ax);
  /external/eigen/bench/
bench_norm.cpp 35 Scalar ax = internal::abs(v.coeff(i)); local
36 if (scale >= ax)
38 ssq += internal::abs2(ax/scale);
42 ssq = Scalar(1) + ssq * internal::abs2(scale/ax);
43 scale = ax;
146 Packet ax = internal::pabs(v.template packet<Aligned>(j));
147 Packet ax_s2m = internal::pmul(ax,ps2m);
148 Packet ax_s1m = internal::pmul(ax,ps1m);
149 Packet maskBig = internal::plt(pb2,ax);
150 Packet maskSml = internal::plt(ax,pb1)
    [all...]

Completed in 780 milliseconds

1 2 3 4 5