HomeSort by relevance Sort by last modified time
    Searched defs:i1 (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/ARCMT/whitelisted/
header1.h 2 @interface I1 : NSObject
5 +(id)i1; variable
  /external/chromium_org/third_party/skia/experimental/Intersection/
Intersections.cpp 20 int i1 = 0; local
23 while (i1 < fUsed && !(fIsCoincident[fSwap] & (1 << i1))) {
24 ++i1;
26 if (i1 == fUsed) {
29 SkASSERT(i1 < fUsed);
30 int iEnd1 = i1 + 1;
35 double cs1 = fT[fSwap][i1];
37 bool s1in = between(cs1, s1, ce1) || startPt.approximatelyEqual(fPt[i1])
39 bool e1in = between(cs1, e1, ce1) || endPt.approximatelyEqual(fPt[i1])
    [all...]
  /external/libcxx/test/depr/depr.c.headers/
inttypes_h.pass.cpp 634 imaxdiv_t i1 = {0}; local
  /external/libcxx/test/re/re.iter/re.regiter/re.regiter.cnstr/
default.pass.cpp 24 I i1; local
25 assert(i1 == I());
  /external/libcxx/test/re/re.iter/re.tokiter/re.tokiter.cnstr/
default.pass.cpp 24 I i1; local
25 assert(i1 == I());
  /external/clang/test/CodeGenCXX/
debug-info-indirect-field-decl.cpp 9 int i1; member in struct:Bar
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceil.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
42 if(i0<0) {i0=0x80000000;i1=0;}
43 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
47 if(((i0&i)|i1)==0) return x; /* x is integral */
50 i0 &= (~i); i1=0;
58 if((i1&i)==0) return x; /* x is integral */
63 j = i1 + (1<<(52-j0));
64 if(j<i1) i0+=1; /* got a carry *
    [all...]
s_floor.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
42 if(i0>=0) {i0=i1=0;}
43 else if(((i0&0x7fffffff)|i1)!=0)
44 { i0=0xbff00000;i1=0;}
48 if(((i0&i)|i1)==0) return x; /* x is integral */
51 i0 &= (~i); i1=0;
59 if((i1&i)==0) return x; /* x is integral */
64 j = i1+(1<<(52-j0));
65 if(j<i1) i0 +=1 ; /* got a carry *
    [all...]
s_trunc.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
43 i1 = 0;
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 i0 &= (~i); i1=0;
57 if((i1&i)==0) return x; /* x is integral */
59 i1 &= (~i);
61 INSERT_WORDS(x,i0,i1);
  /external/clang/test/CXX/expr/
p3.cpp 14 int i1 = a + b; local
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p3.cpp 4 int &i1 = 0x123_x1; variable
p4.cpp 4 int &i1 = 0.123_x1; variable
p5.cpp 7 double &i1 = "foo"_x1; variable
p6.cpp 6 double &i1 = 'a'_x1; // expected-error {{no matching literal operator}} variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p9.cpp 5 int i1 = f<1>(0); // expected-error{{ambiguous}} variable
  /external/clang/test/Parser/
namelookup-bug-2.c 6 struct Object {int i1; } *P; member in struct:Object
  /external/clang/test/SemaCXX/
address-space-references.cpp 13 static int_1 i1; local
17 f0(i1);
attr-unused.cpp 7 ns_not_unused::Int_not_unused i1; // expected-warning {{unused variable}} local
  /external/fdlibm/
s_ceil.c 38 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) i0+=1; /* got a carry *
    [all...]
s_floor.c 38 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) i0 +=1 ; /* got a carry *
    [all...]
s_modf.c 39 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);
  /external/libcxx/test/containers/sequences/list/list.special/
db_swap_1.pass.cpp 33 std::list<int>::iterator i1 = c1.begin(); local
37 c2.erase(i1);
38 std::list<int>::iterator j = i1;
39 c1.erase(i1);
48 std::list<int, min_allocator<int>>::iterator i1 = c1.begin(); local
52 c2.erase(i1);
53 std::list<int, min_allocator<int>>::iterator j = i1;
54 c1.erase(i1);
  /external/libcxx/test/containers/sequences/vector/vector.special/
db_swap_1.pass.cpp 32 std::vector<int>::iterator i1 = c1.begin(); local
36 c2.erase(i1);
37 c1.erase(i1);
46 std::vector<int, min_allocator<int>>::iterator i1 = c1.begin(); local
50 c2.erase(i1);
51 c1.erase(i1);
  /external/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
db_swap_1.pass.cpp 33 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/containers/unord/unord.set/unord.set.swap/
db_swap_1.pass.cpp 33 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);

Completed in 868 milliseconds

1 2 3 4 5 6 7 8 91011