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

12 3 4 5 6 7 8 91011>>

  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
mct.c 70 OPJ_INT32* restrict c0,
77 OPJ_INT32 r = c0[i];
83 c0[i] = y;
93 OPJ_INT32* restrict c0,
100 OPJ_INT32 y = c0[i];
106 c0[i] = r;
123 OPJ_INT32* restrict c0,
130 OPJ_INT32 r = c0[i];
136 c0[i] = y;
146 OPJ_FLOAT32* restrict c0,
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/shaders/compiled/
componentmaskps.h 17 // mult c0 1
26 mov r1, c0
  /external/llvm/test/MC/ARM/
thumb-only-conditionals.s 29 mcrne p0, #0, r0, c0, c0, #0
30 mcr2ne p0, #0, r0, c0, c0, #0
32 @ CHECK-NEXT: mcrne p0, #0, r0, c0, c0, #0
33 @ CHECK-NEXT: mcr2ne p0, #0, r0, c0, c0, #0
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
damerau_levenshtein_edit_distance_policy.h 34 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]); local
36 return (c0 == c1) ? 0.0f : 1.0f;
48 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]); local
50 if (index0 > 0 && index1 > 0 && c0 == CharUtils::toBaseLowerCase(mString1[index1 - 1])
  /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/eigen/Eigen/src/Householder/
Householder.h 77 Scalar c0 = coeff(0); local
79 if(tailSqNorm == RealScalar(0) && numext::imag(c0)==RealScalar(0))
82 beta = numext::real(c0);
87 beta = sqrt(numext::abs2(c0) + tailSqNorm);
88 if (numext::real(c0)>=RealScalar(0))
90 essential = tail / (c0 - beta);
91 tau = conj((beta - c0) / beta);
  /external/eigen/test/
product_notemporary.cpp 55 Index c0 = internal::random<Index>(4,cols-8), local
56 c1 = internal::random<Index>(8,cols-c0),
71 VERIFY_EVALUATION_COUNT(( m3.block(r0,r0,r1,r1).noalias() += -m1.block(r0,c0,r1,c1) * (s2*m2.block(r0,c0,r1,c1)).adjoint() ), 0);
72 VERIFY_EVALUATION_COUNT(( m3.block(r0,r0,r1,r1).noalias() -= s1 * m1.block(r0,c0,r1,c1) * m2.block(c0,r0,c1,r1) ), 0);
75 VERIFY_EVALUATION_COUNT(( m3.block(r0,r0,r1,r1).noalias() = s1 * m1.block(r0,c0,r1,c1) * (s1*m2).block(c0,r0,c1,r1) ), 1);
85 VERIFY_EVALUATION_COUNT( rm3.col(c0).noalias() = (s1 * m1.adjoint()).template triangularView<UnitUpper>() * (s2*m2.row(c0)).adjoint(), 1)
    [all...]
  /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...]
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 587 * @param c0 code unit to write
589 protected static void write(AnnotatedOutput out, short c0) {
590 out.writeShort(c0);
597 * @param c0 code unit to write
600 protected static void write(AnnotatedOutput out, short c0, short c1) {
601 out.writeShort(c0);
609 * @param c0 code unit to write
613 protected static void write(AnnotatedOutput out, short c0, short c1,
615 out.writeShort(c0);
624 * @param c0 code unit to writ
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 589 * @param c0 code unit to write
591 protected static void write(AnnotatedOutput out, short c0) {
592 out.writeShort(c0);
599 * @param c0 code unit to write
602 protected static void write(AnnotatedOutput out, short c0, short c1) {
603 out.writeShort(c0);
611 * @param c0 code unit to write
615 protected static void write(AnnotatedOutput out, short c0, short c1,
617 out.writeShort(c0);
626 * @param c0 code unit to writ
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jquant2.c 104 * pointer corresponds to a C0 value (typically 2^5 = 32 pointers) and
303 int c0,c1,c2; local
313 for (c0 = c0min; c0 <= c0max; c0++)
315 histp = & histogram[c0][c1][c2min];
318 boxp->c0min = c0min = c0;
324 for (c0 = c0max; c0 >= c0min; c0--
412 int c0,c1,c2,cmax; local
491 int c0,c1,c2; local
907 register int c0, c1, c2; local
    [all...]
  /external/jpeg/
jquant2.c 121 * pointer corresponds to a C0 value (typically 2^5 = 32 pointers) and
320 int c0,c1,c2; local
330 for (c0 = c0min; c0 <= c0max; c0++)
332 histp = & histogram[c0][c1][c2min];
335 boxp->c0min = c0min = c0;
341 for (c0 = c0max; c0 >= c0min; c0--
429 int c0,c1,c2,cmax; local
507 int c0,c1,c2; local
923 register int c0, c1, c2; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jquant2.c 121 * pointer corresponds to a C0 value (typically 2^5 = 32 pointers) and
320 int c0,c1,c2; local
330 for (c0 = c0min; c0 <= c0max; c0++)
332 histp = & histogram[c0][c1][c2min];
335 boxp->c0min = c0min = c0;
341 for (c0 = c0max; c0 >= c0min; c0--
429 int c0,c1,c2,cmax; local
507 int c0,c1,c2; local
923 register int c0, c1, c2; local
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
Sample2PtRadial.cpp 32 SkPoint c0 = { 0, 0 }; local
36 SkShader* s = SkGradientShader::CreateTwoPointRadial(c0, r0, c1, r1, colors,
  /external/skia/samplecode/
Sample2PtRadial.cpp 32 SkPoint c0 = { 0, 0 }; local
36 SkShader* s = SkGradientShader::CreateTwoPointRadial(c0, r0, c1, r1, colors,
  /external/chromium_org/third_party/skia/src/core/
SkQuadClipper.cpp 22 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2,
28 SkScalar A = c0 - c1 - c1 + c2;
29 SkScalar B = 2*(c1 - c0);
30 SkScalar C = c0 - target;
  /external/skia/src/core/
SkQuadClipper.cpp 22 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2,
28 SkScalar A = c0 - c1 - c1 + c2;
29 SkScalar B = 2*(c1 - c0);
30 SkScalar C = c0 - target;
  /external/chromium_org/third_party/skia/tools/
skdiff.cpp 143 static inline bool colors_match_thresholded(SkPMColor c0, SkPMColor c1, const int threshold) {
144 int da = SkGetPackedA32(c0) - SkGetPackedA32(c1);
145 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1);
146 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1);
147 int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
179 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); local
181 SkPMColor outputDifference = diffFunction(c0, c1);
182 uint32_t thisA = SkAbs32(SkGetPackedA32(c0) - SkGetPackedA32(c1));
183 uint32_t thisR = SkAbs32(SkGetPackedR32(c0) - SkGetPackedR32(c1));
184 uint32_t thisG = SkAbs32(SkGetPackedG32(c0) - SkGetPackedG32(c1))
    [all...]
  /external/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
move.pass.cpp 47 C c0(7,
52 C c = std::move(c0);
65 assert(c0.empty());
83 C c0(a, a + sizeof(a)/sizeof(a[0]),
89 C c = std::move(c0);
106 assert(c0.empty());
125 C c0(7,
130 C c = std::move(c0);
143 assert(c0.empty());
161 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]
  /external/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
move.pass.cpp 46 C c0(7,
51 C c = std::move(c0);
63 assert(c0.empty());
81 C c0(a, a + sizeof(a)/sizeof(a[0]),
87 C c = std::move(c0);
103 assert(c0.empty());
122 C c0(7,
127 C c = std::move(c0);
139 assert(c0.empty());
157 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]
move_alloc.pass.cpp 47 C c0(a, a + sizeof(a)/sizeof(a[0]),
53 C c(std::move(c0), A(12));
77 assert(c0.empty());
96 C c0(a, a + sizeof(a)/sizeof(a[0]),
102 C c(std::move(c0), A(10));
118 assert(c0.empty());
138 C c0(a, a + sizeof(a)/sizeof(a[0]),
144 C c(std::move(c0), A());
168 assert(c0.empty());
187 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]
  /external/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
move.pass.cpp 46 C c0(7,
51 C c = std::move(c0);
63 assert(c0.empty());
81 C c0(a, a + sizeof(a)/sizeof(a[0]),
87 C c = std::move(c0);
103 assert(c0.empty());
122 C c0(7,
127 C c = std::move(c0);
139 assert(c0.empty());
157 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]
  /external/skia/tools/
skdiff.cpp 143 static inline bool colors_match_thresholded(SkPMColor c0, SkPMColor c1, const int threshold) {
144 int da = SkGetPackedA32(c0) - SkGetPackedA32(c1);
145 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1);
146 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1);
147 int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
179 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); local
181 SkPMColor outputDifference = diffFunction(c0, c1);
182 uint32_t thisA = SkAbs32(SkGetPackedA32(c0) - SkGetPackedA32(c1));
183 uint32_t thisR = SkAbs32(SkGetPackedR32(c0) - SkGetPackedR32(c1));
184 uint32_t thisG = SkAbs32(SkGetPackedG32(c0) - SkGetPackedG32(c1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
move.pass.cpp 47 C c0(7,
52 C c = std::move(c0);
65 assert(c0.empty());
83 C c0(a, a + sizeof(a)/sizeof(a[0]),
89 C c = std::move(c0);
106 assert(c0.empty());
125 C c0(7,
130 C c = std::move(c0);
143 assert(c0.empty());
161 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
move.pass.cpp 46 C c0(7,
51 C c = std::move(c0);
63 assert(c0.empty());
81 C c0(a, a + sizeof(a)/sizeof(a[0]),
87 C c = std::move(c0);
103 assert(c0.empty());
122 C c0(7,
127 C c = std::move(c0);
139 assert(c0.empty());
157 C c0(a, a + sizeof(a)/sizeof(a[0])
    [all...]

Completed in 538 milliseconds

12 3 4 5 6 7 8 91011>>