HomeSort by relevance Sort by last modified time
    Searched refs:l1 (Results 76 - 100 of 329) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/tests/device/test-gnustl-full/unit/
list_test.cpp 60 list<int> l1(array1, array1 + 3);
62 list<int>::iterator i1 = l1.begin();
66 l1.splice(i1, l2);
67 i1 = l1.begin();
76 CPPUNIT_ASSERT( i2 == l1.begin() );
100 list<int> l1(array1, array1 + 2);
102 list<int>::iterator i = l1.begin();
104 l1.splice(i, l2, l2.begin(), l2.end());
105 i = l1.begin();
153 list<int> l1(array1, array1 + 4)
    [all...]
  /ndk/tests/device/test-stlport/unit/
list_test.cpp 60 list<int> l1(array1, array1 + 3);
62 list<int>::iterator i1 = l1.begin();
66 l1.splice(i1, l2);
67 i1 = l1.begin();
76 CPPUNIT_ASSERT( i2 == l1.begin() );
100 list<int> l1(array1, array1 + 2);
102 list<int>::iterator i = l1.begin();
104 l1.splice(i, l2, l2.begin(), l2.end());
105 i = l1.begin();
153 list<int> l1(array1, array1 + 4)
    [all...]
  /external/eigen/test/
product_large.cpp 41 std::ptrdiff_t l1 = internal::random<int>(10000,20000); local
43 setCpuCacheSizes(l1,l2);
44 VERIFY(l1==l1CacheSize());
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4.cpp 51 auto l1 = [] () -> Incomplete { }; // expected-error{{incomplete result type 'Incomplete' in lambda expression}}
  /frameworks/base/media/tests/audiotests/
shared_mem_test.cpp 140 long l0, l1; local
157 long l0, l1; local
162 l1 = (amplitude*sin1024[((phi>>22) + 256) & 0x3ff]) >> 15; // 2^15*cosine
163 l0 = (l0 * l1) >> 10;
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 60 volatile long l1 = LONG_MAX; local
  /external/eigen/Eigen/src/Core/util/
Memory.h 763 inline void queryCacheSizes_intel_direct(int& l1, int& l2, int& l3)
766 l1 = l2 = l3 = 0;
785 case 1: l1 = cache_size; break;
795 inline void queryCacheSizes_intel_codes(int& l1, int& l2, int& l3)
799 l1 = l2 = l3 = 0;
807 case 0x0A: l1 = 8; break; // 0Ah data L1 cache, 8 KB, 2 ways, 32 byte lines
808 case 0x0C: l1 = 16; break; // 0Ch data L1 cache, 16 KB, 4 ways, 32 byte lines
809 case 0x0E: l1 = 24; break; // 0Eh data L1 cache, 24 KB, 6 ways, 64 byte line
943 int l1, l2(-1), l3(-1); local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.cc 74 uptr l1 = atomic_load(pl1, memory_order_consume); local
75 if (l1 == 0) {
81 if (atomic_compare_exchange_strong(pl1, &l1, (uptr)p, memory_order_acq_rel))
82 l1 = (uptr)p;
86 return &((FdDesc*)l1)[fd % kTableSizeL2]; // NOLINT
122 for (int l1 = 0; l1 < kTableSizeL1; l1++) {
123 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed);
134 for (int l1 = 0; l1 < kTableSizeL1; l1++)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_obj.c 70 int n,lold,l,l1,l2,num,j,type; local
112 l1=strlen(s);
161 l+=1+l1+1+l2;
174 memcpy(p,s,(unsigned int)l1); p+=l1;
  /external/openssl/crypto/x509/
x509_obj.c 70 int n,lold,l,l1,l2,num,j,type; local
112 l1=strlen(s);
161 l+=1+l1+1+l2;
174 memcpy(p,s,(unsigned int)l1); p+=l1;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
full_lambda.hpp 84 , typename L1
89 typename L1::type
98 , typename L1
100 struct le_result1< true_,Tag,F,L1 >
104 , typename L1::result_
123 typedef lambda< T1,Tag > l1; typedef in struct:boost::mpl::lambda
124 typedef typename l1::is_le is_le1;
130 is_le, Tag, F, l1
161 , typename L1, typename L2
166 typename L1::type, typename L2::typ
200 typedef lambda< T1,Tag > l1; typedef in struct:boost::mpl::lambda
282 typedef lambda< T1,Tag > l1; typedef in struct:boost::mpl::lambda
368 typedef lambda< T1,Tag > l1; typedef in struct:boost::mpl::lambda
460 typedef lambda< T1,Tag > l1; typedef in struct:boost::mpl::lambda
545 typedef lambda< F,Tag2 > l1; typedef in struct:boost::mpl::lambda
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
results.py 81 executed = [(m2fl(l1), m2fl(l2)) for (l1,l2) in executed]
112 return [l1 for l1,count in exit_counts.items() if count > 1]
122 Returns {l1:[l2a,l2b,...], ...}
128 for l1, l2 in missing:
129 if l1 in branch_lines:
130 if l1 not in mba:
131 mba[l1] = []
132 mba[l1].append(l2
    [all...]
  /external/valgrind/main/none/tests/s390x/
tre.c 27 register uint64_t l1 asm ("3") = len;
34 :"d"(a2),"d"(param),"d"(l1),"d"(test_byte): "memory" );
37 regs.len = l1;
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 28 auto l1 = [](int n [[carries_dependency]]) {}; variable
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_locl.h 114 #define c2ln(c,l1,l2,n) { \
116 l1=l2=0; \
122 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
123 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \
124 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \
125 case 1: l1|=((DES_LONG)(*(--(c)))); \
149 #define l2cn(l1,l2,c,n) { \
156 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
157 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
158 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff);
    [all...]
  /external/openssl/crypto/des/
