HomeSort by relevance Sort by last modified time
    Searched refs:l1 (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /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
  /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/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);
  /bootable/bootloader/legacy/libc/
strstr.c 33 int l1 = strlen(s1); local
36 while (l1 >= l2) {
41 l1--;
  /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/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
  /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...]
  /external/icu4c/tools/genprops/misc/
ucdmerge.c 54 sameData(const char *l1, const char *l2) {
59 l1=strchr(l1, ';')+1;
63 end1=endOfData(l1);
67 length=end1-l1;
68 return length==(end2-l2) && 0==memcmp(l1, l2, length);
  /external/icu4c/tools/genprops/
ucdmerge.c 54 sameData(const char *l1, const char *l2) {
59 l1=strchr(l1, ';')+1;
63 end1=endOfData(l1);
67 length=end1-l1;
68 return length==(end2-l2) && 0==memcmp(l1, l2, length);
  /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...]
  /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/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/stlport/test/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-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...]
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 60 volatile long l1 = LONG_MAX; local
  /external/bluetooth/glib/glib/
glist.c 893 g_list_sort_merge (GList *l1,
904 while (l1 && l2)
906 cmp = ((GCompareDataFunc) compare_func) (l1->data, l2->data, user_data);
910 l->next = l1;
911 l1 = l1->next;
922 l->next = l1 ? l1 : l2;
933 GList *l1, *l2; local
940 l1 = list;
    [all...]

Completed in 737 milliseconds

1 2 3 4 5 6