Searched refs:tail (Results 26 - 50 of 621) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/openzfs/cmd/zpool/zpool.d/
H A Diostat-1s48 "$somepath" | tail -n 2)
54 "$somepath" | grep -v '^$' | tail -n 2)
73 vals=$(echo "$out" | tail -n 1 | tr -s '[:space:]' '\t')
H A Diostat48 "$somepath" | tail -n 2)
54 "$somepath" | grep -v '^$' | tail -n 2)
73 vals=$(echo "$out" | tail -n 1 | tr -s '[:space:]' '\t')
H A Diostat-10s48 "$somepath" | tail -n 2)
54 "$somepath" | grep -v '^$' | tail -n 2)
73 vals=$(echo "$out" | tail -n 1 | tr -s '[:space:]' '\t')
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/callbacks/
H A Dzfs_mmp.ksh32 sudo tail -n $lines $f
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dlist.h31 #define ISC_LIST(type) struct { type *head, *tail; }
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
46 #define ISC_LIST_TAIL(list) ((list).tail)
54 (list).tail = (elt); \
71 if ((list).tail != NULL) \
72 (list).tail->link.next = (elt); \
75 (elt)->link.prev = (list).tail; \
77 (list).tail = (elt); \
94 ISC_INSIST((list).tail == (elt)); \
95 (list).tail
[all...]
/freebsd-current/contrib/openpam/misc/
H A Dcoverity.sh.in33 if tail -1 "${covlog}" | grep -q "completed successfully" ; then
36 tail "${covlog}"
/freebsd-current/.cirrus-ci/
H A Dpkg-install.sh10 dmesg tail:
11 $(dmesg | tail)
/freebsd-current/sys/dev/qat/qat_api/common/ctrl/
H A Dsal_list.c17 SalList_add(sal_list_t **list, sal_list_t **tail, void *pObj) argument
26 *tail = *list;
28 /* add to tail of the list */
33 (*tail)->next = new_element;
35 *tail = new_element;
/freebsd-current/sys/dev/qat/qat_api/common/include/
H A Dlac_list.h36 * Add a structure to tail of a list.
39 * Adds pObj to the tail of list (if it exists). Allocates and sets a
44 * @param[in/out] tail Pointer to tail pointer of the list.
47 *tail
50 * @param[in] pObj Pointer to structure to add to tail of
55 CpaStatus SalList_add(sal_list_t **list, sal_list_t **tail, void *pObj);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp58 SymbolizedStack *tail; member in struct:__tsan::SymbolizedStackBuilder
65 if (ssb->tail) {
66 ssb->tail->next = SymbolizedStack::New(ssb->addr);
67 ssb->tail = ssb->tail->next;
69 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr);
71 AddressInfo *info = &ssb->tail->info;
/freebsd-current/sys/kern/
H A Dsubr_memdesc.c426 struct mbuf *m, *tail; local
442 m = tail = extpg_alloc(cb_arg, how);
446 if (!can_append_paddr(tail, pa)) {
447 MBUF_EXT_PGS_ASSERT_SANITY(tail);
448 tail->m_next = extpg_alloc(cb_arg, how);
449 if (tail->m_next == NULL)
451 tail = tail->m_next;
454 appended = append_paddr_range(tail, pa, len);
462 MBUF_EXT_PGS_ASSERT_SANITY(tail);
474 struct mbuf *m, *n, *tail; local
526 struct mbuf *m, *tail; local
606 struct mbuf *m, *tail; local
691 struct mbuf *m, *tail; local
[all...]
/freebsd-current/lib/libc/include/isc/
H A Dlist.h30 #define LIST(type) struct { type *head, *tail; }
32 do { (list).head = NULL; (list).tail = NULL; } while (0)
46 #define TAIL(list) ((list).tail)
55 (list).tail = (elt); \
64 if ((list).tail != NULL) \
65 (list).tail->link.next = (elt); \
68 (elt)->link.prev = (list).tail; \
70 (list).tail = (elt); \
79 INSIST((list).tail == (elt)); \
80 (list).tail
[all...]
/freebsd-current/usr.bin/find/
H A Dfind.c71 PLAN *plan, *tail, *new; local
89 for (plan = tail = NULL; *argv;) {
93 tail = plan = new;
95 tail->next = new;
96 tail = new;
112 tail = plan = new;
120 tail->next = new;
121 tail = new;
124 tail->next = new;
125 tail
[all...]
/freebsd-current/sys/dev/netmap/
H A Dnetmap_mbq.c50 q->head = q->tail = NULL;
71 if (q->tail) {
72 q->tail->m_nextpkt = m;
73 q->tail = m;
75 q->head = q->tail = m;
103 q->tail = NULL;
/freebsd-current/contrib/libucl/doc/
H A DMakefile.am6 tail -n +$$(grep -n '# Synopsis' api.md | cut -d':' -f1) api.md | \
/freebsd-current/contrib/ncurses/man/
H A DMKterminfo.sh35 # This script takes terminfo.head and terminfo.tail and splices in between
61 tail="$1"
65 .\\" It is generated from terminfo.head, $caps, and terminfo.tail.
123 "$tail"
/freebsd-current/tools/test/stress2/misc/
H A Dsyscall6.sh41 num=`grep SYS_$i /usr/include/sys/syscall.h | tail -1 | awk '{print $NF}'`
H A Dsort2.sh42 p=`swapinfo | tail -1 | awk '{sub("%","");print $NF}'`
H A Dtmpfs23.sh42 tail -f /mnt/1 > /dev/null 2>&1 &
/freebsd-current/tools/test/stress2/tools/
H A Ddf.sh35 d=`df -i $RUNDIR | tail -1`
H A Dps.sh47 all=`grep all\.sh $log | grep -v '0:00,00' | tail -1 | awk '{print $1}'`
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member in struct:prov_aes_hmac_sha1_ctx_st
60 SHA256_CTX head, tail, md; member in struct:prov_aes_hmac_sha256_ctx_st
/freebsd-current/sys/dev/syscons/
H A Dsctermvar.h35 int attr, int tail);
37 int attr, int tail);
45 static __inline void sc_term_down(scr_stat *scp, int n, int tail);
49 int attr, int head, int tail);
51 int attr, int head, int tail);
62 sc_term_ins_line(scr_stat *scp, int y, int n, int ch, int attr, int tail) argument
64 if (tail <= 0)
65 tail = scp->ysize;
68 if (n > tail - y)
69 n = tail
76 sc_term_del_line(scr_stat *scp, int y, int n, int ch, int attr, int tail) argument
149 sc_term_down(scr_stat *scp, int n, int tail) argument
178 sc_term_up_scroll(scr_stat *scp, int n, int ch, int attr, int head, int tail) argument
194 sc_term_down_scroll(scr_stat *scp, int n, int ch, int attr, int head, int tail) argument
[all...]
/freebsd-current/sys/netgraph/bluetooth/include/
H A Dng_bluetooth.h68 struct mbuf *tail; /* last item in the queue */ member in struct:ng_bt_mbufq
79 (q)->tail = NULL; \
102 if ((q)->tail == NULL) \
105 (q)->tail->m_nextpkt = (i); \
107 (q)->tail = (i); \
117 (q)->tail = NULL; \
127 if ((q)->tail == NULL) \
128 (q)->tail = (i); \
/freebsd-current/sys/contrib/ena-com/
H A Dena_eth_com.h102 u16 tail, next_to_comp, cnt; local
105 tail = io_sq->tail;
106 cnt = tail - next_to_comp;
181 u16 tail = io_sq->tail; local
184 "Write submission queue doorbell for queue: %d tail: %d\n",
185 io_sq->qid, tail); local
187 ENA_REG_WRITE32(io_sq->bus, tail, io_sq->db_addr);

Completed in 147 milliseconds

1234567891011>>