/external/clang/test/Sema/ |
indirect-goto.c | 5 void const* l1_ptr = &&l1; 7 l1:
|
attr-used.c | 4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{used attribute ignored}} variable
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
default-arguments.cpp | 4 auto l1 = [](int i, int j = 17, int k = 18) { return i + j + k; }; local 5 int i1 = l1(1); 6 int i2 = l1(1, 2); 7 int i3 = l1(1, 2, 3); 12 auto l1 = [](int i, local 35 auto l1 = [](const T& value = T()) { }; local 36 l1(t); 44 auto l1 = [](const T& value = T()) { }; // expected-error{{no matching constructor for initialization of 'NoDefaultCtor'}} local 45 l1(); // expected-note{{in instantiation of default function argument expression for 'operator()<NoDefaultCtor>' required here}}
|
p4.cpp | 47 auto l1 = [] () -> Incomplete { }; // expected-error{{incomplete result type 'Incomplete' in lambda expression}}
|
/dalvik/dx/tests/044-dex-math-ops/ |
Blort.java | 40 public void blort(long l1, long l2) { 41 l = -l1; 42 l = ~l1; 43 l = l1 + l2; 44 l = l1 - l2; 45 l = l1 * l2; 46 l = l1 / l2; 47 l = l1 % l2; 48 l = l1 & l2; 49 l = l1 | l2 [all...] |
/external/valgrind/main/none/tests/s390x/ |
clcle.c | 13 register unsigned long l1 asm ("3") = *_l1; 23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3) 28 *_l1 = l1; 37 unsigned long a1,a3,l1,l3; local 40 a1 = (unsigned long) _a1; l1 = _l1; a3 = (unsigned long) _a3; l3 = _l3; 41 cc = clcle(&a1, &l1, &a3, &l3, pad); 42 printf("cc: %d, l1: %lu(%lu) l3: %lu(%lu) diff1: %lu diff3: %lu\n", 43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3); 47 void multiplex(unsigned long l1, unsigned long l3, char pad) 49 testrun(b1, l1, b1, l3, pad) [all...] |
/external/libffi/testsuite/libffi.call/ |
return_sl.c | 9 static long return_sl(long l1, long l2) 11 return l1 - l2; 20 unsigned long l1, l2; local 24 values[0] = &l1; 30 l1 = 1073741823L; 34 printf("res: %ld, %ld\n", (long)res, l1 - l2);
|
/external/dropbear/libtomcrypt/testprof/ |
base64_test.c | 6 unsigned long x, l1, l2; local 10 l1 = sizeof(out); 11 DO(base64_encode(in, x, out, &l1)); 13 DO(base64_decode(out, l1, tmp, &l2)); 15 fprintf(stderr, "base64 failed %lu %lu %lu", x, l1, l2);
|
pkcs_1_test.c | 9 unsigned long x, y, l1, l2, l3, i1, i2, lparamlen, saltlen, modlen; local 40 l1 = sizeof(buf[1]); 41 DO(pkcs_1_oaep_encode(buf[0], l3, lparam, lparamlen, modlen, &yarrow_prng, prng_idx, hash_idx, buf[1], &l1)); 45 DO(pkcs_1_oaep_decode(buf[1], l1, lparam, lparamlen, modlen, hash_idx, buf[2], &l2, &res1)); 62 l1 = sizeof(buf[1]); 63 DO(pkcs_1_pss_encode(buf[0], l3, saltlen, &yarrow_prng, prng_idx, hash_idx, modlen, buf[1], &l1)); 64 DO(pkcs_1_pss_decode(buf[0], l3, buf[1], l1, saltlen, hash_idx, modlen, &res1)); 67 DO(pkcs_1_pss_decode(buf[0], l3, buf[1], l1, saltlen, hash_idx, modlen, &res2)); 70 buf[1][i2 = abs(rand()) % (l1 - 1)] ^= 1; 71 pkcs_1_pss_decode(buf[0], l3, buf[1], l1, saltlen, hash_idx, modlen, &res3) [all...] |
/external/openssl/crypto/des/ |
ecb3_enc.c | 66 register DES_LONG l0,l1; local 72 c2l(in,l1); 74 ll[1]=l1; 80 l1=ll[1]; 82 l2c(l1,out);
|
/external/clang/test/SemaCXX/ |
exceptions.cpp | 36 l1: 41 goto l1; 48 goto l1; 55 goto l1; 62 goto l1; 69 goto l1;
|
/external/openssl/crypto/bf/ |
bf_locl.h | 71 #define c2ln(c,l1,l2,n) { \ 73 l1=l2=0; \ 79 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \ 80 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \ 81 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \ 82 case 1: l1|=((unsigned long)(*(--(c)))); \ 94 #define l2cn(l1,l2,c,n) { \ 101 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 102 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 103 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); [all...] |
/external/openssl/crypto/rc2/ |
rc2_locl.h | 67 #define c2ln(c,l1,l2,n) { \ 69 l1=l2=0; \ 75 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \ 76 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \ 77 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \ 78 case 1: l1|=((unsigned long)(*(--(c)))); \ 90 #define l2cn(l1,l2,c,n) { \ 97 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 98 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 99 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); [all...] |
/external/sepolicy/ |
mls | 23 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject); 27 (l1 dom l2 or t1 == mlstrustedsubject); 31 (l1 domby l2 or t1 == mlstrustedsubject); 41 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject or t2 == mlstrustedsubject); 46 (l1 domby l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject); 51 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject); 61 (l2 eq h2 and (l1 eq l2 or t1 == mlstrustedsubject)); 71 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject); 73 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject); 82 (t2 == app_data_file or l1 dom l2 or t1 == mlstrustedsubject or t2 == mlstrustedobject) [all...] |
/external/libsepol/include/sepol/policydb/ |
mls_types.h | 73 static inline int mls_level_eq(const struct mls_level *l1, const struct mls_level *l2) 75 return ((l1->sens == l2->sens) && ebitmap_cmp(&l1->cat, &l2->cat)); 78 static inline int mls_level_dom(const struct mls_level *l1, const struct mls_level *l2) 80 return ((l1->sens >= l2->sens) && ebitmap_contains(&l1->cat, &l2->cat)); 83 #define mls_level_incomp(l1, l2) \ 84 (!mls_level_dom((l1), (l2)) && !mls_level_dom((l2), (l1))) 86 #define mls_level_between(l1, l2, l3) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_list_test.cc | 129 List l1, l2; local 130 l1.clear(); 133 l1.append_front(&l2); 134 CHECK(l1.empty()); 137 l1.append_back(&l2); 138 CHECK(l1.empty()); 141 SetList(&l1, x); 142 CheckList(&l1, x); 144 SetList(&l1, x, y, z); 146 l1.append_back(&l2) [all...] |
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
PropertyChangeSupportTest.java | 74 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 81 sup.addPropertyChangeListener(l1); 84 assertSame(l1, sup.getPropertyChangeListeners()[0]); 86 sup.removePropertyChangeListener(l1); 127 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 129 sup.addPropertyChangeListener(l1); 130 sup.addPropertyChangeListener(l1); 134 assertSame(l1, listeners[0]); 135 assertSame(l1, listeners[1]); 145 PropertyChangeListener l1 = new MockPropertyChangeListener() local 211 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 230 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 268 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 334 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 353 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 422 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 452 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 477 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 510 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 531 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 563 PropertyChangeListener l1 = new MockPropertyChangeListener(); local 607 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 636 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 665 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 694 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 723 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 751 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 797 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 829 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 861 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 893 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 925 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 956 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src2, local 1013 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1042 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1070 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1110 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1139 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1168 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1208 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local 1239 MockPropertyChangeListener l1 = new MockPropertyChangeListener(src, local [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 113 struct genlist *l1, *l2; 144 cf->l1 = genlist_init(); 147 genlist_insert(cf->l1, "Ahoj"); 148 genlist_insert(cf->l1, "Cau"); 149 genlist_insert(cf->l1, "Nazdar"); 150 genlist_insert(cf->l1, "Te buch"); 160 dump_list(cf->l1); 168 * genlist_free (cf->l1, 0); but to illustrate the idea */ 169 genlist_free (cf->l1, free_data); 170 cf->l1 = 0 [all...] |
/system/core/sh/ |
mkbuiltins | 93 l1="${line###}" 94 [ "$l1" != "$line" ] && continue
|
/external/icu4c/test/intltest/ |
aliastst.cpp | 70 const char* l1 = c1->getLocaleID(ULOC_VALID_LOCALE, status); local 72 if (strcmp(newLoc.getName(), l1)!=0) { 73 errln("CalendarTest: newLoc!=l1: newLoc= "+UnicodeString(newLoc.getName()) +" l1= "+UnicodeString(l1)); 75 if (strcmp(l1, l2)!=0) { 76 errln("CalendarTest: l1!=l2: l1= "+UnicodeString(l1) +" l2= "+UnicodeString(l2)); 81 logln("Calendar(getLocale) old:"+UnicodeString(l1)+" new:"+UnicodeString(l2)); 103 const char* l1 = df1->getLocaleID(ULOC_VALID_LOCALE, status); local 136 Locale l1 = c1->getLocale(ULOC_VALID_LOCALE, status); local [all...] |
/cts/suite/audio_quality/lib/src/ |
StringUtil.cpp | 64 size_t l1 = str.length(); local 67 if (l2 > l1) { 70 size_t iStr = l1 - l2; 72 for(; iStr < l1; iStr++) {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThreadLocalTest.java | 60 final ThreadLocal<Object> l1 = new ThreadLocal<Object>() { local 68 + " but is " + l1.get(), l1.get() == INITIAL_VALUE); 81 THREADVALUE.result = l1.get();
|
/external/libvorbis/lib/ |
smallft.c | 43 int k1, l1, l2, ib; local 80 l1=1; 87 l2=l1*ip; 92 ld+=l1; 104 l1=l2; 114 static void dradf2(int ido,int l1,float *cc,float *ch,float *wa1){ 120 t0=(t2=l1*ido); 122 for(k=0;k<l1;k++){ 134 for(k=0;k<l1;k++){ 160 for(k=0;k<l1;k++) 574 int i,k1,l1,l2; local 1155 int i,k1,l1,l2; local [all...] |
/external/speex/libspeex/ |
smallft.c | 45 int k1, l1, l2, ib; local 82 l1=1; 89 l2=l1*ip; 94 ld+=l1; 106 l1=l2; 116 static void dradf2(int ido,int l1,float *cc,float *ch,float *wa1){ 122 t0=(t2=l1*ido); 124 for(k=0;k<l1;k++){ 136 for(k=0;k<l1;k++){ 162 for(k=0;k<l1;k++) 576 int i,k1,l1,l2; local 1157 int i,k1,l1,l2; local [all...] |
/external/clang/test/CodeGen/ |
libcalls.c | 17 double l1 = sqrt(a1); local 40 double l1 = pow(a1, a1); local 63 double l1 = fma(a1, a1, a1); local
|