Home
last modified time | relevance | path

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

12345678910>>...58

/netbsd/usr.bin/find/
H A Doperator.c118 tail = next; in yankexpr()
120 tail->next = NULL; in yankexpr()
155 tail->next = expr; in paren_squish()
156 tail = expr; in paren_squish()
158 tail->next = NULL; in paren_squish()
214 tail->next = next; in not_squish()
215 tail = next; in not_squish()
217 tail->next = NULL; in not_squish()
266 tail->next = next; in or_squish()
267 tail = next; in or_squish()
[all …]
/netbsd/external/gpl3/gcc.old/dist/libgfortran/io/
H A Dformat.c231 *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()
672 tail->repeat = 1; in parse_format_list()
746 tail->u.k = 1; in parse_format_list()
790 tail->u.r = 1; in parse_format_list()
938 tail->u.real.w = 0; in parse_format_list()
1057 tail->u.real.d = 0; in parse_format_list()
[all …]
/netbsd/external/gpl3/gcc/dist/libgfortran/io/
H A Dformat.c230 *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()
672 tail->repeat = 1; in parse_format_list()
746 tail->u.k = 1; in parse_format_list()
790 tail->u.r = 1; in parse_format_list()
945 tail->u.real.w = 0; in parse_format_list()
1064 tail->u.real.d = 0; in parse_format_list()
[all …]
/netbsd/external/bsd/jemalloc/dist/include/jemalloc/internal/
H A Dhash.h107 case 3: k1 ^= tail[2] << 16; in hash_x86_32()
108 case 2: k1 ^= tail[1] << 8; in hash_x86_32()
181 case 14: k4 ^= tail[13] << 8; /*FALLTHROUGH*/ in hash_x86_128()
182 case 13: k4 ^= tail[12] << 0; in hash_x86_128()
188 case 10: k3 ^= tail[ 9] << 8; /*FALLTHROUGH*/ in hash_x86_128()
189 case 9: k3 ^= tail[ 8] << 0; in hash_x86_128()
195 case 6: k2 ^= tail[ 5] << 8; /*FALLTHROUGH*/ in hash_x86_128()
196 case 5: k2 ^= tail[ 4] << 0; in hash_x86_128()
203 case 1: k1 ^= tail[ 0] << 0; in hash_x86_128()
272 case 9: k2 ^= ((uint64_t)(tail[ 8])) << 0; in hash_x64_128()
[all …]
/netbsd/external/bsd/jemalloc/include/jemalloc/internal/
H A Dhash.h107 case 3: k1 ^= tail[2] << 16; in hash_x86_32()
108 case 2: k1 ^= tail[1] << 8; in hash_x86_32()
181 case 14: k4 ^= tail[13] << 8; /*FALLTHROUGH*/ in hash_x86_128()
182 case 13: k4 ^= tail[12] << 0; in hash_x86_128()
188 case 10: k3 ^= tail[ 9] << 8; /*FALLTHROUGH*/ in hash_x86_128()
189 case 9: k3 ^= tail[ 8] << 0; in hash_x86_128()
195 case 6: k2 ^= tail[ 5] << 8; /*FALLTHROUGH*/ in hash_x86_128()
196 case 5: k2 ^= tail[ 4] << 0; in hash_x86_128()
203 case 1: k1 ^= tail[ 0] << 0; in hash_x86_128()
272 case 9: k2 ^= ((uint64_t)(tail[ 8])) << 0; in hash_x64_128()
[all …]
/netbsd/sys/external/bsd/drm2/include/linux/
H A Dkfifo.h141 return (head <= tail ? tail - head : nbytes + tail - head); in _kfifo_len()
158 if (head <= tail) { in _kfifo_out_peek()
159 if (size <= tail - head) { in _kfifo_out_peek()
193 if (head <= tail) { in _kfifo_out()
194 if (size <= tail - head) { in _kfifo_out()
231 if (tail <= head) { in _kfifo_in()
232 if (size <= head - tail) { in _kfifo_in()
234 meta->kfm_tail = tail + size; in _kfifo_in()
238 if (size <= nbytes - tail) { in _kfifo_in()
242 memcpy(dst + tail, src, nbytes - tail); in _kfifo_in()
[all …]
/netbsd/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;
251 if defined $depconv_cache{$tail};
279 (my $tail = $') =~ s/\s*\R$//;
285 $tail = rel2abs($tail);
287 unless (defined $depconv_cache{$tail}) {
288 my $dep = $tail;
[all …]
H A Dcheck-format.pl452 my ($head, $tail) = (substr($str, 0, $i).$1, $3);
471 $tail =~ m/^([\s@]*)([^\s\@])/;
614 $_ = "$head@@".$tail; # blind the "*/"
625 $_ = blind_nonspace($cmt_text)."@@".$tail;
636 my $cmt_text = $opt_minus.$tail; # preliminary
884 … report("code after '}'") unless $tail eq "" || $tail =~ m/(else|while|OSSL_TRACE_END)(\W|$)/;
1015 my ($head, $mid, $tail) = ($1, $3, $4);
1085 my $tail = substr($_, $terminator_position + 1);
1087 if ($tail =~ m/\s*else(\W|$)/) {
1167 if (my ($head, $tail) = m/(^|^.*\W)while(\W.*$|$)/) {
[all …]
/netbsd/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/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/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/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()
152 && colon != tree->tail) in rewrite_tree()
206 && domain != tree->tail in rewrite_tree()
235 if (tree->tail->type == '.' in rewrite_tree()
236 && tree->tail->prev in rewrite_tree()
237 && tree->tail->prev->type != '.' in rewrite_tree()
[all …]
/netbsd/external/mpl/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; \
188 (list1).tail = (list2).tail; \
222 (dest).tail = (src).tail; \
[all …]
/netbsd/lib/libc/locale/
H A Dnewlocale.c65 tail = 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 = 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()
93 tail = strchr(tokens[howmany], '/'); 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 = 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 = 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 = strchr(tokens[i], '/'); in _generic_LC_ALL_setlocale()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dtree-iterator.c128 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()
178 i->ptr = tail; in tsi_link_before()
205 if (!head || !tail) in tsi_link_after()
217 tail = head; in tsi_link_after()
229 if (tail->next) in tsi_link_after()
230 tail->next->prev = tail; in tsi_link_after()
[all …]
H A Dtree-iterator.cc128 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()
178 i->ptr = tail; in tsi_link_before()
205 if (!head || !tail) in tsi_link_after()
217 tail = head; in tsi_link_after()
229 if (tail->next) in tsi_link_after()
230 tail->next->prev = tail; in tsi_link_after()
[all …]
H A Dsched-ebb.c102 BLOCK_NUM (head), BLOCK_NUM (tail)); in debug_ebb_dependencies()
104 debug_dependencies (head, tail); in debug_ebb_dependencies()
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()
494 if (no_real_insns_p (head, tail)) in schedule_ebb()
495 return BLOCK_FOR_INSN (tail); in schedule_ebb()
528 remove_notes (head, tail); in schedule_ebb()
614 rtx_insn *tail; in schedule_ebbs() local
[all …]
H A Dsched-ebb.cc102 BLOCK_NUM (head), BLOCK_NUM (tail)); in debug_ebb_dependencies()
104 debug_dependencies (head, tail); in debug_ebb_dependencies()
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()
494 if (no_real_insns_p (head, tail)) in schedule_ebb()
495 return BLOCK_FOR_INSN (tail); in schedule_ebb()
528 remove_notes (head, tail); in schedule_ebb()
614 rtx_insn *tail; in schedule_ebbs() local
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dtree-iterator.c128 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()
178 i->ptr = tail; in tsi_link_before()
205 if (!head || !tail) in tsi_link_after()
217 tail = head; in tsi_link_after()
229 if (tail->next) in tsi_link_after()
230 tail->next->prev = tail; in tsi_link_after()
[all …]
H A Dsched-ebb.c102 BLOCK_NUM (head), BLOCK_NUM (tail)); in debug_ebb_dependencies()
104 debug_dependencies (head, tail); in debug_ebb_dependencies()
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()
494 if (no_real_insns_p (head, tail)) in schedule_ebb()
495 return BLOCK_FOR_INSN (tail); in schedule_ebb()
528 remove_notes (head, tail); in schedule_ebb()
614 rtx_insn *tail; in schedule_ebbs() local
[all …]
/netbsd/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/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/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dlist.h48 #define ISC_LIST_TAIL(list) ((list).tail)
56 (list).tail = (elt); \
73 if ((list).tail != NULL) \
74 (list).tail->link.next = (elt); \
77 (elt)->link.prev = (list).tail; \
79 (list).tail = (elt); \
96 ISC_INSIST((list).tail == (elt)); \
97 (list).tail = (elt)->link.prev; \
168 (list1).tail = (list2).tail; \
171 (list2).tail = NULL; \
[all …]
/netbsd/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()

12345678910>>...58