HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 51 - 75 of 811) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/openssl/crypto/bn/
bn_asm.c 436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
437 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
438 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
439 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
442 #define mul_add_c(a,b,c0,c1,c2) \
447 c1=(c1+t2)&BN_MASK2; if ((c1) < t2) c2++
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
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.spec/
relational.pass.cpp 40 C c2; local
42 c2.push_front(i);
44 assert(c1 < c2);
46 assert(c1 <= c2);
48 assert(c1 >= c2);
50 assert(c1 > c2);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.special/
swap.pass.cpp 25 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
26 swap(c1, c2);
28 assert(c2 == std::list<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
34 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
35 swap(c1, c2);
37 assert(c2.empty());
38 assert(distance(c2.begin(), c2.end()) == 0);
44 std::list<int> c2(a2, a2);
45 swap(c1, c2);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.special/
swap.pass.cpp 25 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
26 swap(c1, c2);
28 assert(c2 == std::vector<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
34 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
35 swap(c1, c2);
37 assert(c2.empty());
38 assert(distance(c2.begin(), c2.end()) == 0);
44 std::vector<int> c2(a2, a2);
45 swap(c1, c2);
    [all...]
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
parameters.cpp 13 // CHECK: {c = 97 'a', c2 = "01"}
24 char c2[2]; member in struct:char_struct
41 s.c2[0] = '0';
42 s.c2[1] = '1';
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.member.ops/
divide_equal_complex.pass.cpp 22 const std::complex<T> c2(1.5, 2.5);
25 c /= c2;
28 c /= c2;
minus_equal_complex.pass.cpp 22 const std::complex<T> c2(1.5, 2.5);
25 c -= c2;
28 c -= c2;
plus_equal_complex.pass.cpp 22 const std::complex<T> c2(1.5, 2.5);
25 c += c2;
28 c += c2;
times_equal_complex.pass.cpp 22 const std::complex<T> c2(1.5, 2.5);
25 c *= c2;
28 c *= c2;
  /external/clang/test/Parser/
c1x-alignas.c 5 unsigned _Alignas(long) char c2; variable
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multimap/
swap_member.pass.cpp 35 C c2(0, Hash(2), Compare(2), Alloc(2));
36 c2.max_load_factor(2);
37 c1.swap(c2);
48 assert(c2.bucket_count() == 0);
49 assert(c2.size() == 0);
50 assert(c2.hash_function() == Hash(1));
51 assert(c2.key_eq() == Compare(1));
52 assert(c2.get_allocator() == Alloc(2));
53 assert(std::distance(c2.begin(), c2.end()) == c2.size())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multimap/unord.multimap.swap/
swap_non_member.pass.cpp 35 C c2(0, Hash(2), Compare(2), Alloc(2));
36 c2.max_load_factor(2);
37 swap(c1, c2);
48 assert(c2.bucket_count() == 0);
49 assert(c2.size() == 0);
50 assert(c2.hash_function() == Hash(1));
51 assert(c2.key_eq() == Compare(1));
52 assert(c2.get_allocator() == Alloc(2));
53 assert(std::distance(c2.begin(), c2.end()) == c2.size())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractCollectionTest.java 133 Collection<String> c2 = create(); local
134 c2.add("b");
136 assertFalse(c.equals(c2));
144 Collection<String> c2 = create(); local
145 c2.add("a");
146 c2.add("b");
147 c2.add("b");
149 assertEquals(c, c2);
164 Collection<String> c2 = create(); local
165 c2.add("a")
179 Collection<String> c2 = create(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/
rv_value.pass.cpp 29 typename C::value_type x3, const C& c2)
35 assert(c1 == c2);
65 C c2; local
67 c2.push_back(Ptr(x+i));
68 insert3at(c2, c2.begin(), Ptr(x+3), Ptr(x+4), Ptr(x+5));
69 test(std::move(c1), 0, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2);
73 c2.clear();
75 c2.push_back(Ptr(x+i));
76 insert3at(c2, c2.begin()+1, Ptr(x+3), Ptr(x+4), Ptr(x+5))
    [all...]
  /external/clang/test/CodeGen/
atomics-inlining.c 6 unsigned char c1, c2; variable
21 (void)__atomic_load(&c1, &c2, memory_order_seq_cst);
  /external/libsepol/include/sepol/policydb/
context.h 52 static inline int mls_context_cmp(context_struct_t * c1, context_struct_t * c2)
54 return (mls_level_eq(&c1->range.level[0], &c2->range.level[0]) &&
55 mls_level_eq(&c1->range.level[1], &c2->range.level[1]));
90 static inline int context_cmp(context_struct_t * c1, context_struct_t * c2)
92 return ((c1->user == c2->user) &&
93 (c1->role == c2->role) &&
94 (c1->type == c2->type) && mls_context_cmp(c1, c2));
  /external/valgrind/main/massif/tests/
new-cpp.cpp 22 char* c2 = new (std::nothrow) char[2000]; local
26 delete [] c2;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.ops/
merge.pass.cpp 23 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
24 c1.merge(c2);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
remove.pass.cpp 26 C c2(std::begin(t2), std::end(t2));
28 assert(c1 == c2);
35 C c2; local
37 assert(c1 == c2);
45 C c2(std::begin(t2), std::end(t2));
47 assert(c1 == c2);
53 C c2; local
55 assert(c1 == c2);
63 C c2(std::begin(t2), std::end(t2));
65 assert(c1 == c2);
    [all...]
remove_if.pass.cpp 31 C c2(std::begin(t2), std::end(t2));
33 assert(c1 == c2);
40 C c2; local
42 assert(c1 == c2);
50 C c2(std::begin(t2), std::end(t2));
52 assert(c1 == c2);
58 C c2; local
60 assert(c1 == c2);
68 C c2(std::begin(t2), std::end(t2));
70 assert(c1 == c2);
    [all...]
unique.pass.cpp 26 C c2(std::begin(t2), std::end(t2));
28 assert(c1 == c2);
36 C c2(std::begin(t2), std::end(t2));
38 assert(c1 == c2);
46 C c2(std::begin(t2), std::end(t2));
48 assert(c1 == c2);
54 C c2; local
56 assert(c1 == c2);
64 C c2(std::begin(t2), std::end(t2));
66 assert(c1 == c2);
    [all...]
unique_pred.pass.cpp 31 C c2(std::begin(t2), std::end(t2));
33 assert(c1 == c2);
41 C c2(std::begin(t2), std::end(t2));
43 assert(c1 == c2);
51 C c2(std::begin(t2), std::end(t2));
53 assert(c1 == c2);
59 C c2; local
61 assert(c1 == c2);
69 C c2(std::begin(t2), std::end(t2));
71 assert(c1 == c2);
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieIdentityComparator.java 51 public int compare(final Cookie c1, final Cookie c2) {
52 int res = c1.getName().compareTo(c2.getName());
59 String d2 = c2.getDomain();
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.cons/
assign_iter_iter.pass.cpp 42 test(std::deque<int>& c1, const std::deque<int>& c2)
45 c1.assign(c2.begin(), c2.end());
47 assert(c1 == c2);
57 C c2 = make(M); local
58 test(c1, c2);
62 testI(std::deque<int>& c1, const std::deque<int>& c2)
68 c1.assign(ICI(c2.begin()), ICI(c2.end()));
70 assert(c1 == c2);
80 C c2 = make(M); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.special/
swap.pass.cpp 44 C c2 = make(M); local
46 C c2_save = c2;
47 swap(c1, c2);
49 assert(c2 == c1_save);
67 std::deque<int, A> c2(a2, a2+sizeof(a2)/sizeof(a2[0]), A(2));
68 swap(c1, c2);
71 assert((c2 == std::deque<int, A>(a1, a1+sizeof(a1)/sizeof(a1[0]))));
72 assert(c2.get_allocator() == A(2));
79 std::deque<int, A> c2(a2, a2+sizeof(a2)/sizeof(a2[0]), A(2));
80 swap(c1, c2);
    [all...]

Completed in 664 milliseconds

1 23 4 5 6 7 8 91011>>