HomeSort by relevance Sort by last modified time
    Searched refs:gx (Results 1 - 25 of 40) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
tls-tbss64.s 1 .global gx
4 .type gx, @object
5 .size gx, 64
6 gx: label
tls-e-80.d 58 0+10 g \.tbss 0+40 gx
78 800a0: 6fae 1800 0000 move\.d 18 <gx\+0x8>,\$r10
87 800b8: 6fae 1400 0000 move\.d 14 <gx\+0x4>,\$r10
  /prebuilts/go/darwin-x86/test/
reorder.go 24 var gx []int var
27 return gx[i]
63 gx = x
71 gx = x
72 x[1], y[0] = gx[0], gx[1]
sinit.go 158 var gx float64 var
228 // var copy_gx = gx
  /prebuilts/go/linux-x86/test/
reorder.go 24 var gx []int var
27 return gx[i]
63 gx = x
71 gx = x
72 x[1], y[0] = gx[0], gx[1]
sinit.go 158 var gx float64 var
228 // var copy_gx = gx
  /cts/apps/CtsVerifier/jni/verifier/
com_android_cts_verifier_camera_StatsImage.cpp 55 for (int gx = 0; gx < ngx; gx++) {
62 unsigned char *pbuf = buf + 2*y*paw + 2*gx*gw + 2*aax;
63 for (int x = aax+gx*gw; x < aax+(gx+1)*gw; x++) {
77 mean[gy*ngx*4 + gx*4 + ch] = m;
78 var[gy*ngx*4 + gx*4 + ch] = mSq - m*m;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
sobeloperator.cpp 86 int gx = static_cast<int>(*(gxPtr + 3 * i + c) / 8 + 127.5); local
90 gx = 2 * gx - 255;
93 double value = sqrt(gx * gx + gy * gy);
98 (atan(static_cast<double>(gy)/static_cast<double>(gx)) + 3.14) / 6.28);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
EyePosition.java 113 private void onAccelerometerChanged(float gx, float gy, float gz) {
115 float x = gx, y = gy, z = gz;
118 case Surface.ROTATION_90: x = -gy; y= gx; break;
119 case Surface.ROTATION_180: x = -gx; y = -gy; break;
120 case Surface.ROTATION_270: x = gy; y = -gx; break;
144 private void onGyroscopeChanged(float gx, float gy, float gz) {
146 float distance = (gx > 0 ? gx : -gx) + (gy > 0 ? gy : - gy);
165 float x = -gy, y = -gx;
    [all...]
  /external/clang/test/Index/
index-refs.cpp 3 extern int gx;
11 NS::MyInt NS::gx = EnumVal; member in class:NS
76 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: gx
80 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: gx
  /cts/tests/tests/keystore/src/android/keystore/cts/
ECCurves.java 110 BigInteger gx,
116 ECPoint generator = new ECPoint(gx, gy);
  /external/libvpx/libvpx/vpx_dsp/
fastssim.c 257 unsigned gx; \
259 gx = gx_buf[((j + (_joffs)) & 7) * stride + i + (_ioffs)]; \
261 col_sums_gx2[(_col)] = gx * (double)gx; \
263 col_sums_gxgy[(_col)] = gx * (double)gy; \
268 unsigned gx; \
270 gx = gx_buf[((j + (_joffs)) & 7) * stride + i + (_ioffs)]; \
272 col_sums_gx2[(_col)] += gx * (double)gx; \
274 col_sums_gxgy[(_col)] += gx * (double)gy;
348 unsigned gx; local
    [all...]
  /external/bison/build-aux/
update-b4-copyright 52 while (/($old_re)/gx)
88 /$1-$3/gx;
  /external/skia/tests/
PathOpsSimplifyQuadThreadedTest.cpp 33 int gx = g & 0x03; local
47 path.quadTo(SkIntToScalar(gx), SkIntToScalar(gy),
60 pathStr.appendf(" path.quadTo(%d, %d, %d, %d);\n", gx, gy, hx, hy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 33 int gx = g & 0x03; local
47 path.lineTo(SkIntToScalar(gx), SkIntToScalar(gy));
61 pathStr.appendf(" path.lineTo(%d, %d);\n", gx, gy);
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 207 gx = new char[4];
769 char gx[]; field in class:vt320
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
EcdhTest.java 435 final BigInteger gx; // x-coordinate of the generator field in class:EcdhTest.EcPublicKeyTestVector
448 BigInteger gx,
459 this.gx = gx;
474 ECPoint g = new ECPoint(gx, gy);
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
d3basics.c     [all...]
priv_d3basics.h 608 added before use, and 0 if the GX is this is not necessary (is
623 void ML_(pp_GX) ( const GExpr* gx );
650 /* Evaluate a guarded expression. If regs is NULL, then gx is assumed
653 to True (iow, gx is a single unconditional expression). If regs is
660 NULL but the frame base is still needed, then evaluation of gx as a
662 GXResult ML_(evaluate_GX)( const GExpr* gx, const GExpr* fbGX,
684 GXResult ML_(evaluate_trivial_GX)( const GExpr* gx, const DebugInfo* di );
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_shader.cpp 101 vec4 texture2DGrad(sampler2D s, in vec2 uv, vec2 gx, vec2 gy) { return texture2D(s, uv); }
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 164 final float gx = -sx * m; local
173 final float ax = gx * invm;
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 198 float gx = ((float)x + 0.5f) / cellWidth; local
200 return tcu::Vec2(deFloatFrac(gx), deFloatFrac(gy));
  /external/wycheproof/java/com/google/security/wycheproof/
EcUtil.java 79 final BigInteger gx = new BigInteger(hexGX, 16); local
84 ECPoint g = new ECPoint(gx, gy);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 378 __m128 pf, g0, g1, g2, g3, gx, p0, p1; local
390 gx = _mm_loadu_ps((const float *)gptr + r);
394 g0 = _mm_shuffle_ps(gx, gx, _MM_SHUFFLE(0, 0, 0, 0));
396 g1 = _mm_shuffle_ps(gx, gx, _MM_SHUFFLE(1, 1, 1, 1));
398 g2 = _mm_shuffle_ps(gx, gx, _MM_SHUFFLE(2, 2, 2, 2));
400 g3 = _mm_shuffle_ps(gx, gx, _MM_SHUFFLE(3, 3, 3, 3))
    [all...]
  /cts/apps/CameraITS/pymodules/its/
image.py 780 [gy, gx] = numpy.gradient(luma)
781 return numpy.average(numpy.sqrt(gy*gy + gx*gx))

Completed in 1501 milliseconds

1 2