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

12345

/external/clang/test/CXX/expr/
H A Dp3.cpp14 int i1 = a + b; local
/external/clang/test/Parser/
H A Dnamelookup-bug-2.c5 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 Dcxx0x-initializer-aggregates.cpp8 int i1; member in struct:aggregate::S::T
12 int i1; member in struct:aggregate::S::U
H A Dconvert-to-bool.cpp52 int& i1 = ecr; // expected-error{{non-const lvalue reference to type 'int' cannot bind to a value of unrelated type 'ExplicitConvToRef'}} local
H A Dlinkage-spec.cpp15 int& i1 = g(x); local
H A Doverload-call-copycon.cpp9 int& i1 = copycon(x); local
29 int& i1 = copycon2(b); local
40 int& i1 = copycon3(b); local
H A Doverload-member-call.cpp28 int &i1 = f(0); local
40 int& i1 = xc.f(0); 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/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/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp42 int *i1 = second_arg<float *>(0, (int*)0, 0); local
/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/clang/test/CodeGen/
H A Dms_struct-bitfield-init.c36 int i1; member in struct:__anon3359
64 if (t3.i1 != 1 || t3.i4 != 4)
H A Dms_struct-bitfield.c96 int i1; member in struct:__anon3368
/external/clang/test/Sema/
H A Dattr-unused.c23 Int_unused i1; // expected-warning {{'Int_unused' was marked unused but was used}} local
H A Dtentative-decls.c22 int i1 = 1; // expected-note {{previous definition is here}} variable
23 int i1 = 2; // expected-error {{redefinition of 'i1'}} variable
24 int i1; variable
25 int i1; variable
H A Dcomplex-int.c57 int i1[(2+3i)*(5+7i) == 29i-11 ? 1 : -1]; variable
/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));
/external/stlport/test/unit/
H A Diter_test.cpp131 vector<bool>::iterator i1 = boolVector.begin(); local
135 bool v0 = *i1;
138 iter_swap( i1, i2 );
140 CPPUNIT_ASSERT(( *i1 == v1 && *i2 == v0 ));
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer.h148 Iterator1 i1 = begin1; local
150 while (i1 != end1 && i2 != end2) {
151 if (*i1 == *i2)
153 if (*i1 > *i2)
156 ++i1;

Completed in 494 milliseconds

12345