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

1234567891011>>

/external/clang/test/ARCMT/whitelisted/
H A Dheader1.h5 +(id)i1; variable
/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));
/external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.cnstr/
H A Ddefault.pass.cpp25 I i1; local
26 assert(i1 == I());
/external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/
H A Ddefault.pass.cpp25 I i1; local
26 assert(i1 == I());
/external/clang/test/CodeGenCXX/
H A Ddebug-info-indirect-field-decl.cpp9 int i1; member in struct:Bar
/external/libcxx/test/std/depr/depr.c.headers/
H A Dinttypes_h.pass.cpp919 imaxdiv_t i1 = {}; local
920 ((void)i1); // Prevent unused warning
/external/libcxx/test/std/input.output/file.streams/c.files/
H A Dcinttypes.pass.cpp919 std::imaxdiv_t i1 = {}; local
920 ((void)i1); // Prevent unused warning
/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/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.swap/
H A Ddb_swap_1.pass.cpp33 std::unordered_multiset<int>::iterator i1 = c1.begin(); local
37 c2.erase(i1);
38 std::unordered_multiset<int>::iterator j = i1;
39 c1.erase(i1);
/external/libcxx/test/std/containers/unord/unord.set/unord.set.swap/
H A Ddb_swap_1.pass.cpp33 std::unordered_set<int>::iterator i1 = c1.begin(); local
37 c2.erase(i1);
38 std::unordered_set<int>::iterator j = i1;
39 c1.erase(i1);
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
H A Dmake_tuple.pass.cpp48 constexpr int i1 = std::get<1>(t1); local
50 static_assert (i1 == 1, "" );
/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DDuplicateSampleAbscissaException.java35 * @param i1 index of one entry having the duplicate abscissa
38 public DuplicateSampleAbscissaException(double abscissa, int i1, int i2) { argument
40 abscissa, i1, i2);
/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.cpp15 int i1 = f<1>(0); // expected-error{{call to 'f' is ambiguous}} variable
/external/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h7 A(I i1, I i2) { argument
/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);

Completed in 1017 milliseconds

1234567891011>>