HomeSort by relevance Sort by last modified time
    Searched defs:c0 (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /hardware/qcom/display/msm8974/libqdutils/
qdMetaData.h 50 uint16_t c0[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
  /hardware/qcom/display/msm8x26/libqdutils/
qdMetaData.h 50 uint16_t c0[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
124 c0=e/a;
129 min4_c0= -4.0*c0;
144 ns=lz_through2*lz_through2-c0;
169 double c0,c1,c2,c3; local
196 c0=e/a;
201 min4_c0= -4.0*c0;
216 ns=lz_through2*lz_through2-c0;
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
124 c0=e/a;
129 min4_c0= -4.0*c0;
144 ns=lz_through2*lz_through2-c0;
169 double c0,c1,c2,c3; local
196 c0=e/a;
201 min4_c0= -4.0*c0;
216 ns=lz_through2*lz_through2-c0;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
124 c0=e/a;
129 min4_c0= -4.0*c0;
144 ns=lz_through2*lz_through2-c0;
169 double c0,c1,c2,c3; local
196 c0=e/a;
201 min4_c0= -4.0*c0;
216 ns=lz_through2*lz_through2-c0;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 129 int c0 = colors[i]; local
131 int a = ave(Color.alpha(c0), Color.alpha(c1), p);
132 int r = ave(Color.red(c0), Color.red(c1), p);
133 int g = ave(Color.green(c0), Color.green(c1), p);
134 int b = ave(Color.blue(c0), Color.blue(c1), p);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 146 int c0 = colors[i]; local
148 int a = ave(Color.alpha(c0), Color.alpha(c1), p);
149 int r = ave(Color.red(c0), Color.red(c1), p);
150 int g = ave(Color.green(c0), Color.green(c1), p);
151 int b = ave(Color.blue(c0), Color.blue(c1), p);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_asm.c 436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
437 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
438 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
439 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
442 #define mul_add_c(a,b,c0,c1,c2) \
446 c0=(c0+t1)&BN_MASK2; if ((c0) < t1) t2++;
849 BN_ULONG c0,c1,ml,*tp,n0; local
988 BN_ULONG c0,c1,*tp,n0=*n0p; local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 70 C<long long>::E c0 = C<long long>::E::e3; member in struct:C
  /external/clang/test/SemaCXX/
scope-check.cpp 68 C c0; local
85 C c0; local
105 C c0; local
215 C c0 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}} local
227 const C c0 = 17; local
230 const C &c2 = c0;
  /external/openssl/crypto/bn/
bn_asm.c 436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
437 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
438 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
439 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
442 #define mul_add_c(a,b,c0,c1,c2) \
446 c0=(c0+t1)&BN_MASK2; if ((c0) < t1) t2++;
849 BN_ULONG c0,c1,ml,*tp,n0; local
988 BN_ULONG c0,c1,*tp,n0=*n0p; local
    [all...]
  /external/skia/tests/
RegionTest.cpp 148 bool c0 = a.contains(b); local
150 REPORTER_ASSERT(reporter, c0 == c1);
155 c0 = a.contains(r);
157 REPORTER_ASSERT(reporter, c0 == c1);
176 bool c0 = a.intersects(b); local
178 REPORTER_ASSERT(reporter, c0 == c1);
  /frameworks/av/services/audioflinger/
AudioResamplerSinc.cpp 827 int32_t c0 = coefs[0]; local
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 197 int c0 = colors[i]; local
204 // comparing the original (c0) with the returned color is tricky,
207 int a0 = Color.alpha(c0);
211 int r0 = Color.red(c0);
216 int g0 = Color.green(c0);
221 int b0 = Color.blue(c0);
228 android.util.Log.d("skia", "original " + Integer.toHexString(c0) +
  /frameworks/rs/
rsMatrix4x4.cpp 44 int c0 = (i+1) % 4; local
52 (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
53 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
54 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
86 int c0 = (i+1) % 4; local
93 float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
94 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
95 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 304 __c_node* c0 = i0 != nullptr ? i0->__c_ : nullptr; local
308 if (c != c0)
315 if (c0 != nullptr)
317 i->__c_ = c0;
  /packages/apps/Camera2/src/com/android/camera/crop/
GeometryMathUtils.java 58 float c0 = line2[0]; local
66 float t4 = c0 - d0;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 44 float c0 = -1.0f; local
52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1);
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5);
64 mCubes[9] = new Cube(world, c0, c2, c0, c1, c3, c1);
65 mCubes[10] = new Cube(world, c2, c2, c0, c3, c3, c1)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 82 CommonTree c0, c1, c2; local
83 r0.addChild(c0=new CommonTree(new CommonToken(101)));
89 assertEquals(r0, c0.parent);
90 assertEquals(0, c0.childIndex);
104 CommonTree c0, c1, c2; local
105 r0.addChild(c0=new CommonTree(new CommonToken(101)));
114 assertEquals(root, c0.parent);
115 assertEquals(0, c0.childIndex);
116 assertEquals(root, c0.parent);
118 assertEquals(root, c0.parent)
130 CommonTree c0, c1, c2; local
254 CommonTree c0 = new CommonTree(new CommonToken(99, "b")); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CurrencyTest.java 42 Currency c0 = Currency.getInstance("CAD"); local
46 c1 == c0);
50 c2 == c0);
54 c3 == c0);
56 c0 = Currency.getInstance("JPY");
60 c1 == c0);
64 c2 == c0);
68 c3 == c0);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 77 int c0 = c; local
78 int c1 = c0 + dcdy;
82 mask |= ((c0 + 0 * dcdx) >> 31) & (1 << 0);
83 mask |= ((c0 + 1 * dcdx) >> 31) & (1 << 1);
84 mask |= ((c0 + 2 * dcdx) >> 31) & (1 << 2);
85 mask |= ((c0 + 3 * dcdx) >> 31) & (1 << 3);
  /external/chromium_org/v8/src/
json-parser.h 134 uint8_t c0 = input_chars[i]; local
135 if (c0 != expected_chars[i] ||
136 c0 == '"' || c0 < 0x20 || c0 == '\\') {
714 uc32 c0 = c0_; local
716 if (c0 == '\\') {
717 c0_ = c0;
724 if (c0 < 0x20) return Handle<String>::null();
725 if (static_cast<uint32_t>(c0) >
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 501 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
504 Scalar c0 = m(0,0)*m(1,1)*m(2,2) + Scalar(2)*m(1,0)*m(2,0)*m(2,1) - m(0,0)*m(2,1)*m(2,1) - m(1,1)*m(2,0)*m(2,0) - m(2,2)*m(1,0)*m(1,0); local
515 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
  /external/llvm/lib/Support/
raw_ostream.cpp 244 int c0 = buf[len - 1]; local
246 isdigit(static_cast<unsigned char>(c0))) {
249 buf[len - 2] = c0;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 77 int c0 = c; local
78 int c1 = c0 + dcdy;
82 mask |= ((c0 + 0 * dcdx) >> 31) & (1 << 0);
83 mask |= ((c0 + 1 * dcdx) >> 31) & (1 << 1);
84 mask |= ((c0 + 2 * dcdx) >> 31) & (1 << 2);
85 mask |= ((c0 + 3 * dcdx) >> 31) & (1 << 3);

Completed in 1141 milliseconds

12 3 4 5