Home
last modified time | relevance | path

Searched refs:todo (Results 1 – 25 of 53) sorted by relevance

123

/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-optimize.c160 unsigned int todo = 0; in execute_cleanup_cfg_post_optimizing() local
162 todo |= TODO_update_ssa; in execute_cleanup_cfg_post_optimizing()
195 return todo; in execute_cleanup_cfg_post_optimizing()
245 int todo = gimple_in_ssa_p (cfun) ? TODO_verify_ssa : 0; in execute_fixup_cfg() local
281 todo |= TODO_cleanup_cfg; in execute_fixup_cfg()
285 todo |= TODO_update_ssa | TODO_cleanup_cfg; in execute_fixup_cfg()
292 todo |= TODO_cleanup_cfg; in execute_fixup_cfg()
297 todo |= TODO_cleanup_cfg; in execute_fixup_cfg()
318 return todo; in execute_fixup_cfg()
H A Dipa-inline-transform.c349 unsigned int todo = 0; in inline_transform() local
367 todo = optimize_inline_calls (current_function_decl); in inline_transform()
372 todo |= execute_fixup_cfg (); in inline_transform()
374 if (!(todo & TODO_update_ssa_any)) in inline_transform()
376 todo |= TODO_update_ssa_only_virtuals; in inline_transform()
378 return todo; in inline_transform()
H A Dtree-ssa-pre.c4145 unsigned int todo = 0; in eliminate() local
4357 todo = TODO_cleanup_cfg; in eliminate()
4553 return todo; in eliminate()
4815 unsigned todo = 0; in fini_pre() local
4842 todo = TODO_cleanup_cfg; in fini_pre()
4847 return todo; in fini_pre()
4856 unsigned int todo = 0; in execute_pre() local
4910 todo |= eliminate (); in execute_pre()
4925 todo |= fini_pre (do_fre); in execute_pre()
4935 todo |= tail_merge_optimize (todo); in execute_pre()
[all …]
H A Dtree-ssa-dce.c1627 unsigned int todo; in tree_ssa_dce_loop() local
1628 todo = perform_tree_ssa_dce (/*aggressive=*/false); in tree_ssa_dce_loop()
1629 if (todo) in tree_ssa_dce_loop()
1634 return todo; in tree_ssa_dce_loop()
H A Dtree-if-conv.c1748 unsigned todo = 0; in main_tree_if_conversion() local
1757 todo |= TODO_cleanup_cfg; in main_tree_if_conversion()
1760 todo |= TODO_update_ssa_only_virtuals; in main_tree_if_conversion()
1762 return todo; in main_tree_if_conversion()
/dragonfly/crypto/libressl/crypto/hkdf/
H A Dhkdf.c93 size_t todo; in HKDF_expand() local
104 todo = digest_len; in HKDF_expand()
105 if (done + todo > out_len) in HKDF_expand()
106 todo = out_len - done; in HKDF_expand()
108 memcpy(out_key + done, previous, todo); in HKDF_expand()
109 done += todo; in HKDF_expand()
/dragonfly/usr.bin/vmstat/
H A Dvmstat.c163 int c, todo; in main() local
182 todo |= FORKSTAT; in main()
188 todo |= INTRSTAT; in main()
195 todo |= MEMSTAT; in main()
208 todo |= OCSTAT; in main()
215 todo |= SUMSTAT; in main()
219 todo |= TIMESTAT; in main()
243 if (todo == 0) in main()
244 todo = VMSTAT; in main()
329 if (todo & VMSTAT) in main()
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c260 int todo; member
638 a->todo = TODO_MODE_BASE; in _archive_write_disk_header()
674 a->todo |= TODO_OWNER; in _archive_write_disk_header()
676 a->todo |= TODO_TIMES; in _archive_write_disk_header()
723 a->todo |= TODO_ACLS; in _archive_write_disk_header()
780 a->todo |= TODO_XATTR; in _archive_write_disk_header()
783 a->todo |= TODO_FFLAGS; in _archive_write_disk_header()
2114 a->todo = 0; in restore_entry()
2335 a->todo = 0; in create_filesystem_object()
2442 a->todo &= ~TODO_MODE; in create_filesystem_object()
[all …]
/dragonfly/sys/dev/drm/
H A Ddrm_dp_aux_dev.c158 ssize_t todo = min(iov_iter_count(to), sizeof(buf));
165 res = drm_dp_dpcd_read(aux_dev->aux, pos, buf, todo);
199 ssize_t todo = min(iov_iter_count(from), sizeof(buf));
206 if (!copy_from_iter_full(buf, todo, from)) {
211 res = drm_dp_dpcd_write(aux_dev->aux, pos, buf, todo);
/dragonfly/contrib/gcc-8.0/gcc/
H A Dshrink-wrap.c1265 vec<basic_block> todo; in spread_components() local
1290 while (!todo.is_empty ()) in spread_components()
1292 bb = todo.pop (); in spread_components()
1306 todo.quick_push (e->dest); in spread_components()
1330 while (!todo.is_empty ()) in spread_components()
1332 bb = todo.pop (); in spread_components()
1337 todo.quick_push (e->src); in spread_components()
1355 while (!todo.is_empty ()) in spread_components()
1357 bb = todo.pop (); in spread_components()
1371 todo.quick_push (e->src); in spread_components()
[all …]
H A Dipa-inline-transform.c632 unsigned int todo = 0; in inline_transform() local
682 todo = optimize_inline_calls (current_function_decl); in inline_transform()
688 todo |= execute_fixup_cfg (); in inline_transform()
690 if (!(todo & TODO_update_ssa_any)) in inline_transform()
692 todo |= TODO_update_ssa_only_virtuals; in inline_transform()
694 return todo; in inline_transform()
H A Dtree-ssa-loop-im.c1094 unsigned int todo = 0; in move_computations_worker() local
1097 return todo; in move_computations_worker()
1148 todo |= TODO_cleanup_cfg; in move_computations_worker()
1244 return todo; in move_computations_worker()
1255 unsigned todo = 0; in move_computations() local
1266 return todo; in move_computations()
2548 unsigned int todo; in tree_ssa_lim() local
2568 todo = move_computations (); in tree_ssa_lim()
2572 return todo; in tree_ssa_lim()
2615 unsigned int todo = tree_ssa_lim (); in execute() local
[all …]
H A Dtree-cfgcleanup.c1287 unsigned int todo = execute_fixup_cfg (); in execute_cleanup_cfg_post_optimizing() local
1290 todo &= ~TODO_cleanup_cfg; in execute_cleanup_cfg_post_optimizing()
1291 todo |= TODO_update_ssa; in execute_cleanup_cfg_post_optimizing()
1296 todo |= TODO_cleanup_cfg; in execute_cleanup_cfg_post_optimizing()
1327 return todo; in execute_cleanup_cfg_post_optimizing()
H A Dauto-profile.c1507 unsigned todo = optimize_inline_calls (current_function_decl); in afdo_vpt_for_early_inline() local
1508 if (todo & TODO_update_ssa_any) in afdo_vpt_for_early_inline()
1592 unsigned todo = early_inliner (cfun); in early_inline() local
1593 if (todo & TODO_update_ssa_any) in early_inline()
H A Dtree-ssa-tail-merge.c1728 tail_merge_optimize (unsigned int todo) in tail_merge_optimize() argument
1745 if (todo & TODO_cleanup_cfg) in tail_merge_optimize()
1748 todo &= ~TODO_cleanup_cfg; in tail_merge_optimize()
1824 return todo; in tail_merge_optimize()
H A Dtree-if-conv.c2829 unsigned int todo = 0; in tree_if_conversion() local
2909 todo |= TODO_cleanup_cfg; in tree_if_conversion()
2928 return todo; in tree_if_conversion()
2973 unsigned todo = 0; in execute() local
2982 todo |= tree_if_conversion (loop); in execute()
2984 if (todo) in execute()
2997 return todo; in execute()
/dragonfly/contrib/binutils-2.34/gprof/
H A Dcg_print.c166 Sym *todo, *doing, *prev; in sort_members() local
170 todo = cyc->cg.cyc.next; in sort_members()
173 for (doing = todo; doing != NULL; doing = todo) in sort_members()
175 todo = doing->cg.cyc.next; in sort_members()
567 unsigned int nnames, todo, i, j; in cg_print_index() local
589 for (sym_index = 1, todo = nnames; sym_index <= num_cycles; sym_index++) in cg_print_index()
590 name_sorted_syms[todo++] = &cycle_header[sym_index]; in cg_print_index()
594 sym_index = (todo + 2) / 3; in cg_print_index()
601 for (j = i; j < todo; j += sym_index) in cg_print_index()
/dragonfly/contrib/binutils-2.27/gprof/
H A Dcg_print.c166 Sym *todo, *doing, *prev; in sort_members() local
170 todo = cyc->cg.cyc.next; in sort_members()
173 for (doing = todo; doing != NULL; doing = todo) in sort_members()
175 todo = doing->cg.cyc.next; in sort_members()
567 unsigned int nnames, todo, i, j; in cg_print_index() local
589 for (sym_index = 1, todo = nnames; sym_index <= num_cycles; sym_index++) in cg_print_index()
590 name_sorted_syms[todo++] = &cycle_header[sym_index]; in cg_print_index()
594 sym_index = (todo + 2) / 3; in cg_print_index()
601 for (j = i; j < todo; j += sym_index) in cg_print_index()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dregex552 * @todo Implement this function.
569 * @todo Implement this function.
606 * @todo Implement this function.
1059 * @todo Implement this function.
2007 * @todo Implement this function.
2016 * @todo Implement this function.
2075 * @todo Implement this function.
2128 * @todo Implement this function.
2269 * @todo Implement this function.
2402 * @todo Implement this function.
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dregex549 * @todo Implement this function.
566 * @todo Implement this function.
603 * @todo Implement this function.
1056 * @todo Implement this function.
2004 * @todo Implement this function.
2013 * @todo Implement this function.
2072 * @todo Implement this function.
2125 * @todo Implement this function.
2266 * @todo Implement this function.
2399 * @todo Implement this function.
[all …]
/dragonfly/contrib/tnftp/
H A DREADME.DELETED15 todo
/dragonfly/sbin/restore/
H A Ddirs.c217 treescan(char *pname, ufs1_ino_t ino, long (*todo)(char *, ufs1_ino_t, int)) in treescan()
230 (*todo)(pname, ino, LEAF); in treescan()
236 if ((*todo)(pname, ino, NODE) == FAIL) in treescan()
269 treescan(locname, dp->d_ino, todo); in treescan()
/dragonfly/usr.bin/limits/
H A Dlimits.c270 enum { RCSUNKNOWN=0, RCSSET=1, RCSSEL=2 } todo = RCSUNKNOWN; in main() local
337 todo = optarg == NULL ? RCSSEL : RCSSET; in main()
414 if (num_limits && todo == RCSSET) { in main()
/dragonfly/contrib/wpa_supplicant/
H A DREADME.DELETED50 wpa_supplicant/todo.txt
/dragonfly/contrib/gdb-7/gdb/
H A Dremote.c6658 int todo; in remote_write_bytes_aux() local
6697 todo = min (len, payload_size); in remote_write_bytes_aux()
6699 payload_size -= hexnumlen (todo); in remote_write_bytes_aux()
6700 todo = min (todo, payload_size); in remote_write_bytes_aux()
6707 payload_size -= hexnumlen (todo); in remote_write_bytes_aux()
6708 todo = min (todo, payload_size / 2); in remote_write_bytes_aux()
6711 if (todo <= 0) in remote_write_bytes_aux()
6717 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len) in remote_write_bytes_aux()
6718 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr; in remote_write_bytes_aux()
6852 int todo; in remote_read_bytes() local
[all …]

123