Home
last modified time | relevance | path

Searched refs:max_uid (Results 1 – 21 of 21) sorted by relevance

/dragonfly/games/robots/
H A Dscore.c67 static int numscores, max_uid; in score() local
75 if (read(inf, &max_uid, sizeof max_uid) == sizeof max_uid) in score()
80 max_uid = Max_per_uid; in score()
88 (scp->s_uid == uid && ++numscores == max_uid)) { in score()
132 write(inf, &max_uid, sizeof max_uid); in score()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgraph.c257 int max_uid = get_max_uid (); in print_rtl_graph_with_bb() local
258 int *start = XNEWVEC (int, max_uid); in print_rtl_graph_with_bb()
259 int *end = XNEWVEC (int, max_uid); in print_rtl_graph_with_bb()
260 enum bb_state *in_bb_p = XNEWVEC (enum bb_state, max_uid); in print_rtl_graph_with_bb()
264 for (i = 0; i < max_uid; ++i) in print_rtl_graph_with_bb()
H A Dbt-load.c643 sbitmap bb_in = sbitmap_alloc (max_uid); in compute_out()
664 sbitmap *btr_defset, int max_uid) in link_btr_uses() argument
667 sbitmap reaching_defs = sbitmap_alloc (max_uid); in link_btr_uses()
700 sbitmap reaching_defs_of_reg = sbitmap_alloc(max_uid); in link_btr_uses()
778 const int max_uid = get_max_uid (); in build_btr_def_use_webs() local
779 btr_def *def_array = XCNEWVEC (btr_def, max_uid); in build_btr_def_use_webs()
780 btr_user *use_array = XCNEWVEC (btr_user, max_uid); in build_btr_def_use_webs()
782 (last_btr - first_btr) + 1, max_uid); in build_btr_def_use_webs()
793 bb_kill = sbitmap_vector_alloc (last_basic_block, max_uid); in build_btr_def_use_webs()
797 bb_out = sbitmap_vector_alloc (last_basic_block, max_uid); in build_btr_def_use_webs()
[all …]
H A Dfinal.c856 int max_uid; in shorten_branches() local
872 max_uid = get_max_uid (); in shorten_branches()
877 uid_shuid = XNEWVEC (int, max_uid); in shorten_branches()
980 insn_lengths = XNEWVEC (int, max_uid); in shorten_branches()
981 insn_lengths_max_uid = max_uid; in shorten_branches()
984 INSN_ADDRESSES_ALLOC (max_uid); in shorten_branches()
986 varying_length = XCNEWVEC (char, max_uid); in shorten_branches()
993 uid_align = XCNEWVEC (rtx, max_uid); in shorten_branches()
1721 int max_uid = 0; in final() local
1734 if (INSN_UID (insn) > max_uid) /* Find largest UID. */ in final()
[all …]
H A Dreorg.c175 static int max_uid; variable
897 && INSN_UID (insn) <= max_uid in get_jump_flags()
898 && INSN_UID (label) <= max_uid) in get_jump_flags()
1048 return (ANY_RETURN_P (target_label) || INSN_UID (jump_insn) > max_uid in mostly_true_jump()
1049 || INSN_UID (target_label) > max_uid in mostly_true_jump()
3903 for (max_uid = 0, insn = first; insn; insn = NEXT_INSN (insn)) in dbr_schedule()
3905 if (INSN_UID (insn) > max_uid) in dbr_schedule()
3906 max_uid = INSN_UID (insn); in dbr_schedule()
3912 uid_to_ruid = XNEWVEC (int, max_uid + 1); in dbr_schedule()
H A Dcfgrtl.c1734 int max_uid = get_max_uid (); in print_rtl_with_bb() local
1735 basic_block *start = XCNEWVEC (basic_block, max_uid); in print_rtl_with_bb()
1736 basic_block *end = XCNEWVEC (basic_block, max_uid); in print_rtl_with_bb()
1737 enum bb_state *in_bb_p = XCNEWVEC (enum bb_state, max_uid); in print_rtl_with_bb()
2115 const int max_uid = get_max_uid (); in rtl_verify_flow_info() local
2117 bb_info = XCNEWVEC (basic_block, max_uid); in rtl_verify_flow_info()
H A Dreg-stack.c3202 int max_uid; in reg_to_stack() local
3284 max_uid = get_max_uid (); in reg_to_stack()
3285 stack_regs_mentioned_data = VEC_alloc (char, heap, max_uid + 1); in reg_to_stack()
3287 0, sizeof (char) * (max_uid + 1)); in reg_to_stack()
H A Dhaifa-sched.c551 set_modulo_params (int ii, int max_stages, int insns, int max_uid) in set_modulo_params() argument
556 modulo_iter0_max_uid = max_uid; in set_modulo_params()
631 discard_delay_pairs_above (int max_uid) in discard_delay_pairs_above() argument
633 htab_traverse (delay_htab, htab_i1_traverse, &max_uid); in discard_delay_pairs_above()
634 htab_traverse (delay_htab_i2, htab_i2_traverse, &max_uid); in discard_delay_pairs_above()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dbt-load.c630 auto_sbitmap bb_in (max_uid); in compute_out()
650 sbitmap *btr_defset, int max_uid) in link_btr_uses() argument
653 auto_sbitmap reaching_defs (max_uid); in link_btr_uses()
686 auto_sbitmap reaching_defs_of_reg (max_uid); in link_btr_uses()
761 const int max_uid = get_max_uid (); in build_btr_def_use_webs() local
762 btr_def **def_array = XCNEWVEC (btr_def *, max_uid); in build_btr_def_use_webs()
763 btr_user **use_array = XCNEWVEC (btr_user *, max_uid); in build_btr_def_use_webs()
765 (last_btr - first_btr) + 1, max_uid); in build_btr_def_use_webs()
767 max_uid); in build_btr_def_use_webs()
783 compute_out (bb_out, bb_gen, bb_kill, max_uid); in build_btr_def_use_webs()
[all …]
H A Dreorg.c188 static int max_uid; variable
818 && INSN_UID (insn) <= max_uid in get_jump_flags()
819 && INSN_UID (label) <= max_uid) in get_jump_flags()
3684 for (max_uid = 0, insn = first; insn; insn = NEXT_INSN (insn)) in dbr_schedule()
3686 if (INSN_UID (insn) > max_uid) in dbr_schedule()
3687 max_uid = INSN_UID (insn); in dbr_schedule()
3693 uid_to_ruid = XNEWVEC (int, max_uid + 1); in dbr_schedule()
H A Dread-rtl-function.c1571 int max_uid = 0; in handle_insn_uids() local
1577 if (INSN_UID (insn) > max_uid) in handle_insn_uids()
1578 max_uid = INSN_UID (insn); in handle_insn_uids()
1583 crtl->emit.x_cur_insn_uid = max_uid + 1; in handle_insn_uids()
H A Dfinal.c904 int max_uid; in shorten_branches() local
917 max_uid = get_max_uid (); in shorten_branches()
922 uid_shuid = XNEWVEC (int, max_uid); in shorten_branches()
1004 insn_lengths = XNEWVEC (int, max_uid); in shorten_branches()
1005 insn_lengths_max_uid = max_uid; in shorten_branches()
1008 INSN_ADDRESSES_ALLOC (max_uid); in shorten_branches()
1010 varying_length = XCNEWVEC (char, max_uid); in shorten_branches()
1017 uid_align = XCNEWVEC (rtx, max_uid); in shorten_branches()
H A Dreg-stack.c3288 int max_uid; in reg_to_stack() local
3365 max_uid = get_max_uid (); in reg_to_stack()
3366 stack_regs_mentioned_data.create (max_uid + 1); in reg_to_stack()
3368 0, sizeof (char) * (max_uid + 1)); in reg_to_stack()
H A Dcfgrtl.c2167 int max_uid = get_max_uid (); in print_rtl_with_bb() local
2168 basic_block *start = XCNEWVEC (basic_block, max_uid); in print_rtl_with_bb()
2169 basic_block *end = XCNEWVEC (basic_block, max_uid); in print_rtl_with_bb()
2170 enum bb_state *in_bb_p = XCNEWVEC (enum bb_state, max_uid); in print_rtl_with_bb()
2793 const int max_uid = get_max_uid (); in rtl_verify_bb_insn_chain() local
2795 bb_info = XCNEWVEC (basic_block, max_uid); in rtl_verify_bb_insn_chain()
H A Dlra-constraints.c5738 bool before_p, rtx_insn *insn, int max_uid) in split_if_necessary() argument
5751 && INSN_UID (next_usage_insns) < max_uid) in split_if_necessary()
5753 && (INSN_UID (XEXP (next_usage_insns, 0)) < max_uid))) in split_if_necessary()
6245 int max_uid = get_max_uid (); in inherit_in_ebb() local
6287 false, curr_insn, max_uid)) in inherit_in_ebb()
6412 before_p, curr_insn, max_uid)) in inherit_in_ebb()
H A Dhaifa-sched.c580 set_modulo_params (int ii, int max_stages, int insns, int max_uid) in set_modulo_params() argument
585 modulo_iter0_max_uid = max_uid; in set_modulo_params()
707 discard_delay_pairs_above (int max_uid) in discard_delay_pairs_above() argument
709 delay_htab->traverse <int *, haifa_htab_i1_traverse> (&max_uid); in discard_delay_pairs_above()
710 delay_htab_i2->traverse <int *, haifa_htab_i2_traverse> (&max_uid); in discard_delay_pairs_above()
H A Dira.c4498 int max_uid = get_max_uid (); in find_moveable_pseudos() local
4500 int *uid_luid = XNEWVEC (int, max_uid); in find_moveable_pseudos()
/dragonfly/usr.sbin/pw/
H A Dpw_user.c268 if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_uid = (uid_t) atoi(p)) < cnf->min_uid) in pw_user()
269 cnf->max_uid = 32000; in pw_user()
812 if (cnf->min_uid >= cnf->max_uid) { /* Sanity in pw_uidpolicy()
815 cnf->max_uid = 32000; in pw_uidpolicy()
817 bm = bm_alloc(cnf->max_uid - cnf->min_uid + 1); in pw_uidpolicy()
824 if (pwd->pw_uid >= (uid_t) cnf->min_uid && pwd->pw_uid <= (uid_t) cnf->max_uid) in pw_uidpolicy()
831 if (cnf->reuse_uids || (uid = (uid_t) (bm_lastset(&bm) + cnf->min_uid + 1)) > cnf->max_uid) in pw_uidpolicy()
837 if (uid < cnf->min_uid || uid > cnf->max_uid) in pw_uidpolicy()
H A Dpw.h91 uid_t min_uid, max_uid; /* Allowed range of uids */ member
H A Dpw_conf.c344 config.max_uid = (uid_t) atol(q); in read_userconfig()
472 sprintf(buf, "%lu", (unsigned long) config.max_uid); in write_userconfig()
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Di386.c24201 int max_uid ATTRIBUTE_UNUSED) in ix86_sched_init_global()