Searched refs:il (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_idr.c182 struct idr_layer *il, *iln; local
186 for (il = idr->free; il != NULL; il = iln) {
187 iln = il->ary[0];
188 free(il, M_IDR);
195 idr_remove_layer(struct idr_layer *il, int layer) argument
199 if (il == NULL)
202 free(il, M_IDR);
206 if (il
224 struct idr_layer *il; local
276 struct idr_layer *il; local
294 struct idr_layer *il; local
316 struct idr_layer *il; local
360 struct idr_layer *il, *iln; local
395 struct idr_layer *il; local
407 struct idr_layer *il; local
429 struct idr_layer *il; local
516 struct idr_layer *il; local
691 idr_for_each_layer(struct idr_layer *il, int offset, int layer, int (*f)(int id, void *p, void *data), void *data) argument
[all...]
/freebsd-11-stable/sys/dev/iscsi/
H A Dicl_soft_proxy.c166 struct icl_listen *il; local
168 il = malloc(sizeof(*il), M_ICL_PROXY, M_ZERO | M_WAITOK);
169 TAILQ_INIT(&il->il_sockets);
170 sx_init(&il->il_lock, "icl_listen");
171 il->il_accept = accept_cb;
173 return (il);
177 icl_listen_free(struct icl_listen *il) argument
181 sx_xlock(&il->il_lock);
182 while (!TAILQ_EMPTY(&il
286 icl_listen_add_tcp(struct icl_listen *il, int domain, int socktype, int protocol, struct sockaddr *sa, int portal_id) argument
350 icl_listen_add(struct icl_listen *il, bool rdma, int domain, int socktype, int protocol, struct sockaddr *sa, int portal_id) argument
365 icl_listen_remove(struct icl_listen *il, struct sockaddr *sa) argument
[all...]
H A Dicl.h148 void icl_listen_free(struct icl_listen *il);
149 int icl_listen_add(struct icl_listen *il, bool rdma,
152 int icl_listen_remove(struct icl_listen *il, struct sockaddr *sa);
/freebsd-11-stable/usr.bin/indent/
H A Dparse.c81 ps.il[ps.tos] = ps.i_l_follow;
102 ps.i_l_follow = ps.il[ps.tos--];
107 ps.il[ps.tos] = ps.ind_level = ps.i_l_follow;
136 ps.il[ps.tos] = ps.ind_level;
139 ps.il[ps.tos] = ps.i_l_follow;
145 ps.ind_level = ps.i_l_follow = ps.il[ps.tos];
147 ps.il[ps.tos] = ps.ind_level = ps.i_l_follow;
151 ps.il[ps.tos] = ps.i_l_follow;
163 ps.ind_level = ps.il[ps.tos]; /* indentation for else should
176 ps.ind_level = ps.i_l_follow = ps.il[
[all...]
H A Dindent_globs.h240 int il[STACKSIZE]; /* this stack stores indentation levels */ member in struct:parser_state
/freebsd-11-stable/sys/crypto/camellia/
H A Dcamellia.c108 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
110 il = xl ^ kl; \
112 t0 = il >> 16; \
120 ^ CAMELLIA_SP3033((il >> 8) & 0xff) \
121 ^ CAMELLIA_SP4404(il & 0xff); \
144 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
147 il = CAMELLIA_SP1110((xl>>24) & 0xff); \
149 il ^= CAMELLIA_SP0222((xl>>16) & 0xff); \
151 il ^= CAMELLIA_SP3033((xl>>8) & 0xff); \
153 il
443 uint32_t il, ir, t0, t1, w0, w1; local
650 uint32_t il, ir, t0, t1, w0, w1; /* temporary variables */ local
948 uint32_t il, ir, t0, t1; local
1015 uint32_t il,ir,t0,t1; /* temporary valiables */ local
1085 uint32_t il,ir,t0,t1; /* temporary valiables */ local
1168 uint32_t il,ir,t0,t1; /* temporary valiables */ local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DGetopt.java190 int il; // optstring length
198 il = optstring.length();
202 if (ic != '(' && ++ip == il)
205 if (ic == ':' && ++ip == il)
209 if (++ip == il)
213 while (ip < il && (ic = optstring.charAt(ip)) != ')' &&
220 if (match && ip < il && ic == ')' && (op >= ol ||
230 if (ip < il && ic == ')' && ++ip == il)
239 while ((cp > 0) && (cp < il)
[all...]
/freebsd-11-stable/sys/opencrypto/
H A Dskipjack.c81 #define g(k0, k1, k2, k3, ih, il, oh, ol) \
83 oh = k##k0 [il] ^ ih; \
84 ol = k##k1 [oh] ^ il; \
89 #define g0(ih, il, oh, ol) g(0, 1, 2, 3, ih, il, oh, ol)
90 #define g4(ih, il, oh, ol) g(4, 5, 6, 7, ih, il, oh, ol)
91 #define g8(ih, il, oh, ol) g(8, 9, 0, 1, ih, il, oh, ol)
92 #define g2(ih, il, o
[all...]
/freebsd-11-stable/usr.sbin/syslogd/
H A Dsyslogd.c1712 iovlist_init(struct iovlist *il) argument
1715 il->iovcnt = 0;
1716 il->totalsize = 0;
1720 iovlist_append(struct iovlist *il, const char *str) argument
1725 if (il->iovcnt < nitems(il->iov)) {
1727 il->iov[il->iovcnt++] = (struct iovec){
1731 il->totalsize += size;
1737 iovlist_truncate(struct iovlist *il, size_ argument
1759 fprintlog_write(struct filed *f, struct iovlist *il, int flags) argument
1910 struct iovlist il; local
1959 struct iovlist il; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dcfglayout.c214 bb->il.rtl->header = unlink_insn_chain (next_insn,
218 bb->il.rtl->footer = unlink_insn_chain (NEXT_INSN (BB_END (bb)), end);
611 if (bb->il.rtl->header)
614 NEXT_INSN (insn) = bb->il.rtl->header;
616 set_first_insn (bb->il.rtl->header);
617 PREV_INSN (bb->il.rtl->header) = insn;
618 insn = bb->il.rtl->header;
628 if (bb->il.rtl->footer)
630 NEXT_INSN (insn) = bb->il.rtl->footer;
631 PREV_INSN (bb->il
[all...]
H A Dcfgrtl.c382 if (b->il.rtl->global_live_at_start)
384 FREE_REG_SET (b->il.rtl->global_live_at_start);
385 FREE_REG_SET (b->il.rtl->global_live_at_end);
386 b->il.rtl->global_live_at_start = NULL;
387 b->il.rtl->global_live_at_end = NULL;
518 if (bb->il.rtl->global_live_at_start)
520 new_bb->il.rtl->global_live_at_start = ALLOC_REG_SET (&reg_obstack);
521 new_bb->il.rtl->global_live_at_end = ALLOC_REG_SET (&reg_obstack);
522 COPY_REG_SET (new_bb->il.rtl->global_live_at_end, bb->il
[all...]
H A Dtracer.c69 #define seen(bb) (bb->il.rtl->visited || bb->aux)
297 bb2->il.rtl->visited = 1;
338 && !e->dest->il.rtl->visited
345 best->dest->il.rtl->visited = 1;
350 if (!bb->il.rtl->visited)
353 bb->il.rtl->visited = 1;
H A Dbb-reorder.c315 && e->dest->il.rtl->visited != trace_n
322 if (!e->dest->il.rtl->visited
338 if (!e->dest->il.rtl->visited
411 bb->il.rtl->visited = trace;
505 if (e->dest->il.rtl->visited
506 && e->dest->il.rtl->visited != *n_traces)
559 || e->dest->il.rtl->visited)
620 if (best_edge->dest->il.rtl->visited == *n_traces)
690 && !e->dest->il.rtl->visited
724 || e->dest->il
[all...]
H A Dflow.c421 mark_regs_live_at_end (EXIT_BLOCK_PTR->il.rtl->global_live_at_start);
510 bb->il.rtl->global_live_at_start))
530 XOR_REG_SET (new_live_at_start, bb->il.rtl->global_live_at_start);
535 if (REGNO_REG_SET_P (bb->il.rtl->global_live_at_start, i))
614 COPY_REG_SET (tmp, bb->il.rtl->global_live_at_end);
643 CLEAR_REG_SET (bb->il.rtl->global_live_at_start);
644 CLEAR_REG_SET (bb->il.rtl->global_live_at_end);
680 COPY_REG_SET (tmp, bb->il.rtl->global_live_at_end);
692 COPY_REG_SET (tmp, bb->il.rtl->global_live_at_end);
711 EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR->il
[all...]
H A Drtl-factoring.c462 COPY_REG_SET (&live, bb->il.rtl->global_live_at_end);
545 COPY_REG_SET (&live, bb->il.rtl->global_live_at_end);
978 il.rtl->global_live_at_end,
979 BLOCK_FOR_INSN (mseq->insn)->il.rtl->global_live_at_end);
1033 SET_REGNO_REG_SET (bb->il.rtl->global_live_at_end,
1085 SET_REGNO_REG_SET (bb->il.rtl->global_live_at_end,
1089 IOR_REG_SET (bb->il.rtl->global_live_at_end,
1090 BLOCK_FOR_INSN (sb->label)->il.rtl->global_live_at_start);
H A Dmode-switching.c226 regset live_at_end = src_bb->il.rtl->global_live_at_end;
375 COPY_REG_SET (pre_exit->il.rtl->global_live_at_start, live_at_end);
376 COPY_REG_SET (pre_exit->il.rtl->global_live_at_end, live_at_end);
460 bb->il.rtl->global_live_at_start);
606 src_bb->il.rtl->global_live_at_end);
H A Dstruct-equiv.c996 if (!REG_SET_EQUAL_P (info->x_block->il.rtl->global_live_at_end,
997 info->y_block->il.rtl->global_live_at_end))
1010 CLEAR_REGNO_REG_SET (info->x_block->il.rtl->global_live_at_end, rn);
1011 CLEAR_REGNO_REG_SET (info->y_block->il.rtl->global_live_at_end, rn);
1013 if (!REG_SET_EQUAL_P (info->x_block->il.rtl->global_live_at_end,
1014 info->y_block->il.rtl->global_live_at_end))
1036 COPY_REG_SET (info->common_live, info->x_block->il.rtl->global_live_at_end);
H A Dhaifa-sched.c4275 && bb->il.rtl->global_live_at_start == 0
4276 && bb->il.rtl->global_live_at_end == 0);
4387 gcc_assert (bb->il.rtl->global_live_at_start != 0
4388 && bb->il.rtl->global_live_at_end != 0);
4390 glat_start[bb->index] = bb->il.rtl->global_live_at_start;
4391 glat_end[bb->index] = bb->il.rtl->global_live_at_end;
4395 bb->il.rtl->global_live_at_start = 0;
4396 bb->il.rtl->global_live_at_end = 0;
4416 gcc_assert (bb->il.rtl->global_live_at_start == 0
4417 && bb->il
[all...]
H A Dintegrate.c359 struct rtl_bb_info *info = bb->il.rtl;
/freebsd-11-stable/usr.sbin/fdwrite/
H A Dfdwrite.c30 int il[100]; local
32 memset(il,0,sizeof il);
34 while(il[(j%secs)+1]) j++;
35 il[(j%secs)+1] = i;
51 f.fd_formb_secno(i) = il[i+1];
/freebsd-11-stable/usr.sbin/fdformat/
H A Dfdformat.c55 int i, j, il[FD_MAX_NSEC + 1]; local
57 memset(il, 0, sizeof il);
59 while(il[(j % secs) + 1])
61 il[(j % secs) + 1] = i;
77 f.fd_formb_secno(i) = il[i+1];
/freebsd-11-stable/secure/lib/libcrypt/
H A Dcrypt-des.c222 u_int32_t *p, *il, *ir, *fl, *fr; local
280 *(il = &ip_maskl[k][i]) = 0L;
288 *il |= bits32[obit];
299 *(il = &key_perm_maskl[k][i]) = 0L;
307 *il |= bits28[obit];
312 *(il = &comp_maskl[k][i]) = 0L;
320 *il |= bits24[obit];
/freebsd-11-stable/tools/tools/net80211/wesside/wesside/
H A Daircrack-ptw-lib.c438 int il; local
443 il = i/8;
445 if ((state->seen_iv[il] & ir) == 0) {
447 state->seen_iv[il] |= ir;
/freebsd-11-stable/share/vt/keymaps/
H A DMakefile45 il.kbd \
/freebsd-11-stable/contrib/binutils/ld/
H A Dlexsup.c567 int is, il, irl; local
587 il = 0;
616 longopts[il] = ld_options[i].opt;
617 ++il;
622 longopts[il].name = NULL;
625 ldemul_add_options (is, &shortopts, il, &longopts, irl, &really_longopts);

Completed in 159 milliseconds

123