HomeSort by: relevance | last modified time | path
    Searched refs:choice (Results 1 - 25 of 79) sorted by relevancy

1 2 3 4

  /src/sys/arch/zaurus/stand/zboot/
bootmenu.c 54 int choice = -1; local
57 choice = def;
59 choice = (*input) - 'A';
61 choice = (*input) - 'a';
63 choice = atoi(input) - 1;
64 if (choice < 0 || choice >= bootcfg_info.nummenu)
65 choice = -1;
67 return choice;
74 int choice; local
    [all...]
  /src/sys/stand/efiboot/
bootmenu.c 83 int choice, usedef; local
85 choice = -1;
89 choice = def;
92 choice = (*input) - 'A';
94 choice = (*input) - 'a';
96 choice = atoi(input) - 1;
97 if (choice < 0 || choice >= bootcfg_info.nummenu)
98 choice = -1;
103 choice = -1
139 int choice; local
    [all...]
  /src/sys/arch/i386/stand/lib/
bootmenu.c 84 int choice, usedef; local
86 choice = -1;
90 choice = def;
93 choice = (*input) - 'A';
95 choice = (*input) - 'a';
97 choice = atoi(input) - 1;
98 if (choice < 0 || choice >= bootcfg_info.nummenu)
99 choice = -1;
104 choice = -1
140 int choice; local
    [all...]
  /src/external/bsd/tmux/dist/
menu.c 42 int choice; member in struct:menu_data
175 if (md->choice == -1)
178 *cy = md->py + 1 + md->choice;
214 screen_write_menu(&ctx, menu, md->choice, md->border_lines,
247 int count = menu->count, old = md->choice;
273 if (md->choice != -1) {
274 md->choice = -1;
286 md->choice = m->y - (md->py + 1);
287 if (md->choice != old)
296 md->choice = i
499 int choice; local
    [all...]
options.c 1064 int n = 0, choice = -1; local
1068 choice = n;
1071 if (choice == -1) {
1075 return (choice);
1082 int choice = -1; local
1085 choice = options_get_number(oo, name);
1086 if (choice < 2)
1087 choice = !choice;
1089 choice = options_find_choice(oe, value, cause)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_attrmap.c 31 ASN1_IMP(OSSL_ATTRIBUTE_MAPPING, choice.typeMappings,
33 ASN1_IMP(OSSL_ATTRIBUTE_MAPPING, choice.typeValueMappings,
56 if (i2a_ASN1_OBJECT(out, am->choice.typeMappings->local) <= 0)
60 return i2a_ASN1_OBJECT(out, am->choice.typeMappings->remote);
62 local_type = am->choice.typeValueMappings->local->type;
63 remote_type = am->choice.typeValueMappings->remote->type;
64 local_val = am->choice.typeValueMappings->local->value;
65 remote_val = am->choice.typeValueMappings->remote->value;
v3_timespec.c 66 ASN1_SET_OF(OSSL_NAMED_DAY, choice.intNamedDays, ASN1_ENUMERATED),
67 ASN1_SIMPLE(OSSL_NAMED_DAY, choice.bitNamedDays, ASN1_BIT_STRING),
71 ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.first, OSSL_NAMED_DAY, 1),
72 ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.second, OSSL_NAMED_DAY, 2),
73 ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.third, OSSL_NAMED_DAY, 3),
74 ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.fourth, OSSL_NAMED_DAY, 4),
75 ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.fifth, OSSL_NAMED_DAY, 5),
79 ASN1_SET_OF(OSSL_TIME_SPEC_DAY, choice.intDay, ASN1_INTEGER),
80 ASN1_SIMPLE(OSSL_TIME_SPEC_DAY, choice.bitDay, ASN1_BIT_STRING),
81 ASN1_SIMPLE(OSSL_TIME_SPEC_DAY, choice.dayOf, OSSL_TIME_SPEC_X_DAY_OF)
    [all...]
