Home
last modified time | relevance | path

Searched refs:choice (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/openbsd/usr.bin/tmux/
H A Dmenu.c42 int choice; member
306 if (md->choice == -1 || md->choice == 0) in menu_key_cb()
309 md->choice--; in menu_key_cb()
329 if (md->choice == -1 || md->choice == count - 1) in menu_key_cb()
372 md->choice--; in menu_key_cb()
382 md->choice++; in menu_key_cb()
392 md->choice--; in menu_key_cb()
467 int choice; in menu_prepare() local
511 md->choice = choice - 1; in menu_prepare()
524 md->choice = choice; in menu_prepare()
[all …]
H A Doptions.c997 int n = 0, choice = -1; in options_find_choice() local
1001 choice = n; in options_find_choice()
1004 if (choice == -1) { in options_find_choice()
1008 return (choice); in options_find_choice()
1015 int choice = -1; in options_from_string_choice() local
1018 choice = options_get_number(oo, name); in options_from_string_choice()
1019 if (choice < 2) in options_from_string_choice()
1020 choice = !choice; in options_from_string_choice()
1022 choice = options_find_choice(oe, value, cause); in options_from_string_choice()
1023 if (choice < 0) in options_from_string_choice()
[all …]
H A Dwindow-customize.c659 const char **choice, *text, *name; in window_customize_draw_option() local
748 for (choice = oe->choices; *choice != NULL; choice++) { in window_customize_draw_option()
749 strlcat(choices, *choice, sizeof choices); in window_customize_draw_option()
1016 u_int choice; in window_customize_set_option() local
1087 choice = options_get_number(oo, name); in window_customize_set_option()
1088 if (oe->choices[choice + 1] == NULL) in window_customize_set_option()
1089 choice = 0; in window_customize_set_option()
1091 choice++; in window_customize_set_option()
1092 options_set_number(oo, name, choice); in window_customize_set_option()
H A Dmode-tree.c1028 int choice; in mode_tree_key() local
1069 choice = -1; in mode_tree_key()
1072 choice = i; in mode_tree_key()
1076 if (choice != -1) { in mode_tree_key()
1077 if ((u_int)choice > mtd->line_size - 1) { in mode_tree_key()
1081 mtd->current = choice; in mode_tree_key()
/openbsd/lib/libcrypto/x509/
H A Dx509_asid.c313 if (choice == NULL) in i2r_ASIdentifierChoice()
316 switch (choice->type) { in i2r_ASIdentifierChoice()
417 choice = &asid->asnum; in X509v3_asid_add_inherit()
420 choice = &asid->rdi; in X509v3_asid_add_inherit()
426 if (*choice != NULL) { in X509v3_asid_add_inherit()
436 *choice = aic; in X509v3_asid_add_inherit()
509 choice = &asid->asnum; in X509v3_asid_add_id_or_range()
512 choice = &asid->rdi; in X509v3_asid_add_id_or_range()
533 *choice = aic; in X509v3_asid_add_id_or_range()
583 if (choice == NULL || choice->type == ASIdentifierChoice_inherit) in ASIdentifierChoice_is_canonical()
[all …]
/openbsd/gnu/usr.bin/perl/Porting/
H A Dgit-deltatool213 my ($self, $choice, $log) = @_;
214 return unless $choice;
381 my ($self, $choice, $log) = @_;
388 my ($self, $choice, $log) = @_;
396 my ($self, $choice, $log) = @_;
413 my ($self, $choice, $log) = @_;
421 my ($self, $choice, $log) = @_;
439 my ($self, $choice, $log) = @_;
457 my ($self, $choice, $log) = @_;
475 my ($self, $choice, $log) = @_;
[all …]
/openbsd/lib/libc/crypt/
H A Dcryptutil.c68 const char *choice = choices[i]; in crypt_newhash() local
69 size_t len = strlen(choice); in crypt_newhash()
70 if (strcmp(pref, choice) == 0) { in crypt_newhash()
73 } else if (strncmp(pref, choice, len) == 0 && in crypt_newhash()
/openbsd/games/fortune/fortune/
H A Dfortune.c804 int choice; in get_fort() local
809 choice = arc4random_uniform(100); in get_fort()
812 if (choice < fp->percent) in get_fort()
815 choice -= fp->percent; in get_fort()
822 fp->name, fp->percent, choice)); in get_fort()
833 choice -= fp->tbl.str_numstr; in get_fort()
838 choice)); in get_fort()
868 int choice; in pick_child() local
873 choice, parent->num_children)); in pick_child()
883 choice, parent->tbl.str_numstr)); in pick_child()
[all …]
/openbsd/gnu/llvm/llvm/utils/
H A Dshuffle_fuzz.py51 (width, element_type) = random.choice(
55 (width, element_type) = random.choice(
60 width = random.choice([2, 4, 8, 16, 32, 64])
61 element_type = random.choice(element_types)
107 else random.choice(range(shuffle_range))
H A Dabtest.py288 choice = (basename, (file_a, file_b))
289 choices.append(choice)
343 choice = name, (candidate_a, candidate_b)
344 choices.append(choice)
H A Dshuffle_select_fuzz_tester.py244 num_elts = random.choice(range(2, 65))
250 width = random.choice(int_elt_widths)
253 width = random.choice(float_elt_widths)
308 op2 = random.choice(inputs)
/openbsd/sys/kern/
H A Dkern_sched.c374 struct cpu_info *choice = NULL; in sched_choosecpu_fork() local
410 if (choice == NULL || run < best_run) { in sched_choosecpu_fork()
411 choice = ci; in sched_choosecpu_fork()
416 return (choice); in sched_choosecpu_fork()
426 struct cpu_info *choice = NULL; in sched_choosecpu() local
468 if (choice == NULL || cost < last_cost) { in sched_choosecpu()
469 choice = ci; in sched_choosecpu()
475 if (p->p_cpu != choice) in sched_choosecpu()
480 return (choice); in sched_choosecpu()
/openbsd/gnu/llvm/clang/utils/
H A Dmodfuzz.py110 i = random.choice(list(range(len(m))))
148 d = random.choice([decl for decl in decls if decl.valid(model)])
/openbsd/gnu/lib/libstdc++/libstdc++/docs/html/27_io/
H A Dbinary_iostreams_kanze.txt40 |> What do you think about this choice?
42 What other choice is possible? It's not reasonable to ask the standard
H A Dbinary_iostreams_kuehl.txt79 : What do you think about this choice?
81 When I wrote the above paragraph about confirming your choice, I haven't
84 whether your choice is the right one. Actually, I'm pretty sure it is
/openbsd/gnu/gcc/libstdc++-v3/docs/html/27_io/
H A Dbinary_iostreams_kanze.txt40 |> What do you think about this choice?
42 What other choice is possible? It's not reasonable to ask the standard
H A Dbinary_iostreams_kuehl.txt79 : What do you think about this choice?
81 When I wrote the above paragraph about confirming your choice, I haven't
84 whether your choice is the right one. Actually, I'm pretty sure it is
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.td434 // deopending on the choice of register.
556 // depending on the choice of registers.
589 // depending on the choice of registers.
675 // depending on the choice of register.
683 // depending on the choice of register.
726 // depending on the choice of register.
734 // depending on the choice of register.
795 // STC, STCY or STCH, depending on the choice of register.
1562 // depending on the choice of register.
1569 // depending on the choice of register.
[all …]
/openbsd/regress/sys/netinet/pmtu/
H A Dudp_atomicfrag6.py32 data=''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase +
H A Dudp_echo6.py32 data=''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase +
/openbsd/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-dis.rst24 removed). You can override the choice of output file using the
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dwhine.t7 use base 'Pod::Simple::DumpAsXML'; # arbitrary choice -- rjbs, 2013-04-16
/openbsd/gnu/llvm/libcxx/src/support/runtime/
H A Dexception_pointer_glibcxx.ipp13 // we have little choice but to hijack std::__exception_ptr::exception_ptr's
/openbsd/gnu/llvm/clang/www/demo/
H A Dwhat is this directory.txt11 …e are any takers who would be interested (and willing to do a rewrite to their language of choice).
/openbsd/gnu/llvm/llvm/bindings/python/
H A DREADME.txt45 Then open cover/index.html in your browser of choice to see the code coverage.

12345678910>>...13