| /dragonfly/crypto/libressl/crypto/rc2/ |
| HD | rc2_locl.h | 67 #define c2ln(c,l1,l2,n) { \ argument 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) { \ argument 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 …]
|
| /dragonfly/sys/crypto/blowfish/ |
| HD | bf_locl.h | 77 #define c2ln(c,l1,l2,n) { \ argument 79 l1=l2=0; \ 85 case 4: l1 =((BF_LONG)(*(--(c))))<<24L; \ 86 case 3: l1|=((BF_LONG)(*(--(c))))<<16L; \ 87 case 2: l1|=((BF_LONG)(*(--(c))))<< 8L; \ 88 case 1: l1|=((BF_LONG)(*(--(c)))); \ 100 #define l2cn(l1,l2,c,n) { \ argument 107 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 108 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 109 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
| /dragonfly/crypto/libressl/crypto/bf/ |
| HD | bf_locl.h | 71 #define c2ln(c,l1,l2,n) { \ argument 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) { \ argument 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 …]
|
| /dragonfly/crypto/libressl/crypto/cast/ |
| HD | cast_lcl.h | 67 #define c2ln(c,l1,l2,n) { \ argument 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) { \ argument 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 …]
|
| /dragonfly/usr.bin/dsynth/ |
| HD | config.c | 344 char *l1; in parseConfigFile() local 397 l1 = strtok(copy, "="); in parseConfigFile() 398 if (l1 == NULL) { in parseConfigFile() 407 l1 = stripwhite(l1); in parseConfigFile() 415 if (strcmp(l1, "profile_selected") == 0) { in parseConfigFile() 431 if (strcmp(l1, "Operating_system") == 0) { in parseConfigFile() 433 } else if (strcmp(l1, "Directory_packages") == 0) { in parseConfigFile() 435 } else if (strcmp(l1, "Directory_repository") == 0) { in parseConfigFile() 437 } else if (strcmp(l1, "Directory_portsdir") == 0) { in parseConfigFile() 439 } else if (strcmp(l1, "Directory_options") == 0) { in parseConfigFile() [all …]
|
| HD | pkglist.c | 196 char *l1; in ParsePackageList() local 201 l1 = strdup(ary[i]); in ParsePackageList() 202 if (stat(l1, &st) == 0 && S_ISREG(st.st_mode)) { in ParsePackageList() 203 total += parsepkglist_file(l1, debugstop); in ParsePackageList() 207 l2 = strchr(l1, '/'); in ParsePackageList() 209 printf("Bad portdir specification: %s\n", l1); in ParsePackageList() 210 free(l1); in ParsePackageList() 223 if (strcmp(l1, "ports-mgmt") != 0 || in ParsePackageList() 226 queuebulk(l1, l2, l3, (debugstop ? "d" : NULL)); in ParsePackageList() 229 free(l1); in ParsePackageList() [all …]
|
| /dragonfly/crypto/libressl/crypto/idea/ |
| HD | idea_lcl.h | 83 #define n2ln(c,l1,l2,n) { \ argument 85 l1=l2=0; \ 91 case 4: l1 =((unsigned long)(*(--(c)))) ; \ 92 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \ 93 case 2: l1|=((unsigned long)(*(--(c))))<<16; \ 94 case 1: l1|=((unsigned long)(*(--(c))))<<24; \ 99 #define l2nn(l1,l2,c,n) { \ argument 106 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \ 107 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \ 108 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \ [all …]
|
| HD | i_ecb.c | 74 unsigned long l0,l1,d[2]; in idea_ecb_encrypt() local 77 n2l(in,l1); d[1]=l1; in idea_ecb_encrypt() 80 l1=d[1]; l2n(l1,out); in idea_ecb_encrypt() 81 l0=l1=d[0]=d[1]=0; in idea_ecb_encrypt()
|
| /dragonfly/contrib/cvs-1.12/diff/ |
| HD | ed.c | 39 int f0, l0, f1, l1; local 50 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts); 65 for (i = f1; i <= l1; i++) 115 int f0, l0, f1, l1; local 119 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts); 137 for (i = f1; i <= l1; i++) 161 int f0, l0, f1, l1; local 166 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts); 189 translate_range (&files[1], f1, l1, &tf1, &tl1); 195 for (i = f1; i <= l1; i++)
|
| /dragonfly/contrib/lvm2/dist/test/ |
| HD | t-lvcreate-usage.sh | 62 lvcreate -l1 -n $lv1 $vg 63 lvcreate -l1 -s -n $lv2 $vg/$lv1 64 lvcreate -l1 -n $lv3 $vg 65 not lvcreate -l1 -n $lv4 $vg 68 lvcreate -l1 -s -n $lv3 $vg/$lv1 69 not lvcreate -l1 -n $lv4 $vg 70 not lvcreate -l1 -m1 -n $lv4 $vg 73 lvcreate -l1 -m1 -n $lv3 $vg 76 not lvcreate -l1 -n $lv4 $vg 77 not lvcreate -l1 -m1 -n $lv4 $vg
|
| HD | t-lvcreate-pvtags.sh | 30 lvcreate -l1 -m1 $vg @fast 33 lvcreate -l1 -m2 --corelog $vg @fast 36 not lvcreate -l1 -m2 $vg @fast 39 not lvcreate -l1 -m3 --corelog $vg @fast 42 not lvcreate -l1 -m1 --corelog $vg $dev1
|
| HD | t-vgcfgbackup-usage.sh | 32 lvcreate -l1 -n $lv1 $vg $dev1 33 lvcreate -l1 -n $lv2 $vg $dev2 34 lvcreate -l1 -n $lv3 $vg $dev3
|
| /dragonfly/crypto/libressl/crypto/des/ |
| HD | ecb3_enc.c | 66 DES_LONG l0,l1; in DES_ecb3_encrypt() local 72 c2l(in,l1); in DES_ecb3_encrypt() 74 ll[1]=l1; in DES_ecb3_encrypt() 80 l1=ll[1]; in DES_ecb3_encrypt() 82 l2c(l1,out); in DES_ecb3_encrypt()
|
| HD | des_locl.h | 88 #define c2ln(c,l1,l2,n) { \ argument 90 l1=l2=0; \ 96 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \ 97 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \ 98 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \ 99 case 1: l1|=((DES_LONG)(*(--(c)))); \ 123 #define l2cn(l1,l2,c,n) { \ argument 130 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 131 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 132 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | wide-int.cc | 856 int l1 = op1len - 1; in and_large() local 860 if (l0 > l1) in and_large() 865 l0 = l1; in and_large() 866 len = l1 + 1; in and_large() 871 while (l0 > l1) in and_large() 878 else if (l1 > l0) in and_large() 886 while (l1 > l0) in and_large() 888 val[l1] = op1[l1]; in and_large() 889 l1--; in and_large() 914 int l1 = op1len - 1; in and_not_large() local [all …]
|
| HD | double-int.c | 31 #define add_double(l1,h1,l2,h2,lv,hv) \ argument 32 add_double_with_sign (l1, h1, l2, h2, lv, hv, false) 43 #define mul_double(l1,h1,l2,h2,lv,hv) \ argument 44 mul_double_wide_with_sign (l1, h1, l2, h2, lv, hv, NULL, NULL, false) 105 add_double_with_sign (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1, in add_double_with_sign() argument 113 l = l1 + l2; in add_double_with_sign() 116 + (l < l1)); in add_double_with_sign() 124 && l < l1)); in add_double_with_sign() 135 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1, in neg_double() argument 138 if (l1 == 0) in neg_double() [all …]
|
| /dragonfly/sys/crypto/des/ |
| HD | des_locl.h | 75 #define c2ln(c,l1,l2,n) { \ argument 77 l1=l2=0; \ 83 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \ 84 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \ 85 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \ 86 case 1: l1|=((DES_LONG)(*(--(c)))); \ 110 #define l2cn(l1,l2,c,n) { \ argument 117 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 118 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 119 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
| HD | des_ecb.c | 118 DES_LONG l0,l1; in des_ecb3_encrypt() local 124 c2l(in,l1); in des_ecb3_encrypt() 126 ll[1]=l1; in des_ecb3_encrypt() 134 l1=ll[1]; in des_ecb3_encrypt() 136 l2c(l1,out); in des_ecb3_encrypt()
|
| /dragonfly/crypto/libressl/crypto/x509/ |
| HD | x509_obj.c | 75 int n, lold, l, l1, l2, num, j, type; in X509_NAME_oneline() local 110 l1 = strlen(s); in X509_NAME_oneline() 139 l += 1 + l1 + 1 + l2; in X509_NAME_oneline() 149 memcpy(p, s, l1); in X509_NAME_oneline() 150 p += l1; in X509_NAME_oneline()
|
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | double-int.c | 79 add_double_with_sign (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1, in add_double_with_sign() argument 87 l = l1 + l2; in add_double_with_sign() 90 + (l < l1)); in add_double_with_sign() 98 && l < l1)); in add_double_with_sign() 109 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1, in neg_double() argument 112 if (l1 == 0) in neg_double() 120 *lv = -l1; in neg_double() 133 mul_double_with_sign (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1, in mul_double_with_sign() argument 146 encode (arg1, l1, h1); in mul_double_with_sign() 183 neg_double (l1, h1, &neglow, &neghigh); in mul_double_with_sign() [all …]
|
| /dragonfly/contrib/gcc-4.7/libcpp/ |
| HD | line-map.c | 793 source_location l0 = *loc0, l1 = *loc1; in first_map_in_common_1() local 795 *map1 = linemap_lookup (set, l1); in first_map_in_common_1() 808 l1 = linemap_macro_map_loc_to_exp_point (map1, l1); in first_map_in_common_1() 809 map1 = linemap_lookup (set, l1); in first_map_in_common_1() 816 *loc1 = l1; in first_map_in_common_1() 852 source_location l0 = pre, l1 = post; in linemap_compare_locations() local 854 if (l0 == l1) in linemap_compare_locations() 862 if ((post_virtual_p = linemap_location_from_macro_expansion_p (set, l1))) in linemap_compare_locations() 863 l1 = linemap_resolve_location (set, l1, in linemap_compare_locations() 867 if (l0 == l1 in linemap_compare_locations() [all …]
|
| /dragonfly/sys/platform/vkernel64/include/ |
| HD | pmap.h | 52 #define KVADDR(l4, l3, l2, l1) ( \ argument 57 ((unsigned long)(l1) << PAGE_SHIFT)) 59 #define UVADDR(l4, l3, l2, l1) ( \ argument 63 ((unsigned long)(l1) << PAGE_SHIFT))
|
| /dragonfly/lib/libc/stdlib/ |
| HD | merge.c | 101 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; in mergesort() local 133 f2 = l1 = list1 + (p2 - list2); in mergesort() 137 while (f1 < l1 && f2 < l2) { in mergesort() 140 b = f1, t = l1; in mergesort() 209 } else if (f1 < l1) { in mergesort() 211 ICOPY_LIST(f1, tp2, l1); in mergesort() 213 CCOPY_LIST(f1, tp2, l1); in mergesort()
|
| /dragonfly/contrib/gdb-7/gdb/gnulib/import/ |
| HD | localcharset.c | 192 size_t l1, l2; in get_charset_aliases() local 213 l1 = strlen (buf1); in get_charset_aliases() 218 res_size = l1 + 1 + l2 + 1; in get_charset_aliases() 223 res_size += l1 + 1 + l2 + 1; in get_charset_aliases() 233 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); in get_charset_aliases()
|
| /dragonfly/contrib/gcc-8.0/libcpp/ |
| HD | line-map.c | 80 location_adhoc_data_eq (const void *l1, const void *l2) in location_adhoc_data_eq() argument 83 (const struct location_adhoc_data *) l1; in location_adhoc_data_eq() 1279 source_location l0 = *loc0, l1 = *loc1; in first_map_in_common_1() local 1281 *map1 = linemap_lookup (set, l1); in first_map_in_common_1() 1295 l1 = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map1), in first_map_in_common_1() 1296 l1); in first_map_in_common_1() 1297 map1 = linemap_lookup (set, l1); in first_map_in_common_1() 1304 *loc1 = l1; in first_map_in_common_1() 1340 source_location l0 = pre, l1 = post; in linemap_compare_locations() local 1344 if (IS_ADHOC_LOC (l1)) in linemap_compare_locations() [all …]
|