Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 1478) sorted by relevance

12345678910>>...60

/dragonfly/contrib/gdb-7/libiberty/
H A Dconcat.c106 VA_OPEN (args, first); in concat_length()
121 VA_OPEN (args, first); in concat_copy()
124 vconcat_copy (dst, first, args); in concat_copy()
142 concat_copy2 (const char *first, ...) in concat_copy2() argument
144 VA_OPEN (args, first); in concat_copy2()
153 concat (const char *first, ...) in concat() argument
158 VA_OPEN (args, first); in concat()
164 VA_OPEN (args, first); in concat()
166 vconcat_copy (newstr, first, args); in concat()
196 VA_OPEN (args, first); in reconcat()
[all …]
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dconcat.c106 VA_OPEN (args, first); in concat_length()
121 VA_OPEN (args, first); in concat_copy()
124 vconcat_copy (dst, first, args); in concat_copy()
142 concat_copy2 (const char *first, ...) in concat_copy2() argument
144 VA_OPEN (args, first); in concat_copy2()
153 concat (const char *first, ...) in concat() argument
158 VA_OPEN (args, first); in concat()
164 VA_OPEN (args, first); in concat()
166 vconcat_copy (newstr, first, args); in concat()
196 VA_OPEN (args, first); in reconcat()
[all …]
/dragonfly/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c369 first = ss_median3(Td, PA, first, first + t, first + (t << 1)); in ss_pivot()
393 if(first < a) { *first = ~*first; } in ss_partition()
425 for(a = first + 1, v = Td[PA[*first]]; a < last; ++a) { in ss_mintrosort()
433 first = ss_partition(PA, first, a, depth); in ss_mintrosort()
524 first = ss_partition(PA, first, last, depth); in ss_mintrosort()
643 ss_blockswap(buf, first, middle - first); in ss_mergeforward()
897 for(a = first, i = *(first - 1); in sssort()
1031 first = tr_median3(ISAd, first, first + t, first + (t << 1)); in tr_pivot()
1284 tr_heapsort(ISAd, first, last - first); in tr_introsort()
1298 tr_partition(ISAd, first, first + 1, last, &a, &b, v); in tr_introsort()
[all …]
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dconcat.c95 va_start (args, first); in concat_length()
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
129 concat_copy2 (const char *first, ...) in concat_copy2() argument
132 va_start (args, first); in concat_copy2()
140 concat (const char *first, ...) in concat() argument
146 va_start (args, first); in concat()
151 va_start (args, first); in concat()
152 vconcat_copy (newstr, first, args); in concat()
183 va_start (args, first); in reconcat()
[all …]
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dconcat.c95 va_start (args, first); in concat_length()
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
129 concat_copy2 (const char *first, ...) in concat_copy2() argument
132 va_start (args, first); in concat_copy2()
140 concat (const char *first, ...) in concat() argument
146 va_start (args, first); in concat()
151 va_start (args, first); in concat()
152 vconcat_copy (newstr, first, args); in concat()
183 va_start (args, first); in reconcat()
[all …]
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dconcat.c95 va_start (args, first); in concat_length()
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
129 concat_copy2 (const char *first, ...) in concat_copy2() argument
132 va_start (args, first); in concat_copy2()
140 concat (const char *first, ...) in concat() argument
146 va_start (args, first); in concat()
151 va_start (args, first); in concat()
152 vconcat_copy (newstr, first, args); in concat()
183 va_start (args, first); in reconcat()
[all …]
/dragonfly/sys/dev/drm/include/linux/
H A Dllist.h36 struct llist_node *first; member
54 first = head->first; in llist_del_first()
55 if (first == NULL) in llist_del_first()
57 next = first->next; in llist_del_first()
58 } while (atomic_cas_ptr(&head->first, first, next) != first); in llist_del_first()
60 return first; in llist_del_first()
66 struct llist_node *first = READ_ONCE(head->first); in llist_add() local
69 new->next = first; in llist_add()
70 } while (cmpxchg(&head->first, first, new) != first); in llist_add()
72 return (first == NULL); in llist_add()
[all …]
H A Dlist.h242 first = list->next; in _list_splice()
244 first->prev = prev; in _list_splice()
245 prev->next = first; in _list_splice()
311 return !h->first; in hlist_empty()
337 n->next = h->first; in hlist_add_head()
338 if (h->first) in hlist_add_head()
340 h->first = n; in hlist_add_head()
369 new->first = old->first; in hlist_move_list()
370 if (new->first) in hlist_move_list()
371 new->first->pprev = &new->first; in hlist_move_list()
[all …]
/dragonfly/games/hack/
H A Dhack.o_init.c95 first = 0; in init_objects()
96 while (first < end) { in init_objects()
98 last = first + 1; in init_objects()
105 bases[i] = first; in init_objects()
115 objects[j].oc_prob = (100 + j - first) / (last - first); in init_objects()
126 while (--j > first) { in init_objects()
127 i = first + rn2(j + 1 - first); in init_objects()
133 first = last; in init_objects()
158 first += j; in setgemprobs()
159 if (first >= LAST_GEM || first >= SIZE(objects) || in setgemprobs()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_pair.h111 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
117 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
143 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
152 first = __p.first; in _GLIBCXX_VISIBILITY()
162 first = std::forward<first_type>(__p.first); in _GLIBCXX_VISIBILITY()
171 first = __p.first; in _GLIBCXX_VISIBILITY()
180 first = std::forward<_U1>(__p.first); in _GLIBCXX_VISIBILITY()
187 noexcept(noexcept(swap(first, __p.first)) in _GLIBCXX_VISIBILITY()
191 swap(first, __p.first); in _GLIBCXX_VISIBILITY()
213 { return __x.first < __y.first in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/cvs-1.12/src/
H A Dlog.c31 char *first; member
51 char *first; member
599 r->first = copy; in log_parse_revlist()
613 if (r->first[0] != '\0' && r->first[strlen (r->first) - 1] == '.') in log_parse_revlist()
616 r->first[strlen (r->first) - 1] = '\0'; in log_parse_revlist()
626 r->first = xstrdup (r->first); in log_parse_revlist()
1075 nr->first = RCS_getbranch (rcs, r->first, 1); in log_expand_revlist()
1104 nr->first = xstrdup (r->first); in log_expand_revlist()
1110 nr->first = RCS_whatbranch (rcs, r->first); in log_expand_revlist()
1112 nr->first = RCS_gettag (rcs, r->first, 1, NULL); in log_expand_revlist()
[all …]
/dragonfly/contrib/bmake/
H A Dlst.c106 if (ln == list->first) in Lst_InsertBefore()
107 list->first = newNode; in Lst_InsertBefore()
121 list->first = ln; in Lst_Prepend()
124 list->first->prev = ln; in Lst_Prepend()
125 list->first = ln; in Lst_Prepend()
140 list->first = ln; in Lst_Append()
162 if (list->first == ln) in Lst_Remove()
163 list->first = ln->next; in Lst_Remove()
215 if (src->first != NULL) { in Lst_MoveAll()
220 dst->first = src->first; in Lst_MoveAll()
[all …]
/dragonfly/contrib/flex/src/
H A Dnfa.c312 if (first == NIL) in link_machines()
316 return first; in link_machines()
321 lastst[first] = MAX (lastst[first], lastst[last]); in link_machines()
322 firstst[first] = MIN (firstst[first], firstst[last]); in link_machines()
324 return first; in link_machines()
385 return first; in mkbranch()
464 if (first == NIL) in mkor()
468 return first; in mkor()
476 first = link_machines (eps, first); in mkor()
495 first = link_machines (first, eps); in mkor()
[all …]
/dragonfly/usr.bin/seq/
H A Dseq.c80 double first = 1.0; in main() local
139 first = e_atof(argv[0]); in main()
152 if (incr <= 0.0 && first < last) in main()
155 if (incr >= 0.0 && first > last) in main()
170 for (; first <= last; first += incr) { in main()
171 printf(fmt, first); in main()
175 for (; first >= last; first += incr) { in main()
176 printf(fmt, first); in main()
416 if (first > last) in generate_format()
417 last = first - incr * floor((first - last) / incr); in generate_format()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_pair.h277 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
292 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
301 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
361 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
371 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
383 first = __p.first; in _GLIBCXX_VISIBILITY()
396 first = std::forward<first_type>(__p.first); in _GLIBCXX_VISIBILITY()
407 first = __p.first; in _GLIBCXX_VISIBILITY()
418 first = std::forward<_U1>(__p.first); in _GLIBCXX_VISIBILITY()
429 swap(first, __p.first); in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex.tcc88 __it.first = __it.second = __e; in __regex_algo_impl()
94 __pre.first = __s; in __regex_algo_impl()
97 __suf.first = __e; in __regex_algo_impl()
102 __pre.first = __s; in __regex_algo_impl()
103 __pre.second = __res[0].first; in __regex_algo_impl()
105 __suf.first = __res[0].second; in __regex_algo_impl()
116 __it.first = __it.second = __e; in __regex_algo_impl()
313 if (__s == __it.first) in lookup_classname()
562 __prefix.first = __prefix_first; in operator ++()
633 _M_suffix.first = __prev->suffix().first; in operator ++()
[all …]
/dragonfly/usr.bin/netstat/
H A Dinet6.c340 int first, i; in ip6_stats() local
385 if (first) { in ip6_stats()
387 first = 0; in ip6_stats()
399 first = 0; in ip6_stats()
443 first = 0; in ip6_stats()
452 first = 0; in ip6_stats()
461 first = 0; in ip6_stats()
470 first = 0; in ip6_stats()
479 first = 0; in ip6_stats()
813 int first; in icmp6_stats() local
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgimple-iterator.c109 gimple_seq_node first, in gsi_insert_seq_nodes_before() argument
123 if (first->prev) in gsi_insert_seq_nodes_before()
124 first->prev->next = first; in gsi_insert_seq_nodes_before()
139 first->prev = itlast; in gsi_insert_seq_nodes_before()
141 itlast->next = first; in gsi_insert_seq_nodes_before()
152 i->ptr = first; in gsi_insert_seq_nodes_before()
191 if (!first || !last) in gsi_insert_seq_before_without_update()
246 first->prev = cur; in gsi_insert_seq_nodes_after()
247 cur->next = first; in gsi_insert_seq_nodes_after()
260 i->ptr = first; in gsi_insert_seq_nodes_after()
[all …]
H A Dbitmap.c170 if (head->first == elt) in bitmap_element_free()
171 head->first = next; in bitmap_element_free()
272 head->first = NULL; in bitmap_elt_clear_from()
295 if (head->first) in bitmap_clear()
428 if (head->first == 0) in bitmap_element_link()
446 head->first = element; in bitmap_element_link()
494 head->first = node; in bitmap_elt_insert_after()
748 elt = a->first; in bitmap_single_bit_set_p()
1768 for (a_elt = a->first, b_elt = b->first; in bitmap_equal_p()
1790 for (a_elt = a->first, b_elt = b->first; in bitmap_intersect_p()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgimple-iterator.c115 gimple_seq_node first, in gsi_insert_seq_nodes_before() argument
131 if (first->prev->next) in gsi_insert_seq_nodes_before()
132 first->prev->next = first; in gsi_insert_seq_nodes_before()
150 first->prev = itlast; in gsi_insert_seq_nodes_before()
151 itlast->next = first; in gsi_insert_seq_nodes_before()
163 i->ptr = first; in gsi_insert_seq_nodes_before()
198 if (!first || !last) in gsi_insert_seq_before_without_update()
257 first->prev = cur; in gsi_insert_seq_nodes_after()
258 cur->next = first; in gsi_insert_seq_nodes_after()
272 i->ptr = first; in gsi_insert_seq_nodes_after()
[all …]
H A Dbitmap.c97 if (head->first == elt) in bitmap_element_free()
98 head->first = next; in bitmap_element_free()
199 head->first = NULL; in bitmap_elt_clear_from()
222 if (head->first) in bitmap_clear()
356 if (head->first == 0) in bitmap_element_link()
374 head->first = element; in bitmap_element_link()
709 for (elt_a = a->first, elt_b = b->first; elt_a && elt_b; ) in bitmap_count_unique_bits()
750 elt = a->first; in bitmap_single_bit_set_p()
1786 for (a_elt = a->first, b_elt = b->first; in bitmap_equal_p()
1808 for (a_elt = a->first, b_elt = b->first; in bitmap_intersect_p()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) in cc_hash_table() argument
254 { base_type::copy_from_range(first, last); } in cc_hash_table()
262 { this->copy_from_range(first, last); } in cc_hash_table()
273 { this->copy_from_range(first, last); } in cc_hash_table()
286 { this->copy_from_range(first, last); } in cc_hash_table()
300 { this->copy_from_range(first, last); } in cc_hash_table()
430 gp_hash_table(It first, It last) in gp_hash_table() argument
655 tree(It first, It last) in tree() argument
663 tree(It first, It last, const cmp_fn& c) in tree() argument
751 trie(It first, It last) in trie() argument
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) in cc_hash_table() argument
254 { base_type::copy_from_range(first, last); } in cc_hash_table()
262 { this->copy_from_range(first, last); } in cc_hash_table()
273 { this->copy_from_range(first, last); } in cc_hash_table()
286 { this->copy_from_range(first, last); } in cc_hash_table()
300 { this->copy_from_range(first, last); } in cc_hash_table()
430 gp_hash_table(It first, It last) in gp_hash_table() argument
655 tree(It first, It last) in tree() argument
663 tree(It first, It last, const cmp_fn& c) in tree() argument
751 trie(It first, It last) in trie() argument
[all …]
/dragonfly/contrib/mdocml/
H A Deqn_html.c54 if (NULL == bp->first) in eqn_box()
57 bp->first->expectargs == 1) { in eqn_box()
58 eqn_box(p, bp->first); in eqn_box()
61 if (NULL == (parent = bp->first->first)) in eqn_box()
71 parent = bp->first->first; in eqn_box()
74 child = parent->first; in eqn_box()
87 eqn_box(p, child->first); in eqn_box()
137 if (bp->first != NULL && in eqn_box()
139 bp->first->expectargs > 1) in eqn_box()
211 eqn_box(p, bp->first); in eqn_box()
[all …]
/dragonfly/contrib/lvm2/dist/lib/format1/
H A Dformat1.c65 if (!first) in _check_vgs()
66 first = dl; in _check_vgs()
76 dev_name(first->dev), first->vgd.vg_uuid, in _check_vgs()
78 first->vgd.vg_number, first->vgd.vg_access, in _check_vgs()
79 first->vgd.vg_status, first->vgd.lv_max, in _check_vgs()
80 first->vgd.lv_cur, first->vgd.lv_open, in _check_vgs()
81 first->vgd.pv_max, first->vgd.pv_cur, in _check_vgs()
82 first->vgd.pv_act, first->vgd.dummy, in _check_vgs()
83 first->vgd.vgda, first->vgd.pe_size, in _check_vgs()
84 first->vgd.pe_total, first->vgd.pe_allocated, in _check_vgs()
[all …]

12345678910>>...60