Home
last modified time | relevance | path

Searched refs:classes (Results 1 – 25 of 512) sorted by relevance

12345678910>>...21

/netbsd/src/crypto/external/bsd/heimdal/dist/kadmin/
Drandom_password.c121 } *classes; in generate_password() local
129 classes = malloc(num_classes * sizeof(*classes)); in generate_password()
130 if(classes == NULL) in generate_password()
135 classes[i].str = va_arg(ap, const char*); in generate_password()
136 classes[i].len = strlen(classes[i].str); in generate_password()
137 classes[i].freq = va_arg(ap, int); in generate_password()
138 len += classes[i].freq; in generate_password()
143 free(classes); in generate_password()
151 if(x < t + classes[j].freq) { in generate_password()
152 (*pw)[i] = classes[j].str[RND(rbuf, sizeof(rbuf), &rleft) in generate_password()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dira-costs.cc116 enum reg_class classes[N_REG_CLASSES]; member
145 return iterative_hash (&hv->classes, sizeof (enum reg_class) * hv->num, 0); in hash()
153 && memcmp (hv1->classes, hv2->classes, in equal()
188 enum reg_class cl = classes_ptr->classes[i]; in complete_cost_classes()
214 all_cost_classes.classes[i] = ira_important_classes[i]; in initiate_regno_cost_classes()
231 classes_ptr->classes[i] = from->classes[i]; in setup_cost_classes()
252 enum reg_class cl = full->classes[i]; in restrict_cost_classes()
290 enum reg_class cl2 = narrow.classes[pos]; in restrict_cost_classes()
302 narrow.classes[narrow.num++] = cl; in restrict_cost_classes()
311 cost_classes_t classes = setup_cost_classes (&narrow); in restrict_cost_classes() local
[all …]
Dipa-icf.cc2122 for (unsigned int i = 0; i < (*it)->classes.length (); i++) in ~sem_item_optimizer()
2123 delete (*it)->classes[i]; in ~sem_item_optimizer()
2125 (*it)->classes.release (); in ~sem_item_optimizer()
2318 group->classes.safe_push (cls); in add_class()
2336 item->classes.create (1); in get_group_by_hash()
2620 if (!group->classes.length ()) in build_hash_based_classes()
2623 group->classes.safe_push (new congruence_class (class_id++)); in build_hash_based_classes()
2626 add_item_to_class (group->classes[0], item); in build_hash_based_classes()
2712 unsigned int class_count = (*it)->classes.length (); in subdivide_classes_by_equality()
2716 congruence_class *c = (*it)->classes[i]; in subdivide_classes_by_equality()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
Dpass-by-ref.exp257 proc generate_program { classes stmts } {
282 $classes
315 set classes ""
319 append classes [generate_small_class $state]
322 append classes [generate_large_class $state]
325 append classes [generate_derived_class $state]
328 append classes [generate_container_class $state]
333 set program [generate_program $classes $stmts]
/netbsd/src/external/bsd/tre/dist/lib/
Dtre-match-utils.h200 tre_neg_char_classes_match(tre_ctype_t *classes, tre_cint_t wc, int icase) in tre_neg_char_classes_match() argument
202 DPRINT(("neg_char_classes_test: %p, %d, %d\n", classes, wc, icase)); in tre_neg_char_classes_match()
203 while (*classes != (tre_ctype_t)0) in tre_neg_char_classes_match()
204 if ((!icase && tre_isctype(wc, *classes)) in tre_neg_char_classes_match()
205 || (icase && (tre_isctype(tre_toupper(wc), *classes) in tre_neg_char_classes_match()
206 || tre_isctype(tre_tolower(wc), *classes)))) in tre_neg_char_classes_match()
209 classes++; in tre_neg_char_classes_match()
/netbsd/src/lib/libc/net/
Dhesiod.c90 int classes[2]; /* The class search order. */ member
277 retvec = get_txt_records(ctx->classes[0], bindname); in hesiod_resolve()
278 if (retvec == NULL && errno == ENOENT && ctx->classes[1]) in hesiod_resolve()
279 retvec = get_txt_records(ctx->classes[1], bindname); in hesiod_resolve()
317 ctx->classes[0] = C_IN; in read_config_file()
318 ctx->classes[1] = C_HS; in read_config_file()
382 ctx->classes[n++] = C_IN; in read_config_file()
385 ctx->classes[n++] = in read_config_file()
390 ctx->classes[n++] = 0; in read_config_file()
396 if (!ctx->rhs || ctx->classes[0] == 0 || in read_config_file()
[all …]
/netbsd/src/external/ibm-public/postfix/dist/mantools/
Dmake-relnotes44 for $class (@classes) {
52 @classes = ("default");
60 @classes = split(/,+/, $junk);
72 for $class (@classes) {
/netbsd/src/external/bsd/openldap/dist/doc/drafts/
Ddraft-stroeder-namedobject-xx.txt16 This document defines structural object classes that can be used when
18 object classes will give the possibility to associate a common name
119 elements, especially auxiliary object classes that are intended to
123 add the entry. Often the structural object classes used were defined
127 structural object classes, 'namedObject' and 'namedPolicy'. Only
129 simple object classes. Arbitrary auxiliary object classes may be
143 The object classes definitions in this section are using the
151 attributes allowed by auxiliary classes also MAY be used for naming
154 LDAP clients displaying a list of entries of these object classes
189 object classes without having to restrict the more general
[all …]
/netbsd/src/usr.sbin/altq/altqd/altq.conf.samples/
Dcbq.sample07 # meta classes
17 # leaf classes
21 # bulk data classes
38 # misc (udp) classes
45 # interactive classes
Dcbq.v67 # meta classes
17 # leaf classes
21 # bulk data classes
40 # misc (udp, ipv4) classes
54 # interactive classes
Dcbq.widecamp8 # meta classes
18 # leaf classes
22 # bulk data classes
43 # misc (udp) classes
52 # interactive classes
/netbsd/src/tests/lib/libc/locale/
Dt_wctype.c71 } classes[16]; member
156 if (t->classes[i].in[0] == '\0' && in h_ctype()
157 t->classes[i].out[0] == '\0') in h_ctype()
165 for (cp = (const char *)(t->classes[i].in); *cp; ++cp) { in h_ctype()
170 for (cp = (const char *)(t->classes[i].out); *cp; ++cp) { in h_ctype()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dfriend.cc239 tree classes; in make_friend_class() local
444 for (classes = CLASSTYPE_FRIEND_CLASSES (type); in make_friend_class()
445 classes; in make_friend_class()
446 classes = TREE_CHAIN (classes)) in make_friend_class()
448 tree probe = TREE_VALUE (classes); in make_friend_class()
472 if (!classes) in make_friend_class()
/netbsd/src/common/dist/zlib/contrib/iostream3/
DREADME1 These classes provide a C++ stream interface to the zlib library. It allows you
10 The gzifstream and gzofstream classes were originally written by Kevin Ruland
15 The new classes are as standard-compliant as possible, closely following the
16 approach of the standard library's fstream classes. It compiles under gcc versions
/netbsd/src/external/gpl3/binutils/dist/gas/config/
Dkvx-parse.c439 is_insn (const struct token_s *token, struct token_class *classes) in is_insn() argument
445 while (!res && classes[i].class_values != NULL) in is_insn()
447 res = !strncmp (classes[i].class_values[0], tok, tok_sz); in is_insn()
455 get_token_class (struct token_s *token, struct token_classes *classes, int insn_p, int modifier_p) in get_token_class() argument
469 class = classes->reg_classes; in get_token_class()
474 class = classes->mod_classes; in get_token_class()
479 class = classes->imm_classes; in get_token_class()
490 class = classes->sep_classes; in get_token_class()
493 else if (insn_p && is_insn (token, classes->insn_classes)) in get_token_class()
495 class = classes->insn_classes; in get_token_class()
[all …]
/netbsd/src/external/bsd/openldap/dist/doc/rfc/
Drfc3703.txt36 This model defines two hierarchies of object classes: structural
37 classes representing information for representing and controlling
38 policy data as specified in RFC 3060, and relationship classes that
39 indicate how instances of the structural classes are related to each
43 These classes exist only to optimize LDAP retrievals: there are no
44 classes in the information model that correspond to them.
125 hierarchies of object classes: structural classes representing policy
126 information and control of policies, and relationship classes that
127 indicate how instances of the structural classes are related to each
131 This document defines the mapping of these information model classes
[all …]
/netbsd/src/dist/pf/sbin/pfctl/
Dpfctl_osfp.c68 struct name_list classes = LIST_HEAD_INITIALIZER(&classes); variable
103 pfctl_flush_my_fingerprints(&classes); in pfctl_file_fingerprints()
303 pfctl_flush_my_fingerprints(&classes); in pfctl_load_fingerprints()
323 if (LIST_FIRST(&classes) != NULL) { in pfctl_show_fingerprints()
330 sort_name_list(opts, &classes); in pfctl_show_fingerprints()
331 print_name_list(opts, &classes, ""); in pfctl_show_fingerprints()
351 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint()
369 if ((class_nm = lookup_name_list(&classes, wr_name)) == NULL) { in pfctl_get_fingerprint()
485 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint()
610 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in add_fingerprint()
[all …]
/netbsd/src/sbin/modstat/
Dmain.c51 static const char *classes[] = { variable
60 const unsigned int class_max = __arraycount(classes);
218 class = classes[ms->ms_class]; in main()
/netbsd/src/external/bsd/wpa/dist/src/p2p/
Dp2p_utils.c384 int p2p_channel_select(struct p2p_channels *chans, const int *classes, in p2p_channel_select() argument
389 for (j = 0; classes == NULL || classes[j]; j++) { in p2p_channel_select()
396 if (classes == NULL || c->reg_class == classes[j]) { in p2p_channel_select()
407 if (classes == NULL) in p2p_channel_select()
/netbsd/src/external/bsd/openldap/dist/libraries/liblunicode/ure/
DREADME69 Character classes:
76 POSIX character classes recognized:
92 o Character property classes are \p or \P followed by a comma separated
131 o Character classes can contain literals, constants, and character
132 property classes. Example:
/netbsd/src/usr.bin/tr/
Dstr.c218 static const CLASS classes[] = { variable
250 cp = bsearch(&key, classes, __arraycount(classes), sizeof(classes[0]), in genclass()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/kadm5/
Dpassword_quality.c92 const char *classes[] = { in char_class_passwd_quality() local
116 for (i = 0; i < sizeof(classes)/sizeof(classes[0]); i++) { in char_class_passwd_quality()
117 if (strcspn(pw, classes[i]) < len) in char_class_passwd_quality()
/netbsd/src/games/adventure/
Dio.c206 classes = 1; in rdata()
325 ctext[classes].seekadr = seekhere; in rdesc()
326 ctext[classes].txtlen = maystart - seekstart; in rdesc()
327 cval[classes++] = oldloc; in rdesc()
Ddone.c118 for (i = 1; i <= classes; i++) in done()
121 if (i == classes - 1) { in done()
/netbsd/src/external/bsd/wpa/dist/wpa_supplicant/
Dop_classes.c630 int *classes; in wpas_supp_op_classes() local
634 classes = os_zalloc((max_num + 1) * sizeof(int)); in wpas_supp_op_classes()
635 if (!classes) in wpas_supp_op_classes()
640 classes[pos++] = global_op_class[op].op_class; in wpas_supp_op_classes()
643 return classes; in wpas_supp_op_classes()

12345678910>>...21