des_locl.h 114 #define c2ln(c,l1,l2,n) { \
116 l1=l2=0; \
122 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
123 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \
124 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \
125 case 1: l1|=((DES_LONG)(*(--(c)))); \
149 #define l2cn(l1,l2,c,n) { \
156 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
157 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
158 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff);
    [all...]
  /external/opencv/cvaux/src/
cvlmeds.cpp 408 double l1, l2, l3, d1, d2, value; local
423 l1 = F[0] * mr[i3] + F[1] * mr[i3 + 1] + F[2];
427 d1 = (l1 * ml[i3] + l2 * ml[i3 + 1] + l3) / sqrt( l1 * l1 + l2 * l2 );
429 l1 = F[0] * ml[i3] + F[3] * ml[i3 + 1] + F[6];
433 d2 = (l1 * mr[i3] + l2 * mr[i3 + 1] + l3) / sqrt( l1 * l1 + l2 * l2 );
491 double l1, l2, l3, d1, d2, sigma local
584 double l1, l2, w, old_norm = -1, new_norm = -2, summ; local
935 int i = 0, j, k, l = 0, i1, k1, l1 = 0; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
mergesort.c 111 unsigned char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2;
146 f2 = l1 = list1 + (p2 - list2);
150 while (f1 < l1 && f2 < l2) {
153 b = f1, t = l1;
222 } else if (f1 < l1) {
224 ICOPY_LIST(f1, tp2, l1);
226 CCOPY_LIST(f1, tp2, l1);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
full_lambda.hpp 178 typedef lambda< F,Tag2 > l1; typedef in struct:boost::mpl::lambda
181 typedef typename l1::is_le is_le;
182 typedef bind1< quote1<aux::template_arity>, typename l1::result_ > arity_;
185 typedef aux::le_result3<is_le, Tag2, mpl::lambda, l1, l2, l3> le_result_;
201 typedef lambda< F,Tag2 > l1; typedef in struct:boost::mpl::lambda
204 typedef typename l1::is_le is_le;
205 typedef aux::le_result2<is_le, Tag2, mpl::lambda, l1, l2> le_result_;
  /external/bison/lib/
localcharset.c 192 size_t l1, l2; local
213 l1 = strlen (buf1);
218 res_size = l1 + 1 + l2 + 1;
223 res_size += l1 + 1 + l2 + 1;
233 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /external/e2fsprogs/intl/
localcharset.c 149 size_t l1, l2; local
171 l1 = strlen (buf1);
175 res_size = l1 + 1 + l2 + 1;
180 res_size += l1 + 1 + l2 + 1;
189 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /ndk/sources/host-tools/sed-4.2.1/lib/
localcharset.c 162 size_t l1, l2; local
183 l1 = strlen (buf1);
188 res_size = l1 + 1 + l2 + 1;
193 res_size += l1 + 1 + l2 + 1;
204 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 55 Label l1 = new Label(); local
56 mv.visitLabel(l1);
62 l1, // label end
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 222 MockLevel l1 = new MockLevel("level1", 1); local
224 assertEquals(l1, l2);
225 assertEquals(l2, l1);
232 MockLevel l1 = new MockLevel("level1", 1); local
234 assertFalse(l1.equals(l2));
235 assertFalse(l2.equals(l1));
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 501 public static long max(long l1, long l2) {
502 return l1 > l2 ? l1 : l2;
571 public static long min(long l1, long l2) {
572 return l1 < l2 ? l1 : l2;
    [all...]

Completed in 2071 milliseconds

1 2 34 5 6 7 8 91011>>