HomeSort by relevance Sort by last modified time
    Searched refs:l2 (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /dalvik/libcore/luni/src/main/java/java/lang/
Math.java 564 * @param l2
566 * @return the larger of {@code l1} and {@code l2}.
568 public static long max(long l1, long l2) {
569 return l1 > l2 ? l1 : l2;
666 * @param l2
668 * @return the smaller of {@code l1} and {@code l2}.
670 public static long min(long l1, long l2) {
671 return l1 < l2 ? l1 : l2;
    [all...]
StrictMath.java 556 * @param l2
558 * @return the larger of {@code l1} and {@code l2}.
560 public static long max(long l1, long l2) {
561 return l1 > l2 ? l1 : l2;
650 * @param l2
652 * @return the smaller of {@code l1} and {@code l2}.
654 public static long min(long l1, long l2) {
655 return l1 < l2 ? l1 : l2;
    [all...]
  /external/openssl/crypto/x509/
x509_obj.c 70 int n,lold,l,l1,l2,num,j,type; local
148 for (l2=j=0; j<num; j++)
151 l2++;
153 if ((q[j] < ' ') || (q[j] > '~')) l2+=3;
156 (os_toascii[q[j]] > os_toascii['~'])) l2+=3;
161 l+=1+l1+1+l2;
  /external/icu4c/test/intltest/
aliastst.cpp 71 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status); local
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));
104 const char* l2 = df2->getLocaleID(ULOC_VALID_LOCALE, status); local
108 if (strcmp(l1, l2)!=0) {
109 errln("TestDateFormat: l1!=l2: l1= "+UnicodeString(l1) +" l2= "+UnicodeString(l2))
137 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status); local
    [all...]
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 61 volatile long l2 = LONG_MIN; local
  /external/bluetooth/glib/glib/
glist.c 894 GList *l2,
904 while (l1 && l2)
906 cmp = ((GCompareDataFunc) compare_func) (l1->data, l2->data, user_data);
915 l->next = l2;
916 l2 = l2->next;
922 l->next = l1 ? l1 : l2;
933 GList *l1, *l2; local
941 l2 = list->next;
943 while ((l2 = l2->next) != NULL
    [all...]
gslist.c 850 GSList *l2,
859 while (l1 && l2)
861 cmp = ((GCompareDataFunc) compare_func) (l1->data, l2->data, user_data);
870 l=l->next=l2;
871 l2=l2->next;
874 l->next= l1 ? l1 : l2;
884 GSList *l1, *l2; local
892 l2 = list->next;
894 while ((l2 = l2->next) != NULL
    [all...]
  /external/stlport/test/unit/
list_test.cpp 61 list<int> l2(array2, array2 + 2);
63 list<int>::iterator i2 = l2.begin();
66 l1.splice(i1, l2);
101 list<int> l2(array2, array2 + 2);
104 l1.splice(i, l2, l2.begin(), l2.end());
154 list<int> l2(array2, array2 + 2);
155 l1.merge(l2);
166 CPPUNIT_ASSERT(distance(l2.begin(), l2.end()) == 0)
    [all...]
  /external/openssl/crypto/des/
des_locl.h 114 #define c2ln(c,l1,l2,n) { \
116 l1=l2=0; \
118 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
119 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
120 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
121 case 5: l2|=((DES_LONG)(*(--(c)))); \
149 #define l2cn(l1,l2,c,n) { \
152 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
153 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
154 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff);
    [all...]
  /external/e2fsprogs/intl/
localcharset.c 149 size_t l1, l2; local
172 l2 = strlen (buf2);
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);
190 strcpy (res_ptr + res_size - (l2 + 1), buf2);
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_priv.c 51 /* TODO: add support for multiple l2 connections */
52 struct l2_packet_data *l2; member in struct:wpa_priv_interface
70 if (iface->l2) {
73 l2_packet_deinit(iface->l2);
74 iface->l2 = NULL;
459 perror("sendmsg(l2 rx)");
486 if (iface->l2) {
489 l2_packet_deinit(iface->l2);
490 iface->l2 = NULL;
495 iface->l2 = l2_packet_init(iface->ifname, NULL, proto
    [all...]
preauth_test.c 232 struct l2_packet_data *l2; local
266 l2 = l2_packet_init(wpa_s->ifname, NULL, ETH_P_RSN_PREAUTH, NULL,
268 assert(l2 != NULL);
269 if (l2_packet_get_own_addr(l2, wpa_s->own_addr)) {
270 wpa_printf(MSG_WARNING, "Failed to get own L2 address\n");
273 l2_packet_deinit(l2);
  /external/webkit/JavaScriptCore/runtime/
UString.cpp 665 const int l2 = s2.size(); local
666 const int lmin = l1 < l2 ? l1 : l2;
678 return (l1 < l2);
684 const int l2 = s2.size();
685 const int lmin = l1 < l2 ? l1 : l2;
697 return (l1 > l2);
703 const int l2 = s2.size();
704 const int lmin = l1 < l2 ? l1 : l2
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTokenManager.java 190 long l2 = 1L << (curChar & 077); local
306 long l2 = 1L << (curChar & 077); local
312 if ((jjbitVec0[i2] & l2) != 0L && kind > 23)
316 if ((jjbitVec0[i2] & l2) != 0L && kind > 21)
436 long l2 = 1L << (curChar & 077); local
443 if ((jjbitVec0[i2] & l2) == 0L)
450 if ((jjbitVec0[i2] & l2) != 0L && kind > 29)
561 long l2 = 1L << (curChar & 077); local
567 if ((jjbitVec0[i2] & l2) != 0L && kind > 27)
571 if ((jjbitVec0[i2] & l2) != 0L && kind > 24
683 long l2 = 1L << (curChar & 077); local
    [all...]
  /external/wpa_supplicant/
preauth_test.c 239 struct l2_packet_data *l2; local
274 l2 = l2_packet_init(wpa_s->ifname, NULL, ETH_P_RSN_PREAUTH, NULL,
276 assert(l2 != NULL);
277 if (l2_packet_get_own_addr(l2, wpa_s->own_addr)) {
278 wpa_printf(MSG_WARNING, "Failed to get own L2 address\n");
281 l2_packet_deinit(l2);
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_roboswitch.c 67 struct l2_packet_data *l2; member in struct:wpa_driver_roboswitch_data
216 drv->l2 = l2_packet_init(drv->ifname, NULL, ETH_P_ALL,
219 if (drv->l2 == NULL) {
225 l2_packet_get_own_addr(drv->l2, drv->own_addr);
228 drv->l2 = NULL;
453 if (drv->l2) {
454 l2_packet_deinit(drv->l2);
455 drv->l2 = NULL;
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 196 long l2 = 1L << (curChar & 077); local
203 if ((jjbitVec0[i2] & l2) == 0L)
317 long l2 = 1L << (curChar & 077); local
323 if ((jjbitVec0[i2] & l2) != 0L && kind > 11)
327 if ((jjbitVec0[i2] & l2) != 0L && kind > 9)
447 long l2 = 1L << (curChar & 077); local
454 if ((jjbitVec0[i2] & l2) == 0L)
461 if ((jjbitVec0[i2] & l2) != 0L && kind > 17)
572 long l2 = 1L << (curChar & 077); local
578 if ((jjbitVec0[i2] & l2) != 0L && kind > 15
    [all...]
  /bionic/libc/kernel/common/linux/
atmsap.h 76 } l2; member in struct:atm_blli
  /external/iproute2/include/linux/
atmsap.h 22 #define ATM_L2_NONE 0 /* L2 not specified */
111 unsigned char user; /* user-specified l2 information */
112 } l2; member in struct:atm_blli
  /external/kernel-headers/original/linux/
atmsap.h 22 #define ATM_L2_NONE 0 /* L2 not specified */
111 unsigned char user; /* user-specified l2 information */
112 } l2; member in struct:atm_blli
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
atmsap.h 76 } l2; member in struct:atm_blli
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
atmsap.h 76 } l2; member in struct:atm_blli
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
atmsap.h 76 } l2; member in struct:atm_blli
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
atmsap.h 76 } l2; member in struct:atm_blli
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
atmsap.h 76 } l2; member in struct:atm_blli

Completed in 968 milliseconds

12 3 4 5