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

1 2 3 4 5 6 7 8 9

  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.cons/
move_assign.pass.cpp 33 std::deque<MoveOnly, A> c3(A(5));
34 c3 = std::move(c1);
35 assert(c2 == c3);
37 assert(c3.get_allocator() == A(5));
49 std::deque<MoveOnly, A> c3(A(6));
50 c3 = std::move(c1);
51 assert(c2 == c3);
53 assert(c3.get_allocator() == A(6));
65 std::deque<MoveOnly, A> c3(A(6));
66 c3 = std::move(c1)
    [all...]
move.pass.cpp 33 std::deque<MoveOnly, A> c3 = std::move(c1); local
34 assert(c2 == c3);
36 assert(c3.get_allocator() == c1.get_allocator());
48 std::deque<MoveOnly, A> c3 = std::move(c1); local
49 assert(c2 == c3);
51 assert(c3.get_allocator() == c1.get_allocator());
move_alloc.pass.cpp 33 std::deque<MoveOnly, A> c3(std::move(c1), A(3));
34 assert(c2 == c3);
35 assert(c3.get_allocator() == A(3));
48 std::deque<MoveOnly, A> c3(std::move(c1), A(1));
49 assert(c2 == c3);
50 assert(c3.get_allocator() == A(1));
63 std::deque<MoveOnly, A> c3(std::move(c1), A(3));
64 assert(c2 == c3);
65 assert(c3.get_allocator() == A(3));
  /external/clang/test/CodeGen/
constant-comparison.c 7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
arm-abi-vector.c 32 __int2 c3 = va_arg(ap, __int2); local
33 sum = sum + c3.x + c3.y;
58 __char3 c3 = va_arg(ap, __char3); local
59 sum = sum + c3.x + c3.y;
182 __short3 c3 = va_arg(ap, __short3); local
183 sum = sum + c3.x + c3.y;
251 StructWithVec c3 = va_arg(ap, StructWithVec) local
    [all...]
  /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/compiler-rt/lib/tsan/lit_tests/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon7122
18 G = S.c1 + S.c3;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
merge.pass.cpp 29 C c3(std::begin(t3), std::end(t3));
30 assert(c1 == c3);
merge_pred.pass.cpp 30 C c3(std::begin(t3), std::end(t3));
31 assert(c1 == c3);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.member.ops/
assignment_complex.pass.cpp 29 std::complex<X> c3(3.5, -4.5);
30 c = c3;
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 12 Constant<int*, &x> *c3; variable
  /external/skia/legacy/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
  /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); }

Completed in 287 milliseconds

1 2 3 4 5 6 7 8 9