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

1 2 3 4 5 6 7 8

  /external/clang/test/Sema/
pointer-conversion.c 7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} variable
attr-cleanup.c 27 void c3(struct s a);
32 int v2 __attribute__((cleanup(c3))); // expected-error {{'cleanup' function 'c3' parameter has type 'struct s' which is incompatible with type 'int *'}}
  /external/openssl/crypto/bn/asm/
s390x.S 331 #define c3 %r8 define
333 #define mul_add_c(ai,bi,c1,c2,c3) \
338 alcgr c3,zero
349 lghi c3,0
352 mul_add_c(0,0,c1,c2,c3);
356 mul_add_c(0,1,c2,c3,c1);
357 mul_add_c(1,0,c2,c3,c1);
361 mul_add_c(2,0,c3,c1,c2);
362 mul_add_c(1,1,c3,c1,c2);
363 mul_add_c(0,2,c3,c1,c2)
    [all...]
x86_64-gcc.c 356 BN_ULONG c1,c2,c3; local
360 c3=0;
361 mul_add_c(a[0],b[0],c1,c2,c3);
364 mul_add_c(a[0],b[1],c2,c3,c1);
365 mul_add_c(a[1],b[0],c2,c3,c1);
368 mul_add_c(a[2],b[0],c3,c1,c2);
369 mul_add_c(a[1],b[1],c3,c1,c2);
370 mul_add_c(a[0],b[2],c3,c1,c2);
371 r[2]=c3;
372 c3=0
460 BN_ULONG c1,c2,c3; local
500 BN_ULONG c1,c2,c3; local
576 BN_ULONG c1,c2,c3; local
    [all...]
bn-mips.s 759 multu $12,$8 # mul_add_c(a[0],b[0],c1,c2,c3);
769 multu $12,$9 # mul_add_c(a[0],b[1],c2,c3,c1);
778 multu $13,$8 # mul_add_c(a[1],b[0],c2,c3,c1);
787 multu $14,$8 # mul_add_c(a[2],b[0],c3,c1,c2);
797 multu $13,$9 # mul_add_c(a[1],b[1],c3,c1,c2);
804 multu $12,$10 # mul_add_c(a[0],b[2],c3,c1,c2);
812 multu $12,$11 # mul_add_c(a[0],b[3],c1,c2,c3);
817 sw $7,2*4($4) # r[2]=c3;
823 multu $13,$10 # mul_add_c(a[1],b[2],c1,c2,c3);
831 multu $14,$9 # mul_add_c(a[2],b[1],c1,c2,c3);
    [all...]
sparcv8.S 568 umul a_0,b_0,c_1 !=!mul_add_c(a[0],b[0],c1,c2,c3);
573 umul a_0,b_1,t_1 !=!mul_add_c(a[0],b[1],c2,c3,c1);
580 umul a_1,b_0,t_1 !mul_add_c(a[1],b[0],c2,c3,c1);
587 umul a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
593 umul a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
599 umul a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
604 st c_3,rp(2) !r[2]=c3;
606 umul a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
611 umul a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
617 umul a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
    [all...]
sparcv8plus.S 678 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
683 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
689 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
697 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
703 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
708 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
713 stuw t_1,rp(2) !r[2]=c3;
716 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
721 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
726 mulx a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
    [all...]
  /external/clang/test/Parser/
c1x-alignas.c 6 char _Alignas(16) c3;
  /external/openssl/crypto/bn/
bn_asm.c 565 BN_ULONG c1,c2,c3; local
569 c3=0;
570 mul_add_c(a[0],b[0],c1,c2,c3);
573 mul_add_c(a[0],b[1],c2,c3,c1);
574 mul_add_c(a[1],b[0],c2,c3,c1);
577 mul_add_c(a[2],b[0],c3,c1,c2);
578 mul_add_c(a[1],b[1],c3,c1,c2);
579 mul_add_c(a[0],b[2],c3,c1,c2);
580 r[2]=c3;
581 c3=0
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 BN_ULONG c1,c2,c3; local
    [all...]
  /external/clang/test/CodeGen/
