Searched defs:i1 (Results 1 - 25 of 181) sorted by relevance

12345678

/external/clang/test/Sema/
H A Dunused-expr-system-header.c3 void f(int i1, int i2) { argument
6 COMMA_MACRO_1(i1 == i2, f(i1, i2)); // expected-warning {{comparison result unused}} \
8 COMMA_MACRO_2(i1 == i2, f(i1, i2));
9 COMMA_MACRO_3(i1 == i2, f(i1, i2)); // expected-warning {{comparison result unused}} \
11 COMMA_MACRO_4(i1 == i2, f(i1, i2));
H A Dattr-unused.c23 Int_unused i1; // expected-warning {{'Int_unused' was marked unused but was used}} local
/external/clang/test/CXX/expr/
H A Dp3.cpp14 int i1 = a + b; local
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp3.cpp4 int &i1 = 0x123_x1; variable
H A Dp4.cpp4 int &i1 = 0.123_x1; variable
H A Dp5.cpp7 double &i1 = "foo"_x1; variable
H A Dp6.cpp6 double &i1 = 'a'_x1; // expected-error {{no matching literal operator}} variable
/external/clang/test/Parser/
H A Dnamelookup-bug-2.c6 struct Object {int i1; } *P; member in struct:Object
/external/clang/test/SemaCXX/
H A Daddress-space-references.cpp13 static int_1 i1; local
17 f0(i1);
H A Dattr-unused.cpp7 ns_not_unused::Int_not_unused i1; // expected-warning {{unused variable}} local
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
H A Dp2.cpp17 namespace i1 { namespace in namespace:test0
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dp9.cpp5 int i1 = f<1>(0); // expected-error{{ambiguous}} variable
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stackdepot_test.cc22 u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1)); local
24 const uptr *sp1 = StackDepotGet(i1, &sz1);
37 u32 i1 = StackDepotPut(0, 0); local
39 const uptr *sp1 = StackDepotGet(i1, &sz1);
51 u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1)); local
53 EXPECT_EQ(i1, i2);
55 const uptr *sp1 = StackDepotGet(i1, &sz1);
63 u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1)); local
66 EXPECT_NE(i1, i2);
/external/fdlibm/
H A Ds_ceil.c38 int i0,i1,j0; local
41 i1 = __LO(x);
46 if(i0<0) {i0=0x80000000;i1=0;}
47 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
51 if(((i0&i)|i1)==0) return x; /* x is integral */
54 i0 &= (~i); i1=0;
62 if((i1&i)==0) return x; /* x is integral */
67 j = i1 + (1<<(52-j0));
68 if(j<i1) i
[all...]
H A Ds_floor.c38 int i0,i1,j0; local
41 i1 = __LO(x);
46 if(i0>=0) {i0=i1=0;}
47 else if(((i0&0x7fffffff)|i1)!=0)
48 { i0=0xbff00000;i1=0;}
52 if(((i0&i)|i1)==0) return x; /* x is integral */
55 i0 &= (~i); i1=0;
63 if((i1&i)==0) return x; /* x is integral */
68 j = i1+(1<<(52-j0));
69 if(j<i1) i
[all...]
H A Ds_modf.c39 int i0,i1,j0; local
42 i1 = __LO(x); /* low x */
51 if(((i0&i)|i1)==0) { /* x is integral */
69 if((i1&i)==0) { /* x is integral */
76 __LOp(iptr) = i1&(~i);
H A Ds_rint.c44 unsigned i,i1; local
48 i1 = __LO(x);
52 if(((i0&0x7fffffff)|i1)==0) return x;
53 i1 |= (i0&0x0fffff);
55 i0 |= ((i1|-i1)>>12)&0x80000;
64 if(((i0&i)|i1)==0) return x; /* x is integral */
66 if(((i0&i)|i1)!=0) {
67 if(j0==19) i1 = 0x40000000; else
76 if((i1
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Ddefault-arguments.cpp5 int i1 = l1(1); local
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp43 int *i1 = second_arg<float *>(0, (int*)0, 0); local
/external/clang/test/CodeGen/
H A Datomics-inlining.c8 unsigned int i1, i2; variable
23 (void)__atomic_load(&i1, &i2, memory_order_seq_cst);
29 // PPC32: load atomic i32* @i1 seq_cst
35 // PPC64: load atomic i32* @i1 seq_cst
41 // MIPS32: load atomic i32* @i1 seq_cst
47 // MIPS64: load atomic i32* @i1 seq_cst
H A Dms_struct-bitfield-init.c36 int i1; member in struct:__anon4422
64 if (t3.i1 != 1 || t3.i4 != 4)
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-references.cpp5 int i1, i2; member in struct:reference::A
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp19 T f1(T t1, U u1, int i1) argument
21 T t2 = i1;
22 t2 = i1 + u1;
27 i1 = t1[u1];
28 i1 *= t1;
30 i1(u1, t1); // error
31 u1(i1, t1);
33 U u2 = (T)i1;
35 dynamic_cast<U>(const_cast<T>(i1)))));
37 new U(i1, t
[all...]
/external/dropbear/libtomcrypt/testprof/
H A Dpkcs_1_test.c9 unsigned long x, y, l1, l2, l3, i1, i2, lparamlen, saltlen, modlen; local
66 buf[0][i1 = abs(rand()) % l3] ^= 1;
69 buf[0][i1] ^= 1;
/external/chromium/chrome/browser/net/
H A Dquoted_printable.cc109 int i1 = HexDigitToInt(c2); local
111 char r = static_cast<char>(((i1 << 4) & 0xF0) | (i2 & 0x0F));

Completed in 334 milliseconds

12345678