Home
last modified time | relevance | path

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

12345678910>>...60

/dflybsd-src/contrib/gdb-7/libiberty/
H A Dconcat.c71 vconcat_length (const char *first, va_list args) in vconcat_length() argument
76 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length()
83 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument
88 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy()
102 concat_length (const char *first, ...) in concat_length() argument
106 VA_OPEN (args, first); in concat_length()
107 VA_FIXEDARG (args, const char *, first); in concat_length()
108 length = vconcat_length (first, args); in concat_length()
117 concat_copy (char *dst, const char *first, ...) in concat_copy() argument
121 VA_OPEN (args, first); in concat_copy()
[all …]
/dflybsd-src/contrib/gcc-4.7/libiberty/
H A Dconcat.c71 vconcat_length (const char *first, va_list args) in vconcat_length() argument
76 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length()
83 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument
88 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy()
102 concat_length (const char *first, ...) in concat_length() argument
106 VA_OPEN (args, first); in concat_length()
107 VA_FIXEDARG (args, const char *, first); in concat_length()
108 length = vconcat_length (first, args); in concat_length()
117 concat_copy (char *dst, const char *first, ...) in concat_copy() argument
121 VA_OPEN (args, first); in concat_copy()
[all …]
/dflybsd-src/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c258 int *first, int *last, int depth) { in ss_insertionsort() argument
263 for(i = last - 2; first <= i; --i) { in ss_insertionsort()
353 ss_pivot(const unsigned char *Td, const int *PA, int *first, int *last) { in ss_pivot() argument
357 t = last - first; in ss_pivot()
358 middle = first + t / 2; in ss_pivot()
362 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot()
365 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot()
369 first = ss_median3(Td, PA, first, first + t, first + (t << 1)); in ss_pivot()
372 return ss_median3(Td, PA, first, middle, last); in ss_pivot()
382 int *first, int *last, int depth) { in ss_partition() argument
[all …]
/dflybsd-src/contrib/binutils-2.34/libiberty/
H A Dconcat.c59 vconcat_length (const char *first, va_list args) in vconcat_length() argument
64 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length()
71 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument
76 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy()
90 concat_length (const char *first, ...) in concat_length() argument
95 va_start (args, first); in concat_length()
96 length = vconcat_length (first, args); in concat_length()
105 concat_copy (char *dst, const char *first, ...) in concat_copy() argument
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
[all …]
/dflybsd-src/contrib/binutils-2.27/libiberty/
H A Dconcat.c59 vconcat_length (const char *first, va_list args) in vconcat_length() argument
64 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length()
71 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument
76 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy()
90 concat_length (const char *first, ...) in concat_length() argument
95 va_start (args, first); in concat_length()
96 length = vconcat_length (first, args); in concat_length()
105 concat_copy (char *dst, const char *first, ...) in concat_copy() argument
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
[all …]
/dflybsd-src/contrib/gcc-8.0/libiberty/
H A Dconcat.c59 vconcat_length (const char *first, va_list args) in vconcat_length() argument
64 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length()
71 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument
76 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy()
90 concat_length (const char *first, ...) in concat_length() argument
95 va_start (args, first); in concat_length()
96 length = vconcat_length (first, args); in concat_length()
105 concat_copy (char *dst, const char *first, ...) in concat_copy() argument
110 va_start (args, first); in concat_copy()
111 vconcat_copy (dst, first, args); in concat_copy()
[all …]
/dflybsd-src/sys/dev/drm/include/linux/
H A Dllist.h36 struct llist_node *first; member
45 return atomic_swap_ptr((void *)&head->first, NULL); in llist_del_all()
51 struct llist_node *first, *next; in llist_del_first() local
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()
[all …]
H A Dlist.h237 struct list_head *first; in _list_splice() local
242 first = list->next; in _list_splice()
244 first->prev = prev; in _list_splice()
245 prev->next = first; in _list_splice()
284 struct hlist_node *first; member
293 #define INIT_HLIST_HEAD(head) (head)->first = NULL
311 return !h->first; in hlist_empty()
337 n->next = h->first; in hlist_add_head()
338 if (h->first) in hlist_add_head()
339 h->first->pprev = &n->next; in hlist_add_head()
[all …]
/dflybsd-src/games/hack/
H A Dhack.o_init.c87 int i, j, first, last, sum, end; in init_objects() local
95 first = 0; in init_objects()
96 while (first < end) { in init_objects()
97 let = objects[first].oc_olet; in init_objects()
98 last = first + 1; in init_objects()
105 bases[i] = first; in init_objects()
111 for (j = first; j < last; j++) in init_objects()
114 for (j = first; j < last; j++) in init_objects()
115 objects[j].oc_prob = (100 + j - first) / (last - first); in init_objects()
121 if (objects[first].oc_descr != NULL && let != TOOL_SYM) { in init_objects()
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_pair.h93 _T1 first; /// @c first is a copy of the first object in _GLIBCXX_VISIBILITY() member
101 : first(), second() { } in _GLIBCXX_VISIBILITY()
105 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
111 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
117 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
126 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
131 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
137 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
143 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
152 first = __p.first; in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/contrib/cvs-1.12/src/
H A Dlog.c31 char *first; member
51 char *first; member
364 if (rp->first != NULL) in cvslog()
365 send_to_server (rp->first, 0); in cvslog()
370 if (rp->first != NULL) in cvslog()
371 send_to_server (rp->first, 0); in cvslog()
379 if (rp->first) in cvslog()
380 free (rp->first); in cvslog()
435 if (log_data.revlist->first) in cvslog()
436 free (log_data.revlist->first); in cvslog()
[all …]
/dflybsd-src/contrib/bmake/
H A Dlst.c65 for (ln = list->first; ln != NULL; ln = next) { in Lst_Done()
76 for (ln = list->first; ln != NULL; ln = next) { in Lst_DoneCall()
106 if (ln == list->first) in Lst_InsertBefore()
107 list->first = newNode; in Lst_InsertBefore()
118 ln = LstNodeNew(NULL, list->first, datum); in Lst_Prepend()
120 if (list->first == NULL) { in Lst_Prepend()
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()
[all …]
/dflybsd-src/contrib/flex/src/
H A Dnfa.c310 int link_machines (int first, int last) in link_machines() argument
312 if (first == NIL) in link_machines()
316 return first; in link_machines()
319 mkxtion (finalst[first], last); in link_machines()
320 finalst[first] = finalst[last]; 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()
377 int mkbranch (int first, int second) in mkbranch() argument
381 if (first == NO_TRANSITION) in mkbranch()
[all …]
/dflybsd-src/usr.bin/seq/
H A Dseq.c80 double first = 1.0; in main() local
139 first = e_atof(argv[0]); in main()
145 errx(1, "zero %screment", (first < last)? "in" : "de"); in main()
150 incr = (first < last) ? 1.0 : -1.0; in main()
152 if (incr <= 0.0 && first < last) in main()
155 if (incr >= 0.0 && first > last) in main()
167 fmt = generate_format(first, incr, last, equalize, pad); in main()
170 for (; first <= last; first += incr) { in main()
171 printf(fmt, first); in main()
175 for (; first >= last; first += incr) { in main()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_pair.h214 _T1 first; /// @c first is a copy of the first object in _GLIBCXX_VISIBILITY()
230 : first(), second() { } in _GLIBCXX_VISIBILITY()
243 : first(), second() { } in _GLIBCXX_VISIBILITY()
249 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
261 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
270 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
277 : 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()
312 : first(std::forward<_U1>(__x)), second(__y) { } 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()
104 __pre.matched = (__pre.first != __pre.second); in __regex_algo_impl()
105 __suf.first = __res[0].second; in __regex_algo_impl()
107 __suf.matched = (__suf.first != __suf.second); in __regex_algo_impl()
116 __it.first = __it.second = __e; in __regex_algo_impl()
313 if (__s == __it.first) in lookup_classname()
[all …]
/dflybsd-src/usr.bin/netstat/
H A Dinet6.c340 int first, i; in ip6_stats() local
383 for (first = 1, i = 0; i < 256; i++) in ip6_stats()
385 if (first) { in ip6_stats()
387 first = 0; in ip6_stats()
394 for (first = 1, i = 0; i < 32; i++) { in ip6_stats()
397 if (first) { in ip6_stats()
399 first = 0; in ip6_stats()
439 for (first = 1, i = 0; i < 16; i++) { in ip6_stats()
441 if (first) { in ip6_stats()
443 first = 0; in ip6_stats()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dgimple-iterator.c60 update_bb_for_stmts (gimple_seq_node first, basic_block bb) in update_bb_for_stmts() argument
64 for (n = first; n; n = n->next) in update_bb_for_stmts()
72 update_call_edge_frequencies (gimple_seq_node first, basic_block bb) in update_call_edge_frequencies() argument
78 for (n = first; n ; n = n->next) in update_call_edge_frequencies()
109 gimple_seq_node first, in gsi_insert_seq_nodes_before() argument
117 update_bb_for_stmts (first, bb); in gsi_insert_seq_nodes_before()
122 first->prev = cur->prev; in gsi_insert_seq_nodes_before()
123 if (first->prev) in gsi_insert_seq_nodes_before()
124 first->prev->next = first; in gsi_insert_seq_nodes_before()
126 gimple_seq_set_first (i->seq, first); in gsi_insert_seq_nodes_before()
[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()
296 bitmap_elt_clear_from (head, head->first); in bitmap_clear()
357 bit_obstack->heads = (struct bitmap_head_def *) map->first; in bitmap_obstack_alloc_stat()
392 map->first = (bitmap_element *) map->obstack->heads; in bitmap_obstack_free()
428 if (head->first == 0) in bitmap_element_link()
431 head->first = element; in bitmap_element_link()
446 head->first = element; in bitmap_element_link()
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dgimple-iterator.c66 update_bb_for_stmts (gimple_seq_node first, gimple_seq_node last, in update_bb_for_stmts() argument
71 for (n = first; n; n = n->next) in update_bb_for_stmts()
83 update_call_edge_frequencies (gimple_seq_node first, basic_block bb) in update_call_edge_frequencies() argument
88 for (n = first; n ; n = n->next) in update_call_edge_frequencies()
115 gimple_seq_node first, in gsi_insert_seq_nodes_before() argument
125 update_bb_for_stmts (first, last, bb); in gsi_insert_seq_nodes_before()
130 first->prev = cur->prev; in gsi_insert_seq_nodes_before()
131 if (first->prev->next) in gsi_insert_seq_nodes_before()
132 first->prev->next = first; in gsi_insert_seq_nodes_before()
134 gimple_seq_set_first (i->seq, first); in gsi_insert_seq_nodes_before()
[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()
223 bitmap_elt_clear_from (head, head->first); in bitmap_clear()
284 bit_obstack->heads = (struct bitmap_head *) map->first; in bitmap_alloc()
319 map->first = (bitmap_element *) map->obstack->heads; in bitmap_obstack_free()
356 if (head->first == 0) in bitmap_element_link()
359 head->first = element; in bitmap_element_link()
374 head->first = element; in bitmap_element_link()
[all …]
/dflybsd-src/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()
260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table() argument
262 { this->copy_from_range(first, last); } in cc_hash_table()
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table() argument
273 { this->copy_from_range(first, last); } in cc_hash_table()
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument
286 { this->copy_from_range(first, last); } in cc_hash_table()
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument
300 { this->copy_from_range(first, last); } in cc_hash_table()
[all …]
/dflybsd-src/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()
260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table() argument
262 { this->copy_from_range(first, last); } in cc_hash_table()
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table() argument
273 { this->copy_from_range(first, last); } in cc_hash_table()
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument
286 { this->copy_from_range(first, last); } in cc_hash_table()
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument
300 { this->copy_from_range(first, last); } in cc_hash_table()
[all …]
/dflybsd-src/contrib/mdocml/
H A Deqn_html.c54 if (NULL == bp->first) in eqn_box()
56 if (bp->first->type != EQN_LIST || 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()
64 if (NULL == (child = parent->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()
[all …]
/dflybsd-src/contrib/lvm2/dist/lib/format1/
H A Dformat1.c32 struct disk_list *first = NULL; in _check_vgs() local
65 if (!first) in _check_vgs()
66 first = dl; in _check_vgs()
68 else if (memcmp(&first->vgd, &dl->vgd, sizeof(first->vgd))) { in _check_vgs()
70 dev_name(first->dev), dev_name(dl->dev)); in _check_vgs()
76 dev_name(first->dev), first->vgd.vg_uuid, in _check_vgs()
77 first->vgd.vg_name_dummy, 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()
[all …]

12345678910>>...60