constant-comparison.c 7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair.c 75 int c3 = pData[i+3]; local
76 pData[i+0] = (OMX_S16)(c0+c1+c2+c3);
77 pData[i+1] = (OMX_S16)(c0+c1-c2-c3);
78 pData[i+2] = (OMX_S16)(c0-c1-c2+c3);
79 pData[i+3] = (OMX_S16)(c0-c1+c2-c3);
88 int c3 = pData[i+12]; local
89 pData[i+0] = (OMX_S16)(c0+c1+c2+c3);
90 pData[i+4] = (OMX_S16)(c0+c1-c2-c3);
91 pData[i+8] = (OMX_S16)(c0-c1-c2+c3);
92 pData[i+12] = (OMX_S16)(c0-c1+c2-c3);
    [all...]
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 12 Constant<int*, &x> *c3; variable
  /external/skia/src/utils/
SkCubicInterval.cpp 10 static SkScalar eval_cubic(SkScalar c1, SkScalar c2, SkScalar c3,
12 return SkScalarMul(SkScalarMul(SkScalarMul(c3, t) + c2, t) + c1, t);
15 static SkScalar find_cubic_t(SkScalar c1, SkScalar c2, SkScalar c3,
23 SkScalar x = eval_cubic(c1, c2, c3, t);
45 C3 = t^3: 3b - 3c + 1
47 ((C3*t + C2)*t + C1)*t
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 47 float c3 = 0.32f; local
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3);
58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3);
61 mCubes[7] = new Cube(world, c2, c4, c4, c3, 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/chromium/chrome/browser/net/
quoted_printable.cc 92 char c3 = *(++iter); local
93 if (c2 == '\r' && c3 == '\n') {
98 if (!IsHexDigit(c2) || !IsHexDigit(c3)) {
100 "chars: " << c2 << " " << c3; local
105 output->append(1, c3);
110 int i2 = HexDigitToInt(c3);
  /external/valgrind/main/massif/tests/
alloc-fns.c 14 void c3(int n) { c4(n); } function
15 void c2(int n) { c3(n); }
  /frameworks/av/include/media/stagefright/
Utils.h 27 #define FOURCC(c1, c2, c3, c4) \
28 (c1 << 24 | c2 << 16 | c3 << 8 | c4)
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/client/api/
LintDriverTest.java 35 ClassEntry c3 = new ClassEntry(new File("/a1/Foo$Inner1$Inner.class"), null, null, null); local
39 List<ClassEntry> expected = Arrays.asList(c0, c1, c2, c3, c4, c5);
44 List<ClassEntry> list2 = Arrays.asList(c5, c4, c3, c2, c1, c0);
48 List<ClassEntry> list3 = Arrays.asList(c3, c0, c1, c5, c2, c4);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
121 c3=b/a;
126 c3through2=c3/2.0;
127 c3through4=c3/4.0;
128 c3c3through4_min_c2=c3*c3through4-c2;
132 k1=c1*c3+min4_c0;
169 double c0,c1,c2,c3; local
193 c3=b/a;
198 c3through2=c3/2.0;
199 c3through4=c3/4.0
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
121 c3=b/a;
126 c3through2=c3/2.0;
127 c3through4=c3/4.0;
128 c3c3through4_min_c2=c3*c3through4-c2;
132 k1=c1*c3+min4_c0;
169 double c0,c1,c2,c3; local
193 c3=b/a;
198 c3through2=c3/2.0;
199 c3through4=c3/4.0
    [all...]
  /external/proguard/src/proguard/io/
ManifestRewriter.java 110 int c3 = super.read(); local
111 if (c3 == ' ')
117 buffer[bufferSize++] = (char)c3;
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnClassifier.cpp 42 const FloatPoint& c3)
51 FloatPoint3D b3(c3.x(), c3.y(), 1.0f);
LoopBlinnClassifier.h 72 // at c3, and affected by control points c1 and c2.
76 const FloatPoint& c3);
  /external/clang/test/CodeGenCXX/
array-operator-delete-call.cpp 57 COST c3; local
  /external/clang/test/Misc/
diag-aka-types.cpp 14 char c3 = aut; // expected-error{{from 'X' to 'char'}} variable

Completed in 812 milliseconds

1 2 3 4 5 6 7 8