/openbsd/lib/libcurses/ |
H A D | fifo_defs.h | 55 if (head == tail) \ 56 head = -1, tail = 0; \ 62 if (head == tail) \ 63 tail = -1; \ 67 ? tail = 0 \ 68 : tail++; \ 69 if (tail == head) \ 70 tail = -1; \ 73 (tail <= 0) \ 74 ? tail = FIFO_SIZE-1 \ [all …]
|
/openbsd/usr.bin/find/ |
H A D | operator.c | 109 tail = next; in yankexpr() 111 tail->next = NULL; in yankexpr() 146 tail->next = expr; in paren_squish() 147 tail = expr; in paren_squish() 149 tail->next = NULL; in paren_squish() 205 tail->next = next; in not_squish() 206 tail = next; in not_squish() 208 tail->next = NULL; in not_squish() 257 tail->next = next; in or_squish() 258 tail = next; in or_squish() [all …]
|
H A D | find.c | 59 PLAN *plan, *tail, *new; in find_formplan() local 77 for (plan = tail = NULL; *argv;) { in find_formplan() 81 tail = plan = new; in find_formplan() 83 tail->next = new; in find_formplan() 84 tail = new; in find_formplan() 97 tail = plan = new; in find_formplan() 103 tail->next = new; in find_formplan() 104 tail = new; in find_formplan() 106 tail->next = new; in find_formplan() 107 tail = new; in find_formplan()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | sched-ebb.c | 213 schedule_ebb (head, tail) in schedule_ebb() argument 214 rtx head, tail; in schedule_ebb() 219 if (no_real_insns_p (head, tail)) 241 rm_line_notes (head, tail); 266 rm_other_notes (head, tail); 276 tail = current_sched_info->tail; 309 rtx tail; local 314 tail = bb->end; 339 while (head != tail) 344 tail = PREV_INSN (tail); [all …]
|
/openbsd/gnu/usr.bin/perl/t/mro/ |
H A D | package_aliases.t | 160 my $tail = shift; 161 @left::ISA = "outer::$tail"; 162 @right::ISA = "clone::$tail"; 173 { args => [$tail] }, 175 ." ($tail)"; 180 my $tail = shift; 181 @left::ISA = "outer::$tail"; 182 @right::ISA = "clone::$tail"; 186 bless [], "outer::$tail"; 194 { args => [$tail] }, [all …]
|
H A D | package_aliases_utf8.t | 199 my $tail = shift; 200 @Lфť::ISA = "ɵűʇㄦ::$tail"; 201 @R익hȚ::ISA = "cฬnए::$tail"; 215 { args => [$tail] }, 217 ." ($tail)"; 235 my $tail = shift; 236 @Lфť::ISA = "ɵűʇㄦ::$tail"; 237 @R익hȚ::ISA = "cฬnए::$tail"; 241 bless [], "ɵűʇㄦ::$tail"; 252 { args => [$tail] }, [all …]
|
/openbsd/gnu/gcc/gcc/ |
H A D | tree-iterator.c | 85 if (!head || !tail) in tsi_link_before() 87 gcc_assert (head == tail); in tsi_link_before() 97 tail = head; in tsi_link_before() 112 tail->next = cur; in tsi_link_before() 113 cur->prev = tail; in tsi_link_before() 134 i->ptr = tail; in tsi_link_before() 161 if (!head || !tail) in tsi_link_after() 173 tail = head; in tsi_link_after() 184 if (tail->next) in tsi_link_after() 185 tail->next->prev = tail; in tsi_link_after() [all …]
|
H A D | sched-ebb.c | 437 schedule_ebb (rtx head, rtx tail) in schedule_ebb() argument 443 last_bb = BLOCK_FOR_INSN (tail); in schedule_ebb() 446 return BLOCK_FOR_INSN (tail); in schedule_ebb() 485 rm_line_notes (head, tail); in schedule_ebb() 506 rm_other_notes (head, tail); in schedule_ebb() 521 tail = current_sched_info->tail; in schedule_ebb() 545 rtx tail; in schedule_ebbs() local 585 tail = BB_END (bb); in schedule_ebbs() 601 while (head != tail) in schedule_ebbs() 605 else if (NOTE_P (tail)) in schedule_ebbs() [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/ |
H A D | head-tail.t | 6 use List::Util qw(head tail); 13 ok(defined &tail, 'defined'); 63 @ary = tail 1, ( 4, 5, 6 ); 67 @ary = tail 2, ( 4, 5, 6 ); 72 @ary = tail -1, ( 4, 5, 6 ); 77 @ary = tail -2, ( 4, 5, 6 ); 81 @ary = tail 0, ( 4, 5, 6 ); 84 @ary = tail 0; 87 @ary = tail 5; 90 @ary = tail -3; [all …]
|
/openbsd/sys/dev/pci/drm/i915/gt/ |
H A D | intel_ring.h | 26 void intel_ring_reset(struct intel_ring *ring, u32 tail); 91 assert_ring_tail_valid(const struct intel_ring *ring, unsigned int tail) in assert_ring_tail_valid() argument 95 GEM_BUG_ON(!intel_ring_offset_valid(ring, tail)); in assert_ring_tail_valid() 112 GEM_BUG_ON(cacheline(tail) == cacheline(head) && tail < head); in assert_ring_tail_valid() 117 intel_ring_set_tail(struct intel_ring *ring, unsigned int tail) in intel_ring_set_tail() argument 125 assert_ring_tail_valid(ring, tail); in intel_ring_set_tail() 126 ring->tail = tail; in intel_ring_set_tail() 127 return tail; in intel_ring_set_tail() 131 __intel_ring_space(unsigned int head, unsigned int tail, unsigned int size) in __intel_ring_space() argument 139 return (head - tail - CACHELINE_BYTES) & (size - 1); in __intel_ring_space()
|
/openbsd/usr.bin/dig/lib/isc/include/isc/ |
H A D | list.h | 46 (list).tail = (elt); \ 62 if ((list).tail != NULL) \ 63 (list).tail->link.next = (elt); \ 66 (elt)->link.prev = (list).tail; \ 68 (list).tail = (elt); \ 84 ISC_INSIST((list).tail == (elt)); \ 85 (list).tail = (elt)->link.prev; \ 96 ISC_INSIST((list).tail != (elt)); \ 153 (list1).tail = (list2).tail; \ 156 (list2).tail = NULL; \ [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/cp/ |
H A D | typeck2.c | 526 if (tail) 529 *tail = TREE_CHAIN (*tail); 682 if (tail) 762 if (tail) 793 tail = TREE_CHAIN (tail); 834 if (tail) 867 if (tail) 887 tail = TREE_CHAIN (tail); 952 && tail) 1003 tail = tail1; [all …]
|
/openbsd/gnu/usr.bin/binutils-2.17/gprof/ |
H A D | cg_dfn.c | 93 Sym *tail; in find_cycle() local 152 for (tail = head; tail->cg.cyc.next; tail = tail->cg.cyc.next) in find_cycle() 157 print_name (tail); in find_cycle() 181 tail->cg.cyc.next = child; in find_cycle() 188 for (tail = child; tail->cg.cyc.next; tail = tail->cg.cyc.next) in find_cycle() 190 tail->cg.cyc.next->cg.cyc.head = head; in find_cycle() 192 print_name (tail->cg.cyc.next); in find_cycle()
|
/openbsd/games/atc/ |
H A D | list.c | 66 l->head = l->tail = p; in append() 88 l->tail->next = p; in append() 90 p->prev = l->tail; in append() 91 l->tail = p; in append() 102 if (l->head == p && l->tail == p) in delete() 103 l->head = l->tail = NULL; in delete() 107 } else if (l->tail == p) { in delete() 108 l->tail = p->prev; in delete() 109 l->tail->next = NULL; in delete()
|
/openbsd/sys/dev/pci/drm/ |
H A D | linux_list_sort.c | 124 struct list_head head, *tail = &head; in list_sort_merge() local 133 tail = tail->next = *first; in list_sort_merge() 140 tail->next = (a != NULL? a : b); in list_sort_merge() 173 struct list_head *tail = (a == NULL? b : a); in list_sort_merge_into() local 174 while (tail != NULL) { in list_sort_merge_into() 175 prev->next = tail; in list_sort_merge_into() 176 tail->prev = prev; in list_sort_merge_into() 178 tail = tail->next; in list_sort_merge_into()
|
/openbsd/gnu/usr.bin/binutils/gprof/ |
H A D | cg_dfn.c | 96 Sym *tail; local 155 for (tail = head; tail->cg.cyc.next; tail = tail->cg.cyc.next) 160 print_name (tail); 184 tail->cg.cyc.next = child; 191 for (tail = child; tail->cg.cyc.next; tail = tail->cg.cyc.next) 193 tail->cg.cyc.next->cg.cyc.head = head; 195 print_name (tail->cg.cyc.next);
|
/openbsd/sys/dev/pci/drm/include/drm/ |
H A D | spsc_queue.h | 43 atomic_long_t tail; member 51 atomic_long_set(&queue->tail, (long)&queue->head); in spsc_queue_init() 67 struct spsc_node **tail; in spsc_queue_push() local 73 tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next); in spsc_queue_push() 74 WRITE_ONCE(*tail, node); in spsc_queue_push() 85 return tail == &queue->head; in spsc_queue_push() 107 if (atomic_long_cmpxchg(&queue->tail, in spsc_queue_pop()
|
/openbsd/regress/usr.bin/mandoc/mdoc/break/ |
H A D | tail.out_markdown | 5 **break-tail** - tail arguments on or after broken blocks 12 tail 15 tail 19 tail 21 tail 26 tail 31 tail
|
H A D | tail.out_ascii | 4 bbrreeaakk--ttaaiill - tail arguments on or after broken blocks 7 Broken by a partial explicit block: <ao [bo ac> bc] tail <ao [bo ac> bc] 8 (po pc) tail 10 Broken by a partial implicit block: <aq [bo eol>] tail <aq [bo eol>] (po 11 pc) tail 15 it <ao ac> tail 18 it <ao ac> (po pc) tail
|
H A D | tail.out_lint | 1 mandoc: tail.in:12:2: WARNING: blocks badly nested: Ao breaks Bo 2 mandoc: tail.in:16:2: WARNING: blocks badly nested: Ao breaks Bo 3 mandoc: tail.in:21:2: WARNING: blocks badly nested: Aq breaks Bo 4 mandoc: tail.in:23:2: WARNING: blocks badly nested: Aq breaks Bo 5 mandoc: tail.in:47:2: WARNING: blocks badly nested: Bro breaks Po
|
/openbsd/gnu/gcc/libmudflap/testsuite/libmudflap.c/ |
H A D | heap-scalestress.c | 25 struct list *tail = NULL; in main() local 46 if (NULL != tail) in main() 47 tail->next = p; in main() 50 tail = p; in main() 55 if (NULL == tail) in main() 56 tail = p; in main()
|
/openbsd/lib/libssl/ |
H A D | ssl_ciph.c | 539 if (curr == *tail) in ll_append_tail() 547 (*tail)->next = curr; in ll_append_tail() 548 curr->prev= *tail; in ll_append_tail() 550 *tail = curr; in ll_append_tail() 559 if (curr == *tail) in ll_append_head() 560 *tail = curr->prev; in ll_append_head() 719 tail = *tail_p; in ssl_cipher_apply_rule() 722 next = tail; in ssl_cipher_apply_rule() 726 last = tail; in ssl_cipher_apply_rule() 792 if (tail == curr) in ssl_cipher_apply_rule() [all …]
|
/openbsd/gnu/usr.bin/binutils/gdb/gdbserver/ |
H A D | inferiors.c | 46 if (list->tail != NULL) in add_inferior_to_list() 47 list->tail->next = new_inferior; in add_inferior_to_list() 50 list->tail = new_inferior; in add_inferior_to_list() 71 if (list->head != list->tail) in change_inferior_id() 86 if (list->tail == entry) in remove_inferior() 87 list->tail = list->head; in remove_inferior() 100 if (list->tail == entry) in remove_inferior() 101 list->tail = *cur; in remove_inferior() 143 all_threads.head = all_threads.tail = NULL; in clear_inferiors()
|
/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_symbolize.cpp | 58 SymbolizedStack *tail; member 65 if (ssb->tail) { in AddFrame() 66 ssb->tail->next = SymbolizedStack::New(ssb->addr); in AddFrame() 67 ssb->tail = ssb->tail->next; in AddFrame() 69 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr); in AddFrame() 71 AddressInfo *info = &ssb->tail->info; in AddFrame()
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | frame-base.c | 69 struct frame_base_table_entry **tail; member 78 table->tail = &table->head; in frame_base_init() 88 (*table->tail) = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct frame_base_table_entry); in frame_base_append_sniffer() 89 (*table->tail)->sniffer = sniffer; in frame_base_append_sniffer() 90 table->tail = &(*table->tail)->next; in frame_base_append_sniffer()
|