Home
last modified time | relevance | path

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

12345678910>>...85

/freebsd/contrib/bc/src/
H A Dbc_lex.c143 bc_vec_string(&l->str, len, l->buf + l->i); in bc_lex_string()
159 if (l->buf[l->i] == '=') in bc_lex_assign()
173 char c = l->buf[l->i++], c2; in bc_lex_token()
228 c2 = l->buf[l->i]; in bc_lex_token()
271 c2 = l->buf[l->i]; in bc_lex_token()
291 c2 = l->buf[l->i]; in bc_lex_token()
305 c2 = l->buf[l->i]; in bc_lex_token()
320 c2 = l->buf[l->i]; in bc_lex_token()
380 c2 = l->buf[l->i]; in bc_lex_token()
403 c2 = l->buf[l->i]; in bc_lex_token()
[all …]
H A Dlex.c56 while (l->i < l->len && l->buf[l->i] != '\n') in bc_lex_lineComment()
130 for (c = l->buf[l->i]; c != '\n' && isspace(c); c = l->buf[++l->i]) in bc_lex_whitespace()
154 const char* buf = l->buf + l->i; in bc_lex_num()
215 char c = l->buf[l->i]; in bc_lex_number()
228 c = l->buf[l->i]; in bc_lex_number()
235 c = l->buf[l->i]; in bc_lex_number()
245 l->i += bc_lex_num(l, 0, true); in bc_lex_number()
306 l->last = l->t; in bc_lex_next()
309 l->line += (l->i != 0 && l->buf[l->i - 1] == '\n'); in bc_lex_next()
317 if (l->i == l->len) return; in bc_lex_next()
[all …]
H A Ddc_lex.c46 char c = l->buf[l->i]; in dc_lex_negCommand()
59 if (DC_X && isspace(l->buf[l->i - 1])) in dc_lex_register()
65 c = l->buf[l->i]; in dc_lex_register()
81 if (BC_ERR(l->buf[l->i - 1] == '\n')) in dc_lex_register()
83 bc_lex_verr(l, BC_ERR_PARSE_CHAR, l->buf[l->i - 1]); in dc_lex_register()
88 bc_vec_pushByte(&l->str, (uchar) l->buf[l->i - 1]); in dc_lex_register()
122 for (i = l->i; (c = l->buf[i]) && depth; ++i) in dc_lex_string()
177 char c = l->buf[l->i++], c2; in dc_lex_token()
222 c2 = l->buf[l->i]; in dc_lex_token()
242 c2 = l->buf[l->i]; in dc_lex_token()
[all …]
/freebsd/sys/crypto/des/
H A Ddes_enc.c79 l=data[1]; in des_encrypt1()
81 IP(r,l); in des_encrypt1()
91 l=ROTATE(l,29)&0xffffffffL; in des_encrypt1()
156 l=ROTATE(l,3)&0xffffffffL; in des_encrypt1()
159 FP(r,l); in des_encrypt1()
160 data[0]=l; in des_encrypt1()
187 l=ROTATE(l,29)&0xffffffffL; in des_encrypt2()
263 IP(l,r); in des_encrypt3()
271 FP(r,l); in des_encrypt3()
283 IP(l,r); in des_decrypt3()
[all …]
/freebsd/contrib/byacc/test/btyacc/
H A Dgrammar.dot12l $accept -> . program $end\l program -> . { $end }\l program -> . translation_unit\l translat…
16 …q4 [label="4:\l any_id -> . T_IDENTIFIER\l any_id -> . T_TYPEDEF_NAME\l identifier_or_ref -> '&…
45 q33 [label="33:\l $accept -> program . $end\l"];
46l declaration -> decl_specifiers . ';'\l declaration -> decl_specifiers . init_declarator_list '…
59l braces -> . T_LBRACE T_MATCHRBRACE\l enum_specifier -> enumeration . any_id braces\l enum_spe…
65l declaration -> any_typedef . decl_specifiers $$1 opt_declarator_list ';'\l decl_specifiers -> …
74l braces -> . T_LBRACE T_MATCHRBRACE\l linkage_specification -> T_EXTERN T_STRING_LITERAL . brac…
84l declaration -> . decl_specifiers ';'\l declaration -> . decl_specifiers init_declarator_list '…
95l $$1 -> . { ';' T_TYPEDEF_NAME T_IDENTIFIER '&' '*' '(' }\l declaration -> any_typedef decl_spe…
110l declaration -> . decl_specifiers ';'\l declaration -> . decl_specifiers init_declarator_list '…
[all …]
/freebsd/contrib/byacc/test/yacc/
H A Dgrammar.dot12l $accept -> . program $end\l program -> . { $end }\l program -> . translation_unit\l translat…
16 …q4 [label="4:\l any_id -> . T_IDENTIFIER\l any_id -> . T_TYPEDEF_NAME\l identifier_or_ref -> '&…
45 q33 [label="33:\l $accept -> program . $end\l"];
46l declaration -> decl_specifiers . ';'\l declaration -> decl_specifiers . init_declarator_list '…
59l braces -> . T_LBRACE T_MATCHRBRACE\l enum_specifier -> enumeration . any_id braces\l enum_spe…
65l declaration -> any_typedef . decl_specifiers $$1 opt_declarator_list ';'\l decl_specifiers -> …
74l braces -> . T_LBRACE T_MATCHRBRACE\l linkage_specification -> T_EXTERN T_STRING_LITERAL . brac…
84l declaration -> . decl_specifiers ';'\l declaration -> . decl_specifiers init_declarator_list '…
95l $$1 -> . { ';' T_TYPEDEF_NAME T_IDENTIFIER '&' '*' '(' }\l declaration -> any_typedef decl_spe…
110l declaration -> . decl_specifiers ';'\l declaration -> . decl_specifiers init_declarator_list '…
[all …]
/freebsd/crypto/openssl/crypto/des/
H A Ddes_enc.c26 l = data[1]; in DES_encrypt1()
28 IP(r, l); in DES_encrypt1()
38 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt1()
82 l = ROTATE(l, 3) & 0xffffffffL; in DES_encrypt1()
85 FP(r, l); in DES_encrypt1()
107 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt2()
162 IP(l, r); in DES_encrypt3()
170 FP(r, l); in DES_encrypt3()
182 IP(l, r); in DES_decrypt3()
220 for (l -= 8; l >= 0; l -= 8) { in DES_ede3_cbc_encrypt()
[all …]
H A Dfcrypt_b.c34 register DES_LONG l, r, t, u; in fcrypt_body() local
39 l = 0; in fcrypt_body()
47 D_ENCRYPT(l, r, 0); /* 1 */ in fcrypt_body()
48 D_ENCRYPT(r, l, 2); /* 2 */ in fcrypt_body()
49 D_ENCRYPT(l, r, 4); /* 3 */ in fcrypt_body()
50 D_ENCRYPT(r, l, 6); /* 4 */ in fcrypt_body()
63 t = l; in fcrypt_body()
64 l = r; in fcrypt_body()
67 l = ROTATE(l, 3) & 0xffffffffL; in fcrypt_body()
70 PERM_OP(l, r, t, 1, 0x55555555L); in fcrypt_body()
[all …]
/freebsd/lib/libc/locale/
H A Dsetrunelocale.c74 free(l); in destruct_ctype()
159 memset(&l->c16rtomb, 0, sizeof(l->c16rtomb)); in __setrunelocale()
160 memset(&l->c32rtomb, 0, sizeof(l->c32rtomb)); in __setrunelocale()
161 memset(&l->mblen, 0, sizeof(l->mblen)); in __setrunelocale()
162 memset(&l->mbrlen, 0, sizeof(l->mbrlen)); in __setrunelocale()
163 memset(&l->mbrtoc16, 0, sizeof(l->mbrtoc16)); in __setrunelocale()
164 memset(&l->mbrtoc32, 0, sizeof(l->mbrtoc32)); in __setrunelocale()
165 memset(&l->mbrtowc, 0, sizeof(l->mbrtowc)); in __setrunelocale()
168 memset(&l->mbtowc, 0, sizeof(l->mbtowc)); in __setrunelocale()
169 memset(&l->wcrtomb, 0, sizeof(l->wcrtomb)); in __setrunelocale()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dvelintrin_approx.h15 v5 = _vel_vrcps_vvl(v1, l); in _vel_approx_vfdivs_vvvl()
19 v2 = _vel_vfmuls_vvvl(v0, v3, l); in _vel_approx_vfdivs_vvvl()
30 v5 = _vel_pvrcp_vvl(v1, l); in _vel_approx_pvfdiv_vvvl()
34 v2 = _vel_pvfmul_vvvl(v0, v3, l); in _vel_approx_pvfdiv_vvvl()
45 v4 = _vel_vrcps_vvl(v0, l); in _vel_approx_vfdivs_vsvl()
49 v1 = _vel_vfmuls_vsvl(s0, v2, l); in _vel_approx_vfdivs_vsvl()
69 v2 = _vel_vrcpd_vvl(v0, l); in _vel_approx_vfdivd_vsvl()
75 v1 = _vel_vaddul_vsvl(1, v1, l); in _vel_approx_vfdivd_vsvl()
87 v2 = _vel_vrsqrtdnex_vvl(v0, l); in _vel_approx_vfsqrtd_vvl()
104 v0 = _vel_vcvtds_vvl(v0, l); in _vel_approx_vfsqrts_vvl()
[all …]
/freebsd/lib/libsdp/
H A Dsdp.h356 (l)->b[15] = *t_cp++; \
357 (l)->b[14] = *t_cp++; \
358 (l)->b[13] = *t_cp++; \
359 (l)->b[12] = *t_cp++; \
360 (l)->b[11] = *t_cp++; \
361 (l)->b[10] = *t_cp++; \
362 (l)->b[9] = *t_cp++; \
363 (l)->b[8] = *t_cp++; \
364 (l)->b[7] = *t_cp++; \
417 #define SDP_GET_UUID128(l, cp) SDP_GET128(l, cp) argument
[all …]
/freebsd/lib/libmd/
H A Drmd_locl.h62 #define c2nl(c,l) (l =(((u_int32_t)(*((c)++)))<<24), \ argument
80 l=0; \
102 #define nl2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ argument
108 #define c2l(c,l) (l =(((u_int32_t)(*((c)++))) ), \ argument
126 l=0; \
148 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
165 u_int32_t l=(a); \
166 (a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
172 u_int32_t l=(a); \
173 l=(((l&0xFF00FF00)>>8L)|((l&0x00FF00FF)<<8L)); \
[all …]
H A Dsha_locl.h75 #define c2nl(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ argument
93 l=0; \
115 #define nl2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ argument
121 #define c2l(c,l) (l =(((unsigned long)(*((c)++))) ), \ argument
139 l=0; \
161 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
178 unsigned long l=(a); \
179 (a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
185 unsigned long l=(a); \
186 l=(((l&0xFF00FF00)>>8L)|((l&0x00FF00FF)<<8L)); \
[all …]
/freebsd/usr.sbin/ppp/
H A Dlink.c77 if (l->stats.gather) { in link_AddInOctets()
79 if (l->stats.parent) in link_AddInOctets()
87 if (l->stats.gather) { in link_AddOutOctets()
89 if (l->stats.parent) in link_AddOutOctets()
239 ProtocolStat[i].name, l->proto_in[i], l->proto_out[i]); in link_ReportProtocolStatus()
266 bp = (*l->layer[layer - 1]->push)(b, l, bp, pri, &proto); in link_PushPacket()
313 bp = (*l->layer[layer]->pull)(b, l, bp, &proto); in link_PullPacket()
334 if (l->nlayers == sizeof l->layer / sizeof l->layer[0]) { in link_Stack()
339 l->layer[l->nlayers++] = layer; in link_Stack()
346 l->nlayers = 0; in link_EmptyStack()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DIntervalMap.cpp32 while (l && path[l].offset == 0) in getLeftSibling()
33 --l; in getLeftSibling()
43 for (++l; l != Level; ++l) in getLeftSibling()
68 for (++l; l != Level; ++l) { in moveLeft()
82 while (l && atLastEntry(l)) in getRightSibling()
83 --l; in getRightSibling()
93 for (++l; l != Level; ++l) in getRightSibling()
103 while (l && atLastEntry(l)) in moveRight()
104 --l; in moveRight()
108 if (++path[l].offset == path[l].size) in moveRight()
[all …]
/freebsd/cddl/contrib/opensolaris/head/
H A Dthread.h52 #define _mutex_destroy(l) pthread_mutex_destroy(l) argument
53 #define mutex_lock(l) pthread_mutex_lock(l) argument
54 #define mutex_trylock(l) pthread_mutex_trylock(l) argument
55 #define mutex_unlock(l) pthread_mutex_unlock(l) argument
58 #define rw_rdlock(l) pthread_rwlock_rdlock(l) argument
59 #define rw_wrlock(l) pthread_rwlock_wrlock(l) argument
62 #define rw_unlock(l) pthread_rwlock_unlock(l) argument
63 #define cond_init(l,f,a) pthread_cond_init(l,NULL) argument
64 #define cond_destroy(l) pthread_cond_destroy(l) argument
65 #define cond_wait(l,m) pthread_cond_wait(l,m) argument
[all …]
/freebsd/crypto/openssl/crypto/bf/
H A Dbf_enc.c32 register BF_LONG l, r; in BF_encrypt() local
37 l = data[0]; in BF_encrypt()
40 l ^= p[0]; in BF_encrypt()
41 BF_ENC(r, l, s, p[1]); in BF_encrypt()
42 BF_ENC(l, r, s, p[2]); in BF_encrypt()
43 BF_ENC(r, l, s, p[3]); in BF_encrypt()
76 l = data[0]; in BF_decrypt()
120 for (l -= 8; l >= 0; l -= 8) { in BF_cbc_encrypt()
133 if (l != -8) { in BF_cbc_encrypt()
151 for (l -= 8; l >= 0; l -= 8) { in BF_cbc_encrypt()
[all …]
/freebsd/contrib/bc/tests/bc/
H A Dlog.txt1 l(0)
2 l(0.5)
3 l(1)
4 l(1.5)
5 l(1.74)
6 l(2)
10 l(100)
12 l(-0.5)
13 l(-1)
14 l(-1.5)
[all …]
/freebsd/crypto/openssl/crypto/cast/
H A Dc_enc.c21 CAST_LONG l, r, t; in CAST_encrypt() local
25 l = data[0]; in CAST_encrypt()
28 E_CAST(0, k, l, r, +, ^, -); in CAST_encrypt()
47 data[1] = l & 0xffffffffL; in CAST_encrypt()
53 CAST_LONG l, r, t; in CAST_decrypt() local
57 l = data[0]; in CAST_decrypt()
89 register long l = length; in CAST_cbc_encrypt() local
96 for (l -= 8; l >= 0; l -= 8) { in CAST_cbc_encrypt()
109 if (l != -8) { in CAST_cbc_encrypt()
127 for (l -= 8; l >= 0; l -= 8) { in CAST_cbc_encrypt()
[all …]
/freebsd/crypto/heimdal/include/
H A Dheim_threads.h70 #define HEIMDAL_RWLOCK_init(l) rwlock_init(l, NULL) argument
71 #define HEIMDAL_RWLOCK_rdlock(l) rwlock_rdlock(l) argument
72 #define HEIMDAL_RWLOCK_wrlock(l) rwlock_wrlock(l) argument
73 #define HEIMDAL_RWLOCK_tryrdlock(l) rwlock_tryrdlock(l) argument
74 #define HEIMDAL_RWLOCK_trywrlock(l) rwlock_trywrlock(l) argument
75 #define HEIMDAL_RWLOCK_unlock(l) rwlock_unlock(l) argument
76 #define HEIMDAL_RWLOCK_destroy(l) rwlock_destroy(l) argument
97 #define HEIMDAL_RWLOCK_init(l) pthread_rwlock_init(l, NULL) argument
98 #define HEIMDAL_RWLOCK_rdlock(l) pthread_rwlock_rdlock(l) argument
99 #define HEIMDAL_RWLOCK_wrlock(l) pthread_rwlock_wrlock(l) argument
[all …]
/freebsd/sys/net/
H A Dmppcc.c60 *l = (*l) - n; in putbits8()
61 val <<= *l; in putbits8()
64 *l = 8; in putbits8()
70 *l = 8 - n + (*l); in putbits8()
84 *l = 8 - n + (*l); in putbits16()
95 *l = 16 - n + (*l); in putbits16()
110 *l = 16 - n + (*l); in putbits24()
122 *l = 24 - n + (*l); in putbits24()
186 l = 8; in MPPC_Compress()
280 if ((l != 0) && (l != 8)) { in MPPC_Compress()
[all …]
/freebsd/usr.bin/col/
H A Dcol.c252 l = l->l_prev; in main()
282 l->l_next->l_prev = l; in main()
284 l = l->l_next; in main()
301 if (l->l_line_len + 1 >= l->l_lsize) { in main()
304 need = l->l_lsize ? l->l_lsize * 2 : 90; in main()
305 if ((l->l_line = realloc(l->l_line, in main()
310 c = &l->l_line[l->l_line_len++]; in main()
340 for (; l->l_next; l = l->l_next) in main()
368 LINE *l; in flush_lines() local
552 LINE *l; in alloc_line() local
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzap_leaf.c49 #define LEAF_HASH(l, h) \ argument
52 (64 - ZAP_LEAF_HASH_SHIFT(l) - zap_leaf_phys(l)->l_hdr.lh_prefix_len)))
54 #define LEAF_HASH_ENTPTR(l, h) (&zap_leaf_phys(l)->l_hash[LEAF_HASH(l, h)]) argument
98 zap_leaf_t l; in zap_leaf_byteswap() local
103 l.l_dbuf = &l_dbuf; in zap_leaf_byteswap()
153 l->l_bs = highbit64(l->l_dbuf->db_size) - 1; in zap_leaf_init()
162 ZAP_LEAF_CHUNK(l, ZAP_LEAF_NUMCHUNKS(l)-1).l_free.lf_next = CHAIN_END; in zap_leaf_init()
165 zap_leaf_phys(l)->l_hdr.lh_nfree = ZAP_LEAF_NUMCHUNKS(l); in zap_leaf_init()
195 ASSERT3U(zap_leaf_phys(l)->l_hdr.lh_nfree, <, ZAP_LEAF_NUMCHUNKS(l)); in zap_leaf_chunk_free()
412 zeh->zeh_leaf = l; in zap_leaf_lookup()
[all …]
/freebsd/lib/libiconv_modules/JOHAB/
H A Dcitrus_johab.c126 return ((l >= 0x84 && l <= 0xD3) && in ishangul()
142 return (((l >= 0xD9 && l <= 0xDE) || (l >= 0xE0 && l <= 0xF9)) && in ishanja()
153 int l, t; in _citrus_JOHAB_mbrtowc_priv() local
167 if (l <= 0x7F) { in _citrus_JOHAB_mbrtowc_priv()
189 if (!ishangul(l, t) && !isuda(l, t) && !ishanja(l, t)) { in _citrus_JOHAB_mbrtowc_priv()
208 int l, t; in _citrus_JOHAB_wcrtomb_priv() local
227 if (!ishangul(l, t) && !isuda(l, t) && !ishanja(l, t)) in _citrus_JOHAB_wcrtomb_priv()
229 *s++ = l; in _citrus_JOHAB_wcrtomb_priv()
255 if (ishangul(l, t) || isuda(l, t)) { in _citrus_JOHAB_stdenc_wctocs()
259 if (l >= 0xD9 && l <= 0xDE) { in _citrus_JOHAB_stdenc_wctocs()
[all …]
/freebsd/tools/tools/locale/tools/
H A Dcldr2def.pl347 chomp($l);
348 next if ($l =~ /^\#/);
349 next if ($l eq "");
401 my $file = $l;
483 $file = $l . "_";
568 my ($elem, $l);
574 defined $l and
619 $file = $l . "_";
756 my $file = $l;
795 $callback{data}{l} = $l;
[all …]

12345678910>>...85