Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 25 of 1165) sorted by relevance

12345678910>>...47

/netbsd-src/usr.bin/find/
H A Doperator.c82 PLAN *tail; /* pointer to tail of subplan */ in yankexpr() local
96 for (tail = subplan = NULL;;) { in yankexpr()
115 tail = subplan = next; in yankexpr()
117 tail->next = next; in yankexpr()
118 tail = next; in yankexpr()
120 tail->next = NULL; in yankexpr()
134 PLAN *tail; /* pointer to tail of result plan */ in paren_squish() local
137 result = tail = NULL; in paren_squish()
153 tail = result = expr; in paren_squish()
155 tail->next = expr; in paren_squish()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgfortran/io/
H A Dformat.c215 get_fnode (format_data *fmt, fnode **head, fnode **tail, format_token t) in get_fnode() argument
230 *head = *tail = f; in get_fnode()
233 (*tail)->next = f; in get_fnode()
234 *tail = f; in get_fnode()
614 fnode *head, *tail; in parse_format_list() local
621 head = tail = NULL; in parse_format_list()
636 get_fnode (fmt, &head, &tail, FMT_LPAREN); in parse_format_list()
637 tail->repeat = -2; /* Signifies unlimited format. */ in parse_format_list()
638 tail->u.child = parse_format_list (dtp, &seen_data_desc); in parse_format_list()
656 get_fnode (fmt, &head, &tail, FMT_LPAREN); in parse_format_list()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/io/
H A Dformat.c216 get_fnode (format_data *fmt, fnode **head, fnode **tail, format_token t) in get_fnode() argument
231 *head = *tail = f; in get_fnode()
234 (*tail)->next = f; in get_fnode()
235 *tail = f; in get_fnode()
615 fnode *head, *tail; in parse_format_list() local
621 head = tail = NULL; in parse_format_list()
636 get_fnode (fmt, &head, &tail, FMT_LPAREN); in parse_format_list()
637 tail->repeat = -2; /* Signifies unlimited format. */ in parse_format_list()
638 tail->u.child = parse_format_list (dtp, &seen_data_desc); in parse_format_list()
656 get_fnode (fmt, &head, &tail, FMT_LPAREN); in parse_format_list()
[all …]
/netbsd-src/sys/external/bsd/drm2/include/linux/
H A Dkfifo.h138 const size_t tail = meta->kfm_tail; in _kfifo_len() local
141 return (head <= tail ? tail - head : nbytes + tail - head); in _kfifo_len()
156 const size_t tail = meta->kfm_tail; in _kfifo_out_peek() local
158 if (head <= tail) { in _kfifo_out_peek()
159 if (size <= tail - head) { in _kfifo_out_peek()
167 } else if (size <= nbytes + tail - head) { in _kfifo_out_peek()
191 const size_t tail = meta->kfm_tail; in _kfifo_out() local
193 if (head <= tail) { in _kfifo_out()
194 if (size <= tail - head) { in _kfifo_out()
204 } else if (size <= nbytes + tail - head) { in _kfifo_out()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/util/
H A Dadd-depends.pl231 (my $tail = $') =~ s/\s*\R$//;
236 $tail = canonpath($tail);
238 unless (defined $depconv_cache{$tail}) {
239 my $dep = $tail;
246 $depconv_cache{$tail} = $dep;
250 return ($objfile, '"'.$depconv_cache{$tail}.'"')
251 if defined $depconv_cache{$tail};
252 print STDERR "DEBUG[$producer]: ignoring $objfile <- $tail\n"
279 (my $tail = $') =~ s/\s*\R$//;
285 $tail = rel2abs($tail);
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc-private/
H A Dobjc-list.h32 struct objc_list *tail; member
37 list_cons (void* head, struct objc_list* tail) in list_cons() argument
43 cell->tail = tail; in list_cons()
52 if ((*list)->tail) in list_remove_head()
55 struct objc_list* tail = (*list)->tail; in list_remove_head() local
58 *(*list) = *tail; in list_remove_head()
61 objc_free (tail); in list_remove_head()
79 list = list->tail; in list_mapcar()
89 list_free (list->tail); in list_free()
/netbsd-src/external/gpl3/gcc/dist/libobjc/objc-private/
H A Dobjc-list.h32 struct objc_list *tail; member
37 list_cons (void* head, struct objc_list* tail) in list_cons() argument
43 cell->tail = tail; in list_cons()
52 if ((*list)->tail) in list_remove_head()
55 struct objc_list* tail = (*list)->tail; in list_remove_head() local
58 *(*list) = *tail; in list_remove_head()
61 objc_free (tail); in list_remove_head()
79 list = list->tail; in list_mapcar()
89 list_free (list->tail); in list_free()
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dlist.h24 .head = NULL, .tail = NULL, \
41 type *head, *tail; \
46 (list).tail = NULL; \
64 #define ISC_LIST_TAIL(list) ((list).tail)
72 (list).tail = (elt); \
90 if ((list).tail != NULL) { \
91 (list).tail->link.next = (elt); \
95 (elt)->link.prev = (list).tail; \
97 (list).tail = (elt); \
114 ISC_INSIST((list).tail == (elt)); \
[all …]
/netbsd-src/external/mpl/bind/dist/lib/isc/include/isc/
H A Dlist.h25 .tail = NULL, \
42 type *head, *tail; \
47 (list).tail = NULL; \
65 #define ISC_LIST_TAIL(list) ((list).tail)
73 (list).tail = (elt); \
91 if ((list).tail != NULL) { \
92 (list).tail->link.next = (elt); \
96 (elt)->link.prev = (list).tail; \
98 (list).tail = (elt); \
115 ISC_INSIST((list).tail
[all...]
/netbsd-src/external/ibm-public/postfix/dist/src/trivial-rewrite/
H A Drewrite.c132 if (tree->head == tree->tail in rewrite_tree()
133 && tree->tail->type == TOK822_QSTRING in rewrite_tree()
134 && VSTRING_LEN(tree->tail->vstr) == 0) in rewrite_tree()
140 if (tree->head == tree->tail in rewrite_tree()
141 && tree->tail->type == '@') { in rewrite_tree()
142 tok822_free_tree(tok822_sub_keep_before(tree, tree->tail)); in rewrite_tree()
152 && colon != tree->tail) in rewrite_tree()
158 if ((domain = tok822_rfind_type(tree->tail, '@')) == 0) { in rewrite_tree()
177 && (domain = tok822_rfind_type(tree->tail, '%')) != 0) { in rewrite_tree()
205 && (domain = tok822_rfind_type(tree->tail, '@')) != 0 in rewrite_tree()
[all …]
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarmod-tail.exp1 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 ''
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-iterator.cc113 struct tree_statement_list_node *head, *tail, *cur; in tsi_link_before() local
121 tail = STATEMENT_LIST_TAIL (t); in tsi_link_before()
128 if (!head || !tail) in tsi_link_before()
130 gcc_assert (head == tail); in tsi_link_before()
140 tail = head; in tsi_link_before()
156 tail->next = cur; in tsi_link_before()
157 cur->prev = tail; in tsi_link_before()
166 STATEMENT_LIST_TAIL (i->container) = tail; in tsi_link_before()
178 i->ptr = tail; in tsi_link_before()
190 struct tree_statement_list_node *head, *tail, *cur; in tsi_link_after() local
[all …]
H A Dsched-ebb.cc96 debug_ebb_dependencies (rtx_insn *head, rtx_insn *tail) in debug_ebb_dependencies() argument
102 BLOCK_NUM (head), BLOCK_NUM (tail)); in debug_ebb_dependencies()
104 debug_dependencies (head, tail); in debug_ebb_dependencies()
375 add_deps_for_risky_insns (rtx_insn *head, rtx_insn *tail) in add_deps_for_risky_insns() argument
380 rtx_insn *next_tail = NEXT_INSN (tail); in add_deps_for_risky_insns()
471 schedule_ebb (rtx_insn *head, rtx_insn *tail, bool modulo_scheduling) in schedule_ebb() argument
479 while (head != tail) in schedule_ebb()
483 else if (NOTE_P (tail) || DEBUG_INSN_P (tail)) in schedule_ebb()
484 tail = PREV_INSN (tail); in schedule_ebb()
492 last_bb = BLOCK_FOR_INSN (tail); in schedule_ebb()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-iterator.c113 struct tree_statement_list_node *head, *tail, *cur; in tsi_link_before() local
121 tail = STATEMENT_LIST_TAIL (t); in tsi_link_before()
128 if (!head || !tail) in tsi_link_before()
130 gcc_assert (head == tail); in tsi_link_before()
140 tail = head; in tsi_link_before()
156 tail->next = cur; in tsi_link_before()
157 cur->prev = tail; in tsi_link_before()
166 STATEMENT_LIST_TAIL (i->container) = tail; in tsi_link_before()
178 i->ptr = tail; in tsi_link_before()
190 struct tree_statement_list_node *head, *tail, *cur; in tsi_link_after() local
[all …]
H A Dsched-ebb.c96 debug_ebb_dependencies (rtx_insn *head, rtx_insn *tail) in debug_ebb_dependencies() argument
102 BLOCK_NUM (head), BLOCK_NUM (tail)); in debug_ebb_dependencies()
104 debug_dependencies (head, tail); in debug_ebb_dependencies()
375 add_deps_for_risky_insns (rtx_insn *head, rtx_insn *tail) in add_deps_for_risky_insns() argument
380 rtx_insn *next_tail = NEXT_INSN (tail); in add_deps_for_risky_insns()
471 schedule_ebb (rtx_insn *head, rtx_insn *tail, bool modulo_scheduling) in schedule_ebb() argument
479 while (head != tail) in schedule_ebb()
483 else if (NOTE_P (tail) || DEBUG_INSN_P (tail)) in schedule_ebb()
484 tail = PREV_INSN (tail); in schedule_ebb()
492 last_bb = BLOCK_FOR_INSN (tail); in schedule_ebb()
[all …]
/netbsd-src/lib/libc/locale/
H A Dnewlocale.c47 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; in __weak_alias() local
65 tail = __UNCONST(strchr(tokens[0], '/')); in __weak_alias()
66 if (tail == NULL) { in __weak_alias()
75 *tail++ = '\0'; in __weak_alias()
83 *tail++ = '\0'; in __weak_alias()
84 tokens[i] = (const char *)tail; in __weak_alias()
85 tail = __UNCONST(strchr(tokens[i], '/')); in __weak_alias()
86 if (tail == NULL) { in __weak_alias()
91 *tail++ = '\0'; in __weak_alias()
92 tokens[howmany] = tail; in __weak_alias()
[all …]
H A Dgeneric_lc_all.c58 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; in _generic_LC_ALL_setlocale() local
68 tail = __UNCONST(strchr(tokens[1], '/')); in _generic_LC_ALL_setlocale()
69 if (tail == NULL) { in _generic_LC_ALL_setlocale()
73 *tail++ = '\0'; in _generic_LC_ALL_setlocale()
75 tokens[i] = (const char *)tail; in _generic_LC_ALL_setlocale()
76 tail = __UNCONST(strchr(tokens[i], '/')); in _generic_LC_ALL_setlocale()
77 if (tail == NULL) in _generic_LC_ALL_setlocale()
79 *tail++ = '\0'; in _generic_LC_ALL_setlocale()
81 tokens[_LC_LAST - 1] = (const char *)tail; in _generic_LC_ALL_setlocale()
82 tail = __UNCONST(strchr(tokens[i], '/')); in _generic_LC_ALL_setlocale()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_ring.h28 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
93 GEM_BUG_ON(!intel_ring_offset_valid(ring, tail)); in assert_ring_tail_valid()
110 GEM_BUG_ON(cacheline(tail) == cacheline(ring->head) && in assert_ring_tail_valid()
111 tail < ring->head); in assert_ring_tail_valid()
116 intel_ring_set_tail(struct intel_ring *ring, unsigned int tail) in intel_ring_set_tail() argument
124 assert_ring_tail_valid(ring, tail); in intel_ring_set_tail()
125 ring->tail = tail; in intel_ring_set_tail()
126 return tail; in intel_ring_set_tail()
130 __intel_ring_space(unsigned int head, unsigned int tail, unsigned int size) in __intel_ring_space() argument
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/cleanup/
H A Dbug1.file.ref1tail.porcupine.orgA5client_address=IPv6:2001:240:587:0:2d0:b7ff:febe:ca9fADmessage_origin=tail.por…
2 Y: 1234567N;Message-Id: <20060514010427.E0F703D1E36@tail.porcupine.org>N+Date: Sat, 13 May 2006 21:…
/netbsd-src/external/gpl3/binutils.old/dist/gprof/
H A Dcg_dfn.c93 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()
/netbsd-src/external/gpl3/binutils/dist/gprof/
H A Dcg_dfn.c93 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()
/netbsd-src/sys/dev/raidframe/
H A Drf_paritylog.c151 RF_ParityLogData_t ** tail) in EnqueueParityLogData() argument
167 RF_ASSERT((*tail)->next == NULL); in EnqueueParityLogData()
174 RF_ASSERT(*tail == NULL); in EnqueueParityLogData()
176 *tail = data; in EnqueueParityLogData()
179 RF_ASSERT((*tail)->next == NULL); in EnqueueParityLogData()
187 RF_ParityLogData_t ** tail, in DequeueParityLogData() argument
198 data = *tail; in DequeueParityLogData()
200 if (*head == *tail) { in DequeueParityLogData()
203 *tail = NULL; in DequeueParityLogData()
205 *tail = (*tail)->prev; in DequeueParityLogData()
[all …]
/netbsd-src/sys/external/bsd/drm2/linux/
H A Dlinux_list_sort.c128 struct list_head head, *tail = &head; in list_sort_merge() local
137 tail = tail->next = *first; in list_sort_merge()
144 tail->next = (a != NULL? a : b); in list_sort_merge()
176 struct list_head *tail = (a == NULL? b : a); in list_sort_merge_into() local
177 while (tail != NULL) { in list_sort_merge_into()
178 prev->next = tail; in list_sort_merge_into()
179 tail->prev = prev; in list_sort_merge_into()
181 tail = tail->next; in list_sort_merge_into()
/netbsd-src/games/atc/
H A Dlist.c73 l->head = l->tail = p; in append()
95 l->tail->next = p; in append()
97 p->prev = l->tail; in append()
98 l->tail = p; in append()
109 if (l->head == p && l->tail == p) in delete()
110 l->head = l->tail = NULL; in delete()
114 } else if (l->tail == p) { in delete()
115 l->tail = p->prev; in delete()
116 l->tail->next = NULL; in delete()
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
H A Dintel_guc_ct.c81 desc, desc->head, desc->tail); in guc_ct_buffer_desc_reset()
83 desc->tail = 0; in guc_ct_buffer_desc_reset()
305 u32 tail = desc->tail / 4; /* in dwords */ in ctb_write() local
314 GEM_BUG_ON(desc->tail % 4); in ctb_write()
315 GEM_BUG_ON(tail >= size); in ctb_write()
321 if (tail < head) in ctb_write()
322 used = (size - head) + tail; in ctb_write()
324 used = tail - head; in ctb_write()
345 cmds[tail] = header; in ctb_write()
346 tail = (tail + 1) % size; in ctb_write()
[all …]

12345678910>>...47