Home
last modified time | relevance | path

Searched refs:tail (Results 76 – 100 of 432) sorted by relevance

12345678910>>...18

/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dinput.c87 size_t tail; in _elf_vm() local
122 tail = base + sz + _elf_pagesize - 1; in _elf_vm()
125 tlbit = 1 << PGNUM(tail); in _elf_vm()
127 tlreg = &elf->ed_vm[REGNUM(tail)]; in _elf_vm()
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dppcomment.c31 ppcomment(char* head, char* comment, char* tail, int line) in ppcomment() argument
34 ppprintf("%s%-.*s%s", head, MAXTOKEN - 4, comment, tail); in ppcomment()
/illumos-gate/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_tavor_hw.c1324 tail = qp->qp_sq_wqhdr->wq_tail; in dapli_tavor_post_send()
1341 next_tail = (tail + 1) & qsize_msk; in dapli_tavor_post_send()
1367 desc = TAVOR_QP_SQ_DESC(qp, tail); in dapli_tavor_post_send()
1452 tail = qp->qp_rq_wqhdr->wq_tail; in dapli_tavor_post_recv()
1476 next_tail = (tail + 1) & qsize_msk; in dapli_tavor_post_recv()
1482 desc = TAVOR_QP_RQ_DESC(qp, tail); in dapli_tavor_post_recv()
1647 uint32_t head, tail, size; in dapli_tavor_wrid_add_entry() local
1656 tail = wq->wq_wrid_post->wl_tail; in dapli_tavor_wrid_add_entry()
1674 tail = ((tail + 1) & (size - 1)); in dapli_tavor_wrid_add_entry()
1675 wq->wq_wrid_post->wl_tail = tail; in dapli_tavor_wrid_add_entry()
[all …]
/illumos-gate/usr/src/cmd/mail/
H A Dpushlist.c60 ohp = (where == HEAD ? hdrlines[hdrtype].head : hdrlines[hdrtype].tail); in pushlist()
109 hdrlines[hdrtype].head = hdrlines[hdrtype].tail = nhp; in pushlist()
118 hdrlines[hdrtype].tail = ohp->next = nhp; in pushlist()
/illumos-gate/usr/src/cmd/vi/misc/
H A Dctags.c173 static int tail(char *);
1078 if (tail("integer"))
1082 if (tail("real"))
1086 if (tail("logical"))
1090 if (tail("complex") || tail("character"))
1094 if (tail("double")) {
1099 if (tail("precision"))
1112 if (tail("function"))
1120 if (tail("program")) {
1124 if (tail("procedure"))
[all …]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_directio.c226 directio_wait(struct directio_buf *tail, long *bytes_iop) in directio_wait() argument
235 while ((dbp = tail) != NULL) { in directio_wait()
236 tail = dbp->next; in directio_wait()
344 struct directio_buf *tail; in ufs_directio_write() local
626 tail = NULL; in ufs_directio_write()
688 iov->iov_base, S_READ, procp, &tail, spplist); in ufs_directio_write()
703 newerror = directio_wait(tail, &bytes_written); in ufs_directio_write()
812 struct directio_buf *tail; in ufs_directio_read() local
930 tail = NULL; in ufs_directio_read()
998 S_WRITE, procp, &tail, spplist); in ufs_directio_read()
[all …]
/illumos-gate/usr/src/tools/smatch/src/smatch_scripts/
H A Dshow_ifs.sh21 tail -n +$(($line - ($context - 1))) $code_file | head -n $(($context - 1))
25 tail -n +${line} $code_file | head -n $context
H A Dshow_errs.sh29 tail -n +$(($lineno - ($context - 1))) $code_file | head -n $(($context - 1))
31 tail -n +${lineno} $code_file | head -n $context
/illumos-gate/usr/src/cmd/keyserv/
H A Dkeyserv_cache.c678 struct cachekey_disklist **tail, in list_remove() argument
694 if (tail != 0 && *tail == item) in list_remove()
695 *tail = item->prev; in list_remove()
723 if (tail != 0 && *tail == item) in list_remove_hash()
724 *tail = item->prevhash; in list_remove_hash()
742 if (tail != 0) { in list_insert()
743 item->prev = *tail; in list_insert()
747 *tail = item; in list_insert()
771 if (tail != 0) { in list_insert_hash()
772 item->prevhash = *tail; in list_insert_hash()
[all …]
/illumos-gate/usr/src/cmd/sgs/include/
H A Dlist.h52 Listnode *tail; /* the last element */ member
67 Elf32_Addr tail; /* the last element */ member
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_wr.c173 sync_from = tail; in tavor_post_send()
270 tail = next_tail; in tavor_post_send()
300 sync_to = tail; in tavor_post_send()
461 sync_from = tail; in tavor_post_recv()
546 tail = next_tail; in tavor_post_recv()
566 sync_to = tail; in tavor_post_recv()
2512 uint32_t head, tail, size; in tavor_wrid_add_entry() local
2541 tail = ((tail + 1) & (size - 1)); in tavor_wrid_add_entry()
2550 if (head == tail) { in tavor_wrid_add_entry()
2683 uint32_t head, tail, size; in tavor_wrid_find_match() local
[all …]
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_sw.h264 (_LH)->head = (_LH)->tail = NULL
274 (_LH)->tail = NULL; \
278 #define LIST_GET_TAIL(_LH) ((single_link_t *)((_LH)->tail))
281 if ((_LH)->tail != NULL) { \
282 (_LH)->tail->link = (single_link_t *)(_E); \
283 (_LH)->tail = (single_link_t *)(_E); \
285 (_LH)->head = (_LH)->tail = (single_link_t *)(_E); \
290 (((_LH)->tail == (single_link_t *)(_E)) ? \
300 single_link_t *tail; member
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_sw.h335 (_LH)->head = (_LH)->tail = NULL
345 (_LH)->tail = NULL; \
349 #define LIST_GET_TAIL(_LH) ((single_link_t *)((_LH)->tail))
352 if ((_LH)->tail != NULL) { \
353 (_LH)->tail->link = (single_link_t *)(_E); \
354 (_LH)->tail = (single_link_t *)(_E); \
356 (_LH)->head = (_LH)->tail = (single_link_t *)(_E); \
361 (((_LH)->tail == (single_link_t *)(_E)) ? \
371 single_link_t *tail; member
/illumos-gate/usr/src/uts/common/inet/
H A Dsqueue.c165 (sqp)->sq_last = (tail); \
339 ASSERT(tail != NULL); in squeue_enter()
449 ASSERT(mp == tail); in squeue_enter()
450 tail = mp = attrmp; in squeue_enter()
453 ENQUEUE_CHAIN(sqp, mp, tail, cnt); in squeue_enter()
565 ASSERT(mp == tail); in squeue_enter()
566 tail = mp = attrmp; in squeue_enter()
568 ENQUEUE_CHAIN(sqp, mp, tail, cnt); in squeue_enter()
913 mblk_t *head, *tail, *mp; in squeue_polling_thread() local
973 &tail, &cnt); in squeue_polling_thread()
[all …]
/illumos-gate/usr/src/cmd/bnu/
H A Duulog89 tail -$n $type/$i
103 exec tail -${n}f $type/$1
H A Duudemon.cleanup326 echo; echo tail errors; tail $OLD/errors; \
327 echo; echo tail Foreign; tail $OLD/Foreign; \
/illumos-gate/usr/src/cmd/tail/
H A DMakefile18 PROG= tail
21 OBJS= forward.o misc.o read.o reverse.o tail.o
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_soft_ring.c538 mblk_t *head, *tail; in mac_soft_ring_poll() local
547 head = tail = mp = ringp->s_ring_first; in mac_soft_ring_poll()
565 tail = mp; in mac_soft_ring_poll()
570 tail->b_next = NULL; in mac_soft_ring_poll()
651 mblk_t *tail; in mac_tx_soft_ring_drain() local
667 tail = ringp->s_ring_last; in mac_tx_soft_ring_drain()
681 tail->b_next = ringp->s_ring_first; in mac_tx_soft_ring_drain()
687 ringp->s_ring_last = tail; in mac_tx_soft_ring_drain()
/illumos-gate/usr/src/uts/sun4u/os/
H A Dcpr_impl.c150 sutlb_t *tail; member
345 ASSERT(ctip->dst < ctip->tail); in i_cpr_lnb()
382 sutlb_t clr, *tail; in i_cpr_clear_tmp() local
385 for (tail = listp + max; listp < tail && listp->va_tag; listp++) { in i_cpr_clear_tmp()
452 ASSERT(ctip->dst < ctip->tail); in i_cpr_make_tte()
739 struct cpr_map_info *pri, *tail; in i_cpr_count_special_kpages() local
1719 cti.tail = cti.dst + CPR_MAX_TLB; in i_cpr_save_tlbinfo()
1845 cbd_t *dp, *tail; in i_cpr_bitmap_setup() local
1869 tail = dp + cpr_nbitmaps; in i_cpr_bitmap_setup()
1877 ASSERT(dp < tail); in i_cpr_bitmap_setup()
[all …]
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Delfedit.c1377 const char *tail; in path_is_so() local
1383 tail = path + len; in path_is_so()
1385 while ((tail > path) && isdigit(*(tail - 1))) in path_is_so()
1386 tail--; in path_is_so()
1387 if ((tail <= path) || (*tail != '.')) in path_is_so()
1393 tail -= dotso_len; in path_is_so()
1395 return (tail); in path_is_so()
1425 if (tail == NULL) in elfedit_basename()
1427 s = tail; in elfedit_basename()
1980 const char *tail; in elfedit_load_moddir() local
[all …]
/illumos-gate/usr/src/common/list/
H A Dlist.c152 list_node_t *tail = list->list_head.list_prev; in list_remove_tail() local
153 if (tail == &list->list_head) in list_remove_tail()
155 list_remove_node(tail); in list_remove_tail()
156 return (list_object(list, tail)); in list_remove_tail()
/illumos-gate/usr/src/psm/stand/cpr/common/
H A Dsupport.c95 cprop_t *prop, *tail; in cpr_reset_properties() local
133 for (prop_errors = 0, prop = cdef.props, tail = prop + CPR_MAXPROP; in cpr_reset_properties()
134 prop < tail; prop++) { in cpr_reset_properties()
/illumos-gate/usr/src/cmd/ast/libshell/common/
H A Dillumos_cmdlist.h162 ASTCMDLIST(tail)
163 BINCMDLIST(tail)
164 XPG4CMDLIST(tail)
/illumos-gate/usr/src/cmd/fs.d/nfs/dfmounts/
H A Ddfmounts.c123 int tail = 0; in pr_mounts() local
186 tail = 0; in pr_mounts()
188 if (tail++) in pr_mounts()
/illumos-gate/usr/src/uts/sun4u/io/
H A Dmc-us3i.c883 tb = segi->tail; in mc_add_segment()
902 segi->tail = banki; in mc_add_segment()
921 segi->tail = banki; in mc_add_segment()
1440 mc_node_add(mc_dlist_t *node, mc_dlist_t **head, mc_dlist_t **tail) in mc_node_add() argument
1443 node->id, (void *) *head, (void *) *tail)); in mc_node_add()
1446 node->prev = *tail; in mc_node_add()
1447 node->next = (*tail)->next; in mc_node_add()
1448 (*tail)->next = node; in mc_node_add()
1449 *tail = node; in mc_node_add()
1452 *head = *tail = node; in mc_node_add()
[all …]

12345678910>>...18