Searched refs:c1 (Results 1 - 25 of 381) sorted by relevance

1234567891011>>

/external/oprofile/libutil++/tests/
H A Dcomma_list_tests.cpp28 comma_list<int> c1; local
30 check(c1, 1, true);
32 c1.set("2");
34 check(c1, 2, true);
35 check(c1, 3, false);
37 c1.set("3");
39 check(c1, 2, false);
40 check(c1, 3, true);
42 c1.set("2,3");
44 check(c1,
[all...]
/external/valgrind/main/exp-ptrcheck/tests/
H A Djustify.c14 char *c0, *c1; local
17 c1 = malloc(10000);
18 assert(c0 && c1);
H A Dzero.c8 char c, *c0 = malloc(0), *c1; local
17 c1 = c0;
21 c = *c1; // bad, dangling
/external/clang/test/Parser/
H A Dc1x-alignas.c3 _Alignas(4) char c1; variable
/external/jdiff/src/jdiff/
H A DCompareClassPdiffs.java17 ClassDiff c1 = (ClassDiff)obj1;
19 if (c1.pdiff < c2.pdiff)
21 if (c1.pdiff > c2.pdiff)
23 return c1.name_.compareTo(c2.name_);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateTest.java66 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
69 assertTrue(c1.hashCode() == c2.hashCode());
77 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
80 assertTrue((c1.hashCode() == c2.hashCode()) && c1.equals(c2));
89 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
90 assertEquals("TEST_TYPE", c1.getType());
98 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
99 assertTrue(c1.equals(c1));
[all...]
/external/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c111 BN_ULONG c1=0; local
113 if (num <= 0) return(c1);
117 mul_add(rp[0],ap[0],w,c1);
118 mul_add(rp[1],ap[1],w,c1);
119 mul_add(rp[2],ap[2],w,c1);
120 mul_add(rp[3],ap[3],w,c1);
125 mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1;
126 mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1;
135 BN_ULONG c1=0; local
356 BN_ULONG c1,c2,c3; local
460 BN_ULONG c1,c2,c3; local
500 BN_ULONG c1,c2,c3; local
576 BN_ULONG c1,c2,c3; local
[all...]
H A Ds390x.S329 #define c1 %r1 define
333 #define mul_add_c(ai,bi,c1,c2,c3) \
336 algr c1,%r7; \
347 lghi c1,0
352 mul_add_c(0,0,c1,c2,c3);
353 stg c1,0*8(%r2)
354 lghi c1,0
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,c
[all...]
/external/openssl/crypto/bn/
H A Dbn_asm.c73 BN_ULONG c1=0; local
76 if (num <= 0) return(c1);
81 mul_add(rp[0],ap[0],w,c1);
82 mul_add(rp[1],ap[1],w,c1);
83 mul_add(rp[2],ap[2],w,c1);
84 mul_add(rp[3],ap[3],w,c1);
90 mul_add(rp[0],ap[0],w,c1);
94 return(c1);
99 BN_ULONG c1=0; local
102 if (num <= 0) return(c1);
565 BN_ULONG c1,c2,c3; local
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 BN_ULONG c1,c2,c3; local
849 BN_ULONG c0,c1,ml,*tp,n0; local
988 BN_ULONG c0,c1,*tp,n0=*n0p; local
[all...]
/external/clang/test/SemaCXX/
H A Dcxx-member-pointer-op.cpp12 C c1; local
13 c1.*pmfc(); // expected-error {{invalid use of pointer to member type after .*}}
15 c1.*((pmfc())); // expected-error {{invalid use of pointer to member type after .*}}
H A Dbuiltin-ptrtomember-overload-1.cpp37 void foo1(C1 c1, int A::* pmf) { argument
38 int i = c1->*pmf;
39 c1->*pmf = 10;
42 void foo1(C1 c1, int E::* pmf) { argument
43 int i = c1->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
/external/valgrind/main/memcheck/tests/
H A Dleak-cycle.c39 struct n *volatile c1, *volatile c2; local
44 c1 = mkcycle();
47 c1 = c2 = 0;
50 c1 = mkcycle();
55 if (c1 < c2)
56 c2->r = c1;
58 c1->r = c2;
60 c1 = c2 = 0;
63 c1 = mkcycle();
66 c1
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
H A DEllipticCurve_ImplTest.java45 EllipticCurve c2=null, c1 =
49 assertFalse(c1.equals(c2));
52 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)),
58 assertFalse(c1.equals(c2) || c2.equals(c1));
61 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)),
67 assertFalse(c1.equals(c2) || c2.equals(c1));
70 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)),
76 assertFalse(c1
[all...]
/external/clang/test/Sema/
H A Dattr-cleanup.c3 void c1(int *a);
5 extern int g1 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored}}
6 int g2 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored}}
7 static int g3 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored}}
14 static int v3 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored}}
18 int v5 __attribute((cleanup(c1)));
/external/v8/test/mjsunit/regress/
H A Dregress-753.js34 var obj = {a1: {b1: [1,2,3,4], b2: {c1: 1, c2: 2}},a2: 'a2'};
/external/valgrind/main/massif/tests/
H A Dnew-cpp.cpp21 char* c1 = new char[2000]; local
25 delete [] c1;
/external/libvpx/vp8/encoder/
H A Ddct.c17 int a1, b1, c1, d1; local
25 c1 = ((ip[1] - ip[2])<<3);
31 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
32 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
44 c1 = ip[4] - ip[8];
50 op[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0);
51 op[12] = (d1 * 2217 - c1 * 5352 + 51000)>>16;
67 int a1, b1, c1, d1; local
77 c1 = ((ip[1] - ip[3])<<2);
81 op[1] = b1 + c1;
[all...]
/external/bison/lib/
H A Dstrverscmp.c65 unsigned char c1, c2; local
98 c1 = *p1++;
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
103 while ((diff = c1 - c2) == 0 && c1 != '\0')
106 c1 = *p1++;
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
/external/blktrace/
H A Dstrverscmp.c93 unsigned char c1, c2; local
126 c1 = *p1++;
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
134 c1 = *p1++;
136 state |= (c1 == '0') + (isdigit (c1) != 0);
/external/apache-http/src/org/apache/http/cookie/
H A DCookieIdentityComparator.java51 public int compare(final Cookie c1, final Cookie c2) { argument
52 int res = c1.getName().compareTo(c2.getName());
55 String d1 = c1.getDomain();
/external/chromium/chrome/browser/ui/views/
H A Dtheme_helpers.h24 SkColor* c1, SkColor* c2);
/external/clang/test/CodeGen/
H A Dconstant-comparison.c5 int *c1 = 1 < 2 ? &a : &b; variable
/external/libffi/testsuite/libffi.call/
H A Dstruct5.c11 char c1; member in struct:__anon6113
17 ts1.c1 += ts2.c1;
52 ts5_arg1.c1 = 2;
54 ts5_arg2.c1 = 5;
59 CHECK(ts5_result->c1 == 7);
/external/v8/test/mjsunit/bugs/
H A D618.js32 var c1 = new C1();
33 assertEquals(23, c1.x);
34 assertEquals("undefined", typeof c1.y);
39 var c1 = new C1();
40 assertEquals("undefined", typeof c1.x);
41 assertEquals(23, c1.y);
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetTest.java75 Charset c1 = Charset.forName("US-ASCII");
89 // assertSame(Charset.forName("US-ASCII"), c1);
444 MockCharset c1 = new MockCharset("mock", null);
445 assertEquals(0, c1.compareTo(c1));
448 assertEquals(0, c1.compareTo(c2));
451 assertTrue(c1.compareTo(c2) < 0);
452 assertTrue(c2.compareTo(c1) > 0);
455 assertTrue(c1.compareTo(c2) > 0);
456 assertTrue(c2.compareTo(c1) <
[all...]

Completed in 701 milliseconds

1234567891011>>