v3_asid.c 63 ASIdentifierChoice *choice,
68 if (choice == NULL)
71 switch (choice->type) {
76 for (i = 0; i < sk_ASIdOrRange_num(choice->u.asIdsOrRanges); i++) {
77 ASIdOrRange *aor = sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
150 ASIdentifierChoice **choice;
155 choice = &asid->asnum;
158 choice = &asid->rdi;
163 if (*choice == NULL) {
164 if ((*choice = ASIdentifierChoice_new()) == NULL
    [all...]
v3_aaa.c 17 ASN1_IMP(OSSL_ALLOWED_ATTRIBUTES_CHOICE, choice.attributeType, ASN1_OBJECT,
19 ASN1_IMP(OSSL_ALLOWED_ATTRIBUTES_CHOICE, choice.attributeTypeandValues,
26 /* This MUST be EXPLICIT, because it contains a CHOICE. */
51 if (i2a_ASN1_OBJECT(out, a->choice.attributeType) <= 0)
55 attr = a->choice.attributeTypeandValues;
v3_attrdesc.c 26 ASN1_SIMPLE(OSSL_INFO_SYNTAX, choice.content, DIRECTORYSTRING),
27 ASN1_SIMPLE(OSSL_INFO_SYNTAX, choice.pointer, OSSL_INFO_SYNTAX_POINTER)
103 if (BIO_printf(out, "%.*s", info->choice.content->length, info->choice.content->data) <= 0)
111 return i2r_INFO_SYNTAX_POINTER(method, info->choice.pointer, out, indent + 4);
v3_ac_tgt.c 61 ASN1_EXP(OSSL_TARGET, choice.targetName, GENERAL_NAME, 0),
62 ASN1_EXP(OSSL_TARGET, choice.targetGroup, GENERAL_NAME, 1),
63 ASN1_IMP(OSSL_TARGET, choice.targetCert, OSSL_TARGET_CERT, 2),
189 GENERAL_NAME_print(out, target->choice.targetName);
194 GENERAL_NAME_print(out, target->choice.targetGroup);
199 i2r_TARGET_CERT(method, target->choice.targetCert, out, indent + 2);
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_asid.c 63 ASIdentifierChoice *choice,
68 if (choice == NULL)
71 switch (choice->type) {
76 for (i = 0; i < sk_ASIdOrRange_num(choice->u.asIdsOrRanges); i++) {
78 sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
156 ASIdentifierChoice **choice;
161 choice = &asid->asnum;
164 choice = &asid->rdi;
169 if (*choice == NULL) {
170 if ((*choice = ASIdentifierChoice_new()) == NULL
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_asid.c 62 ASIdentifierChoice *choice,
67 if (choice == NULL)
70 switch (choice->type) {
75 for (i = 0; i < sk_ASIdOrRange_num(choice->u.asIdsOrRanges); i++) {
77 sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
155 ASIdentifierChoice **choice;
160 choice = &asid->asnum;
163 choice = &asid->rdi;
168 if (*choice == NULL) {
169 if ((*choice = ASIdentifierChoice_new()) == NULL
    [all...]
  /src/external/lgpl3/gmp/dist/tune/
speed.c 575 struct choice_t *choice; variable in typeref:struct:choice_t
629 want_data |= ((choice[i].p->flag & FLAG_NODATA) == 0);
662 s->r = choice[i].r;
663 choice[i].time = speed_measure (choice[i].p->fun, s);
664 choice[i].no_time = (choice[i].time == -1.0);
665 if (! choice[i].no_time)
666 choice[i].time *= choice[i].scale
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
template.c 375 const struct asn1_template *choice = t->ptr; local
376 unsigned int *element = DPO(data, choice->offset);
383 for (i = 1; i < A1_HEADER_LEN(choice) + 1; i++) {
384 /* should match first tag instead, store it in choice.tt */
385 ret = _asn1_decode(choice[i].ptr, 0, p, len,
386 DPO(data, choice[i].offset), &datalen);
395 if (i >= A1_HEADER_LEN(choice) + 1) {
396 if (choice->tt == 0)
401 DPO(data, choice->tt), &datalen);
668 const struct asn1_template *choice = t->ptr local
803 const struct asn1_template *choice = t->ptr; local
909 const struct asn1_template *choice = t->ptr; local
1070 const struct asn1_template *choice = t->ptr; local
    [all...]
fuzzer.c 576 const struct asn1_template *choice = t->ptr; local
577 const unsigned int *element = DPOC(data, choice->offset);
581 if (*element > A1_HEADER_LEN(choice)) {
588 DPOC(data, choice->tt), &datalen);
590 choice += *element;
591 el = DPOC(data, choice->offset);
592 ret = _asn1_encode_fuzzer(choice->ptr, p, len, el, &datalen);
720 const struct asn1_template *choice = t->ptr; local
721 const unsigned int *element = DPOC(data, choice->offset);
723 if (*element > A1_HEADER_LEN(choice))
    [all...]
  /src/external/mit/xorg/bin/xgc/
Makefile 7 choice.c main.c interpret.c record.c testfrac.c gram.y lex.l
  /src/external/mit/isl/dist/include/isl/
arg.h 65 struct isl_arg_choice *choice; member in struct:isl_arg::__anon23657::__anon23658
69 } choice; member in union:isl_arg::__anon23657
140 .u = { .choice = { .choice = c, .default_value = d, \
149 .u = { .choice = { .choice = c, .default_value = d, \
159 .u = { .choice = { .choice = c, .default_value = d, \
168 .u = { .choice = { .choice = c, .default_value = d,
    [all...]
  /src/external/mit/isl/dist/
isl_arg.c 27 *(unsigned *)(((char *)opt) + arg->offset) = arg->u.choice.default_value;
409 for (i = 0; decl->u.choice.choice[i].name; ++i)
410 if (decl->u.choice.choice[i].value == *p) {
411 s = decl->u.choice.choice[i].name;
428 for (i = 0; decl->u.choice.choice[i].name; ++i) {
433 printf("%s", decl->u.choice.choice[i].name)
808 const char *choice; local
    [all...]
  /src/games/fortune/fortune/
fortune.c 924 int choice; local
929 choice = arc4random_uniform(100);
930 DPRINTF(1, (stderr, "choice = %d\n", choice));
932 if (choice < fp->percent)
935 choice -= fp->percent;
937 " skip \"%s\", %d%% (choice = %d)\n",
938 fp->name, fp->percent, choice));
941 "using \"%s\", %d%% (choice = %d)\n",
942 fp->name, fp->percent, choice));
987 int choice; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/
shuffle_fuzz.py 51 (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))
abtest.py 288 choice = (basename, (file_a, file_b))
289 choices.append(choice)
343 choice = name, (candidate_a, candidate_b)
344 choices.append(choice)
389 # choices each. The bisection algorithm will pick one choice for each name
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
explore.py 472 choice = input("Enter the field number of choice: ")
473 if choice in choice_to_compound_field_map:
475 choice_to_compound_field_map[choice][0],
476 choice_to_compound_field_map[choice][1],
548 choice = input("Enter the field number of choice: ")
549 if choice in choice_to_compound_field_map:
552 choice_to_compound_field_map[choice][2],
553 choice_to_compound_field_map[choice][0]
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
explore.py 472 choice = input("Enter the field number of choice: ")
473 if choice in choice_to_compound_field_map:
475 choice_to_compound_field_map[choice][0],
476 choice_to_compound_field_map[choice][1],
548 choice = input("Enter the field number of choice: ")
549 if choice in choice_to_compound_field_map:
552 choice_to_compound_field_map[choice][2],
553 choice_to_compound_field_map[choice][0]
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
slh-dsa.c 109 unsigned int choice; local
119 choice = (selector % 12) + 1460;
121 name = OBJ_nid2ln(choice);
127 switch (choice) {

Completed in 56 milliseconds

1 2 3 4