/src/usr.bin/tail/ |
Makefile | 4 PROG= tail 5 SRCS= forward.c misc.c read.c reverse.c tail.c 7 LINKS= ${BINDIR}/tail ${BINDIR}/tac 9 MAN= tail.1 tac.1
|
/src/usr.bin/make/unit-tests/ |
varmod-tail.exp | 0 tail (basename) of 'a/b/c' is 'c' 2 tail (basename) of 'def' is 'def' 3 tail (basename) of 'a.b.c' is 'a.b.c' 4 tail (basename) of 'a.b/c' is 'c' 5 tail (basename) of 'a' is 'a' 6 tail (basename) of 'a.a' is 'a.a' 7 tail (basename) of '.gitignore' is '.gitignore' 8 tail (basename) of 'a' is 'a' 9 tail (basename) of 'a.a' is 'a.a' 10 tail (basename) of 'trailing/' is ' [all...] |
varmod-tail.mk | 1 # $NetBSD: varmod-tail.mk,v 1.5 2024/06/01 18:44:05 rillig Exp $ 9 .if ${:U Tail :Tail=replaced} != "replaced" 16 @echo "tail (basename) of '"${path:Q}"' is '"${path:T:Q}"'"
|
/src/lib/libc/arch/riscv/gen/ |
__sigsetjmp14.S | 12 tail PLT(_C_LABEL(_setjmp)) 13 1: tail PLT(_C_LABEL(__setjmp14)) 19 tail PLT(_C_LABEL(_longjmp)) 20 1: tail PLT(_C_LABEL(__longjmp14))
|
/src/usr.bin/find/ |
operator.c | 82 PLAN *tail; /* pointer to tail of subplan */ local in function:yankexpr 96 for (tail = subplan = NULL;;) { 115 tail = subplan = next; 117 tail->next = next; 118 tail = next; 120 tail->next = NULL; 134 PLAN *tail; /* pointer to tail of result plan */ local in function:paren_squish 137 result = tail = NULL 172 PLAN *tail; \/* pointer to tail of result plan *\/ local in function:not_squish 230 PLAN *tail; \/* pointer to tail of result plan *\/ local in function:or_squish [all...] |
find.c | 69 PLAN *plan, *tail, *new; local in function:find_formplan 87 for (plan = tail = NULL; *argv;) { 91 tail = plan = new; 93 tail->next = new; 94 tail = new; 106 tail = plan = new; 112 tail->next = new; 113 tail = new; 115 tail->next = new; 116 tail = new [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_ring.h | 28 void intel_ring_reset(struct intel_ring *ring, u32 tail); 91 assert_ring_tail_valid(const struct intel_ring *ring, unsigned int tail) 93 GEM_BUG_ON(!intel_ring_offset_valid(ring, tail)); 100 * "If the Ring Buffer Head Pointer and the Tail Pointer are on the 101 * same cacheline, the Head Pointer must not be greater than the Tail 110 GEM_BUG_ON(cacheline(tail) == cacheline(ring->head) && 111 tail < ring->head); 116 intel_ring_set_tail(struct intel_ring *ring, unsigned int tail) 118 /* Whilst writes to the tail are strictly order, there is no 119 * serialisation between readers and the writers. The tail may b [all...] |
intel_ring_types.h | 45 u32 tail; /* updated on submission, used for RING_TAIL */ member in struct:intel_ring
|
/src/lib/libc/locale/ |
newlocale.c | 47 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; local in function:__weak_alias 65 tail = __UNCONST(strchr(tokens[0], '/')); 66 if (tail == NULL) { 75 *tail++ = '\0'; 83 *tail++ = '\0'; 84 tokens[i] = (const char *)tail; 85 tail = __UNCONST(strchr(tokens[i], '/')); 86 if (tail == NULL) { 91 *tail++ = '\0'; 92 tokens[howmany] = tail; [all...] |
generic_lc_all.c | 58 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; local in function:_generic_LC_ALL_setlocale 68 tail = __UNCONST(strchr(tokens[1], '/')); 69 if (tail == NULL) { 73 *tail++ = '\0'; 75 tokens[i] = (const char *)tail; 76 tail = __UNCONST(strchr(tokens[i], '/')); 77 if (tail == NULL) 79 *tail++ = '\0'; 81 tokens[_LC_LAST - 1] = (const char *)tail; 82 tail = __UNCONST(strchr(tokens[i], '/')) [all...] |
/src/sys/external/bsd/drm2/dist/include/drm/ |
spsc_queue.h | 45 atomic_long_t tail; member in struct:spsc_queue 53 atomic_long_set(&queue->tail, (long)&queue->head); 69 struct spsc_node **tail; local in function:spsc_queue_push 75 tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next); 76 WRITE_ONCE(*tail, node); 87 return tail == &queue->head; 109 if (atomic_long_cmpxchg(&queue->tail, 111 /* Updating tail failed wait for new next to appear */
|
/src/games/atc/ |
list.c | 73 l->head = l->tail = p; 95 l->tail->next = p; 97 p->prev = l->tail; 98 l->tail = p; 109 if (l->head == p && l->tail == p) 110 l->head = l->tail = NULL; 114 } else if (l->tail == p) { 115 l->tail = p->prev; 116 l->tail->next = NULL;
|
/src/sys/external/bsd/drm2/include/linux/ |
kfifo.h | 138 const size_t tail = meta->kfm_tail; local in function:_kfifo_len 141 return (head <= tail ? tail - head : nbytes + tail - head); 156 const size_t tail = meta->kfm_tail; local in function:_kfifo_out_peek 158 if (head <= tail) { 159 if (size <= tail - head) { 167 } else if (size <= nbytes + tail - head) { 191 const size_t tail = meta->kfm_tail; local in function:_kfifo_out 193 if (head <= tail) { 229 const size_t tail = meta->kfm_tail; local in function:_kfifo_in [all...] |
/src/sys/arch/cats/conf/ |
Makefile.cats.inc | 23 ${ARM}/conf/kern.ldscript.tail \ 29 cat ${ARM}/conf/kern.ldscript.tail ) > $@
|
/src/sys/arch/shark/conf/ |
Makefile.shark.inc | 17 ${ARM}/conf/kern.ldscript.tail \ 23 cat ${ARM}/conf/kern.ldscript.tail ) > ldscript
|
/src/tests/kernel/arch/riscv/ |
contextspfunc.S | 44 tail _C_LABEL(contextdone) /* tail call contextdone */
|
execsp.S | 50 tail _C_LABEL(__start) /* tail call __start */ 94 tail _C_LABEL(execsp_main) /* tail call execsp_main */
|
/src/sys/dev/pci/cxgb/ |
cxgb_mbuf.h | 37 struct mbuf *tail; member in struct:mbuf_head 45 l->head = l->tail = NULL; 65 l->tail->m_nextpkt = m; 66 l->tail = m; 76 if (m == l->tail) 77 l->tail = NULL;
|
/src/sys/external/bsd/drm2/linux/ |
linux_list_sort.c | 128 struct list_head head, *tail = &head; local in function:list_sort_merge 137 tail = tail->next = *first; 144 tail->next = (a != NULL? a : b); 176 struct list_head *tail = (a == NULL? b : a); local in function:list_sort_merge_into 177 while (tail != NULL) { 178 prev->next = tail; 179 tail->prev = prev; 181 tail = tail->next [all...] |
/src/sys/external/bsd/ena-com/ |
ena_eth_com.h | 103 u16 tail, next_to_comp, cnt; local in function:ena_com_free_desc 106 tail = io_sq->tail; 107 cnt = tail - next_to_comp; 133 u16 tail; local in function:ena_com_write_sq_doorbell 135 tail = io_sq->tail; 137 ena_trc_dbg("write submission queue doorbell for queue: %d tail: %d\n", 138 io_sq->qid, tail); 140 ENA_REG_WRITE32(io_sq->bus, tail, io_sq->db_addr) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_symbolize.cc | 59 SymbolizedStack *tail; member in struct:__tsan::SymbolizedStackBuilder 66 if (ssb->tail) { 67 ssb->tail->next = SymbolizedStack::New(ssb->addr); 68 ssb->tail = ssb->tail->next; 70 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr); 72 AddressInfo *info = &ssb->tail->info;
|
/src/lib/libc/include/isc/ |
list.h | 24 #define LIST(type) struct { type *head, *tail; } 26 do { (list).head = NULL; (list).tail = NULL; } while (0) 40 #define TAIL(list) ((list).tail) 49 (list).tail = (elt); \ 58 if ((list).tail != NULL) \ 59 (list).tail->link.next = (elt); \ 62 (elt)->link.prev = (list).tail; \ 64 (list).tail = (elt); \ 73 INSIST((list).tail == (elt)); [all...] |
/src/sys/arch/vax/include/ |
qevent.h | 96 int tail; /* index into events */ member in struct:_vs_eventqueue
|
/src/sys/dev/qbus/ |
qevent.h | 96 int tail; /* index into events */ member in struct:_vs_eventqueue
|
/src/usr.bin/msgc/ |
msgdb.c | 55 static struct id_rec *head = NULL, *tail = NULL; 69 if (tail == NULL) 70 head = tail = tmp; 72 tail->next = tmp; 73 tail = tmp;
|