Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 1233) sorted by relevance

12345678910>>...50

/external/e2fsprogs/intl/
Dconfig.charset130 for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \
138 echo "$l ISO-8859-1"
139 echo "$l.iso-8859-1 ISO-8859-1"
140 echo "$l.iso-8859-15 ISO-8859-15"
141 echo "$l.iso-8859-15@euro ISO-8859-15"
142 echo "$l@euro ISO-8859-15"
143 echo "$l.cp-437 CP437"
144 echo "$l.cp-850 CP850"
145 echo "$l.cp-1252 CP1252"
146 echo "$l.cp-1252@euro CP1252"
[all …]
/external/dropbear/libtomcrypt/testprof/
Dder_tests.c148 ltc_asn1_list static_list[5][3], *decoded_list, *l; in der_flexi_test() local
199 l = decoded_list; in der_flexi_test()
200 if (l->next != NULL || l->child == NULL) { in der_flexi_test()
201 …next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent,… in der_flexi_test()
206 if (l->type != LTC_ASN1_SEQUENCE) { in der_flexi_test()
207 …next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent,… in der_flexi_test()
210 l = l->child; in der_flexi_test()
214 if (l->next == NULL || l->child != NULL) { in der_flexi_test()
215 …next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent,… in der_flexi_test()
219 if (l->type != LTC_ASN1_PRINTABLE_STRING) { in der_flexi_test()
[all …]
/external/qemu/android/utils/
Dreflist.c17 areflist_setEmpty(ARefList* l) in areflist_setEmpty() argument
19 if (l->iteration > 0) { in areflist_setEmpty()
22 void** items = areflist_items(l); in areflist_setEmpty()
23 memset(items, 0, l->count*sizeof(items[0])); in areflist_setEmpty()
24 l->iteration |= 1; in areflist_setEmpty()
27 if (l->max > 1) { in areflist_setEmpty()
28 free(l->u.items); in areflist_setEmpty()
29 l->max = 1; in areflist_setEmpty()
32 l->count = 0; in areflist_setEmpty()
36 areflist_indexOf(ARefList* l, void* item) in areflist_indexOf() argument
[all …]
Dreflist.h33 areflist_init(ARefList* l) in areflist_init() argument
35 l->count = 0; in areflist_init()
36 l->max = 1; in areflist_init()
37 l->iteration = 0; in areflist_init()
40 void areflist_setEmpty(ARefList* l);
43 areflist_done(ARefList* l) in areflist_done() argument
45 areflist_setEmpty(l); in areflist_done()
49 areflist_isEmpty(ARefList* l) in areflist_isEmpty() argument
51 return (l->count == 0); in areflist_isEmpty()
54 int areflist_indexOf(ARefList* l, void* item);
[all …]
/external/openssl/crypto/des/
Ddes_enc.c63 register DES_LONG l,r,t,u; in DES_encrypt1() local
73 l=data[1]; in DES_encrypt1()
75 IP(r,l); in DES_encrypt1()
85 l=ROTATE(l,29)&0xffffffffL; in DES_encrypt1()
93 D_ENCRYPT(l,r, 0); /* 1 */ in DES_encrypt1()
94 D_ENCRYPT(r,l, 2); /* 2 */ in DES_encrypt1()
95 D_ENCRYPT(l,r, 4); /* 3 */ in DES_encrypt1()
96 D_ENCRYPT(r,l, 6); /* 4 */ in DES_encrypt1()
97 D_ENCRYPT(l,r, 8); /* 5 */ in DES_encrypt1()
98 D_ENCRYPT(r,l,10); /* 6 */ in DES_encrypt1()
[all …]
Dfcrypt_b.c83 register DES_LONG l,r,t,u; in fcrypt_body() local
91 l=0; in fcrypt_body()
105 D_ENCRYPT(l,r,i+0); /* 1 */ in fcrypt_body()
106 D_ENCRYPT(r,l,i+2); /* 2 */ in fcrypt_body()
107 D_ENCRYPT(l,r,i+4); /* 1 */ in fcrypt_body()
108 D_ENCRYPT(r,l,i+6); /* 2 */ in fcrypt_body()
111 D_ENCRYPT(l,r, 0); /* 1 */ in fcrypt_body()
112 D_ENCRYPT(r,l, 2); /* 2 */ in fcrypt_body()
113 D_ENCRYPT(l,r, 4); /* 3 */ in fcrypt_body()
114 D_ENCRYPT(r,l, 6); /* 4 */ in fcrypt_body()
[all …]
Ddes_old.h140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ argument
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ argument
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ argument
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ argument
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n))
150 #define des_cbc_cksum(i,o,l,k,iv)\ argument
151 DES_cbc_cksum((i),(o),(l),&(k),(iv))
[all …]
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
Dder_decode_sequence_flexi.c65 ltc_asn1_list *l; in der_decode_sequence_flexi() local
73 l = NULL; in der_decode_sequence_flexi()
89 if (l == NULL) { in der_decode_sequence_flexi()
90 l = XCALLOC(1, sizeof(*l)); in der_decode_sequence_flexi()
91 if (l == NULL) { in der_decode_sequence_flexi()
96 l->next = XCALLOC(1, sizeof(*l)); in der_decode_sequence_flexi()
97 if (l->next == NULL) { in der_decode_sequence_flexi()
101 l->next->prev = l; in der_decode_sequence_flexi()
102 l = l->next; in der_decode_sequence_flexi()
108 l->type = LTC_ASN1_BOOLEAN; in der_decode_sequence_flexi()
[all …]
/external/libxml2/
Dlist.c59 xmlLinkDeallocator(xmlListPtr l, xmlLinkPtr lk) in xmlLinkDeallocator() argument
63 if(l->linkDeallocator) in xmlLinkDeallocator()
64 l->linkDeallocator(lk); in xmlLinkDeallocator()
98 xmlListLowerSearch(xmlListPtr l, void *data) in xmlListLowerSearch() argument
102 if (l == NULL) in xmlListLowerSearch()
104 … for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next); in xmlListLowerSearch()
118 xmlListHigherSearch(xmlListPtr l, void *data) in xmlListHigherSearch() argument
122 if (l == NULL) in xmlListHigherSearch()
124 … for(lk = l->sentinel->prev;lk != l->sentinel && l->linkCompare(lk->data, data) >0 ;lk = lk->prev); in xmlListHigherSearch()
138 xmlListLinkSearch(xmlListPtr l, void *data) in xmlListLinkSearch() argument
[all …]
/external/icu4c/tools/pkgdata/
Dpkgtypes.c27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, i… in pkg_writeCharListWrap() argument
31 while(l != NULL) in pkg_writeCharListWrap()
33 if(l->str) in pkg_writeCharListWrap()
35 uprv_strncpy(buffer, l->str, 1020); in pkg_writeCharListWrap()
46 if(l->str[0] != '"') { in pkg_writeCharListWrap()
48 uprv_strncat(buffer, l->str,1020); in pkg_writeCharListWrap()
50 if(l->str[uprv_strlen(l->str)-1] != '"') { in pkg_writeCharListWrap()
56 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap()
59 if(l->next && delim) in pkg_writeCharListWrap()
67 l = l->next; in pkg_writeCharListWrap()
[all …]
/external/qemu/android/avd/
Dinfo.c382 imageLoader_init( ImageLoader* l, AvdInfo* info, AvdInfoParams* params ) in imageLoader_init() argument
384 memset(l, 0, sizeof(*l)); in imageLoader_init()
385 l->info = info; in imageLoader_init()
386 l->params = params; in imageLoader_init()
391 imageLoader_set( ImageLoader* l, AvdImageType id ) in imageLoader_set() argument
393 l->id = id; in imageLoader_set()
394 l->imageFile = _imageFileNames[id]; in imageLoader_set()
395 l->imageText = _imageFileText[id]; in imageLoader_set()
396 l->pPath = &l->info->imagePath[id]; in imageLoader_set()
397 l->pState = &l->info->imageState[id]; in imageLoader_set()
[all …]
/external/openssl/crypto/
Dmd32_common.h209 # define HOST_c2l(c,l) ({ unsigned int r=*((const unsigned int *)(c)); \ argument
211 (c)+=4; (l)=r; })
212 # define HOST_l2c(l,c) ({ unsigned int r=(l); \ argument
220 # define HOST_c2l(c,l) ((l)=*((const unsigned int *)(c)), (c)+=4, (l)) argument
221 # define HOST_l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4, (l)) argument
225 #define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ argument
226 l|=(((unsigned long)(*((c)++)))<<16), \
227 l|=(((unsigned long)(*((c)++)))<< 8), \
228 l|=(((unsigned long)(*((c)++))) ), \
229 l)
[all …]
/external/bison/src/
Dsymlist.c61 symbol_list_print (const symbol_list *l, FILE *f) in symbol_list_print() argument
63 for (/* Nothing. */; l && l->sym; l = l->next) in symbol_list_print()
65 symbol_print (l->sym, f); in symbol_list_print()
66 fprintf (stderr, l->used ? " used" : " unused"); in symbol_list_print()
67 if (l && l->sym) in symbol_list_print()
102 symbol_list_length (const symbol_list *l) in symbol_list_length() argument
105 for (/* Nothing. */; l; l = l->next) in symbol_list_length()
116 symbol_list_n_get (symbol_list *l, int n) in symbol_list_n_get() argument
125 l = l->next; in symbol_list_n_get()
126 if (l == NULL || l->sym == NULL) in symbol_list_n_get()
[all …]
/external/webkit/WebCore/css/
DCSSHelper.cpp37 int l = i->length(); in deprecatedParseURL() local
39 while (o < l && (*i)[o] <= ' ') { in deprecatedParseURL()
41 --l; in deprecatedParseURL()
43 while (l > 0 && (*i)[o + l - 1] <= ' ') in deprecatedParseURL()
44 --l; in deprecatedParseURL()
46 if (l >= 5 in deprecatedParseURL()
51 && (*i)[o + l - 1] == ')') { in deprecatedParseURL()
53 l -= 5; in deprecatedParseURL()
56 while (o < l && (*i)[o] <= ' ') { in deprecatedParseURL()
58 --l; in deprecatedParseURL()
[all …]
/external/openssl/crypto/pem/
Dpkcs7.lis1 21 0:d=0 hl=2 l= 0 cons: univ: SEQUENCE
2 00 2:d=0 hl=2 l= 9 prim: univ: OBJECT_IDENTIFIER :pkcs-7-signedData
3 21 13:d=0 hl=2 l= 0 cons: cont: 00 # explicit tag
4 21 15:d=0 hl=2 l= 0 cons: univ: SEQUENCE
5 00 17:d=0 hl=2 l= 1 prim: univ: INTEGER # version
6 20 20:d=0 hl=2 l= 0 cons: univ: SET
7 21 22:d=0 hl=2 l= 0 cons: univ: SEQUENCE
8 00 24:d=0 hl=2 l= 9 prim: univ: OBJECT_IDENTIFIER :pkcs-7-data
9 00 35:d=0 hl=2 l= 0 prim: univ: EOC
10 21 37:d=0 hl=2 l= 0 cons: cont: 00 # cert tag
[all …]
/external/bluetooth/glib/gio/
Dgunionvolumemonitor.c84 GList *l; in g_union_volume_monitor_dispose() local
91 for (l = monitor->monitors; l != NULL; l = l->next) in g_union_volume_monitor_dispose()
93 child_monitor = l->data; in g_union_volume_monitor_dispose()
108 GList *l; in get_mounts() local
116 for (l = monitor->monitors; l != NULL; l = l->next) in get_mounts()
118 child_monitor = l->data; in get_mounts()
134 GList *l; in get_volumes() local
142 for (l = monitor->monitors; l != NULL; l = l->next) in get_volumes()
144 child_monitor = l->data; in get_volumes()
160 GList *l; in get_connected_drives() local
[all …]
Dgunixvolumemonitor.c114 GList *l; in get_mounts() local
118 l = g_list_copy (monitor->mounts); in get_mounts()
119 g_list_foreach (l, (GFunc)g_object_ref, NULL); in get_mounts()
121 return l; in get_mounts()
128 GList *l; in get_volumes() local
132 l = g_list_copy (monitor->volumes); in get_volumes()
133 g_list_foreach (l, (GFunc)g_object_ref, NULL); in get_volumes()
135 return l; in get_volumes()
312 GList *l; in _g_unix_volume_monitor_lookup_volume_for_mount_path() local
314 for (l = monitor->volumes; l != NULL; l = l->next) in _g_unix_volume_monitor_lookup_volume_for_mount_path()
[all …]
/external/libffi/src/sh64/
Dsysv.S59 addi.l r15, -48, r15
66 st.l r15, 4, r18
67 st.l r15, 0, r14
69 add.l r15, r63, r14
79 sub.l r15, r4, r15
81 ptabs/l r2, tr0
89 pt/l 1f, tr1
90 bnei/l r29, FFI_TYPE_STRUCT, tr1
91 ld.l r15, 0, r19
100 pt/l .L_call_it, tr0
[all …]
/external/clearsilver/util/
Dneo_str.c82 static NEOERR* string_check_length (STRING *str, int l) in string_check_length() argument
86 if (l * 10 > 256) in string_check_length()
87 str->max = l * 10; in string_check_length()
96 else if (str->len + l >= str->max) in string_check_length()
101 } while (str->len + l >= str->max); in string_check_length()
120 int l; in string_append() local
122 l = strlen(buf); in string_append()
123 err = string_check_length (str, l); in string_append()
126 str->len += l; in string_append()
131 NEOERR *string_appendn (STRING *str, const char *buf, int l) in string_appendn() argument
[all …]
/external/libxml2/include/libxml/
Dlist.h59 xmlListDelete (xmlListPtr l);
63 xmlListSearch (xmlListPtr l,
66 xmlListReverseSearch (xmlListPtr l,
69 xmlListInsert (xmlListPtr l,
72 xmlListAppend (xmlListPtr l,
75 xmlListRemoveFirst (xmlListPtr l,
78 xmlListRemoveLast (xmlListPtr l,
81 xmlListRemoveAll (xmlListPtr l,
84 xmlListClear (xmlListPtr l);
86 xmlListEmpty (xmlListPtr l);
[all …]
/external/clearsilver/cgi/
Drfc2388.c34 int l; in _header_value() local
44 l = q - p; in _header_value()
45 *val = (char *) malloc (l+1); in _header_value()
48 memcpy (*val, p, l); in _header_value()
49 (*val)[l] = '\0'; in _header_value()
58 int l, al; in _header_attr() local
62 l = strlen(attr); in _header_attr()
78 if (l == (p-k) && !strncasecmp(attr, k, l)) in _header_attr()
125 static NEOERR * _read_line (CGI *cgi, char **s, int *l, int *done) in _read_line() argument
142 *l = cgi->last_length; in _read_line()
[all …]
/external/libffi/src/m68k/
Dsysv.S55 move.l %d2,-(%sp)
59 sub.l 12(%fp),%sp
62 move.l 8(%fp),-(%sp)
67 bsr.l ffi_prep_args@PLTPC
69 addq.l #8,%sp
72 move.l %a0,%a1
75 move.l 24(%fp),%a0
79 add.l 12(%fp),%sp
82 move.l 20(%fp),%a1
85 move.l 16(%fp),%d2
[all …]
/external/openssl/include/openssl/
Ddes_old.h140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ argument
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ argument
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ argument
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ argument
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n))
150 #define des_cbc_cksum(i,o,l,k,iv)\ argument
151 DES_cbc_cksum((i),(o),(l),&(k),(iv))
[all …]
/external/openssl/crypto/md4/
Dmd4_dgst.c92 register unsigned MD32_REG_T A,B,C,D,l; in md4_block_data_order() local
110 HOST_c2l(data,l); X( 0)=l; HOST_c2l(data,l); X( 1)=l; in md4_block_data_order()
112 R0(A,B,C,D,X( 0), 3,0); HOST_c2l(data,l); X( 2)=l; in md4_block_data_order()
113 R0(D,A,B,C,X( 1), 7,0); HOST_c2l(data,l); X( 3)=l; in md4_block_data_order()
114 R0(C,D,A,B,X( 2),11,0); HOST_c2l(data,l); X( 4)=l; in md4_block_data_order()
115 R0(B,C,D,A,X( 3),19,0); HOST_c2l(data,l); X( 5)=l; in md4_block_data_order()
116 R0(A,B,C,D,X( 4), 3,0); HOST_c2l(data,l); X( 6)=l; in md4_block_data_order()
117 R0(D,A,B,C,X( 5), 7,0); HOST_c2l(data,l); X( 7)=l; in md4_block_data_order()
118 R0(C,D,A,B,X( 6),11,0); HOST_c2l(data,l); X( 8)=l; in md4_block_data_order()
119 R0(B,C,D,A,X( 7),19,0); HOST_c2l(data,l); X( 9)=l; in md4_block_data_order()
[all …]
/external/ipsec-tools/src/racoon/
Doakley.c105 buf.v = str2val((s), 16, &buf.l); \
192 if (prime->l == pub->l)
195 if (prime->l < pub->l) {
203 tmp = vmalloc(prime->l);
209 memcpy(tmp->v + prime->l - pub->l, pub->v, pub->l);
230 if ((*gxy = vmalloc(dh->prime->l)) == NULL) {
261 s_attr_isakmp_group(dh->type), dh->prime->l << 3,
266 plogdump(LLV_DEBUG, (*gxy)->v, (*gxy)->l);
308 s_attr_isakmp_group(dh->type), dh->prime->l << 3,
316 plogdump(LLV_DEBUG, (*priv)->v, (*priv)->l);
[all …]

12345678910>>...50