Home
last modified time | relevance | path

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

12345678910

/freebsd-13.1/crypto/heimdal/kadmin/
H A Drandom_password.c118 } *classes; in generate_password() local
126 classes = malloc(num_classes * sizeof(*classes)); in generate_password()
127 if(classes == NULL) in generate_password()
133 classes[i].len = strlen(classes[i].str); in generate_password()
135 len += classes[i].freq; in generate_password()
140 free(classes); in generate_password()
148 if(x < t + classes[j].freq) { in generate_password()
150 % classes[j].len]; in generate_password()
151 classes[j].freq--; in generate_password()
154 t += classes[j].freq; in generate_password()
[all …]
/freebsd-13.1/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c65 int length, classes, words, chars; in is_simple() local
69 length = classes = words = chars = 0; in is_simple()
100 classes = 0; in is_simple()
101 if (digits) classes++; in is_simple()
102 if (lowers) classes++; in is_simple()
103 if (uppers) classes++; in is_simple()
104 if (others) classes++; in is_simple()
105 if (unknowns && (!classes || (digits && classes == 1))) classes++; in is_simple()
107 for (; classes > 0; classes--) in is_simple()
108 switch (classes) { in is_simple()
H A DREADME29 class only. (The character classes are: digits, lower-case letters,
35 classes, which don't meet the requirements for a passphrase.
41 and four character classes, respectively.
43 When calculating the number of character classes, upper-case letters
48 contain enough different characters for the character classes and
/freebsd-13.1/lib/libc/net/
H A Dhesiod.c70 int classes[2]; /* The class search order. */ member
244 retvec = get_txt_records(ctx->classes[0], bindname);
245 if (retvec == NULL && errno == ENOENT && ctx->classes[1])
246 retvec = get_txt_records(ctx->classes[1], bindname);
284 ctx->classes[0] = C_IN;
285 ctx->classes[1] = C_HS;
340 ctx->classes[n++] = C_IN;
343 ctx->classes[n++] =
348 ctx->classes[n++] = 0;
354 if (!ctx->rhs || ctx->classes[0] == 0 ||
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/docs/design/
H A Doverview.rst19 API and allow people to link to our classes, we have certain rules that we must
22 - Classes can't inherit from any other classes.
32 make changes to the API as any additional methods added to these classes will
39 A collection of classes that implement our breakpoint classes. Breakpoints are
76 wide variety of classes are implemented:
81 - Communication classes that use Connection objects
89 A collection of classes that implement the data formatters subsystem.
145 The interpreter classes are the classes responsible for being the base classes
152 Symbol classes involve everything needed in order to parse object files and
153 debug symbols. All the needed classes for compilation units (code and debug
[all …]
H A Dsbapi.rst10 The classes in the SB API's are all called SB<SomeName>, where SomeName is in
14 All the SB API classes are non-virtual, single inheritance classes. They should
23 unique_ptr to the object in the lldb_private API. All the lldb_private classes
24 that get used this way are declared as opaque classes in lldb_forward.h, which
27 opaque declaration in the SB classes .h file.
40 all the SB objects. Since the ivars of the classes are all pointers of one sort
44 classes to report whether the object is empty or not.
48 and documentation to classes, but to do that you have to use a Swig interface
/freebsd-13.1/contrib/kyua/model/
H A DREADME1 This directory contains the classes that form the data model of Kyua.
3 The classes in this directory are intended to be pure data types without
8 All the classes in the data model have to have an on-disk representation
10 model. Some of these classes may also have special behavior at run-time,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegisterInfo.td10 /// This file describes the WebAssembly register classes and some nominal
35 // The register allocation framework requires register classes have at least
37 // classes since we otherwise don't need a physical register in those classes.
59 // Register classes
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbols.def9 // The list of symbols (SymExpr sub-classes) used in the Static Analyzer.
13 // SYMBOL(Id, Parent) - for specific SymExpr sub-classes, reserving the
16 // ABSTRACT_SYMBOL(Id, Parent) - for abstract symbol classes,
H A DRegions.def9 // The list of regions (MemRegion sub-classes) used in the Static Analyzer.
13 // REGION(Id, Parent) - for specific MemRegion sub-classes, reserving
16 // ABSTRACT_REGION(Id, Parent) - for abstract region classes,
H A DSVals.def16 // neither in loc:: nor in nonloc:: namespace; these classes occupy
19 // ABSTRACT_SVAL(Id, Parent) - for abstract SVal classes which are
22 // ABSTRACT_SVAL_WITH_KIND(Id, Parent) - for SVal classes which are also
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DRegisterBank.td12 class RegisterBank<string name, list<RegisterClass> classes> {
14 list<RegisterClass> RegisterClasses = classes;
/freebsd-13.1/contrib/googletest/googlemock/scripts/generator/
H A DREADME.cppclean14 * Find and print C++ language constructs: classes, methods, functions, etc.
15 * Find classes with virtual methods, no virtual destructor, and no bases
22 - Header is unnecessary if classes were forward declared instead
43 To print warnings for classes with virtual methods, no virtual destructor and
44 no base classes:
H A DREADME18 If no ClassNames are specified, all classes in the file are emitted.
30 classes, the template information is lost. You will need to add the template
/freebsd-13.1/sbin/pfctl/
H A Dpfctl_osfp.c70 static struct name_list classes = LIST_HEAD_INITIALIZER(&classes); variable
105 pfctl_flush_my_fingerprints(&classes); in pfctl_file_fingerprints()
305 pfctl_flush_my_fingerprints(&classes); in pfctl_load_fingerprints()
325 if (LIST_FIRST(&classes) != NULL) { in pfctl_show_fingerprints()
332 sort_name_list(opts, &classes); in pfctl_show_fingerprints()
333 print_name_list(opts, &classes, ""); in pfctl_show_fingerprints()
353 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint()
371 if ((class_nm = lookup_name_list(&classes, wr_name)) == NULL) { in pfctl_get_fingerprint()
487 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint()
612 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in add_fingerprint()
[all …]
/freebsd-13.1/contrib/wpa/src/p2p/
H A 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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DSyntax.td21 // This file defines TableGen classes modelling these archetypes.
22 // The concrete nodes are defined in terms of these classes in Nodes.td.
24 // The C++ classes for the archetypes themselves are written by hand, and the
25 // concrete node classes will be generated. Migration to TableGen is not
/freebsd-13.1/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data.c156 struct bhnd_nvram_io *io, bhnd_nvram_data_class *classes[], in bhnd_nvram_data_probe_classes() argument
167 if (classes == NULL) { in bhnd_nvram_data_probe_classes()
168 classes = SET_BEGIN(bhnd_nvram_data_class_set); in bhnd_nvram_data_probe_classes()
176 next_cls = classes[i]; in bhnd_nvram_data_probe_classes()
/freebsd-13.1/contrib/wpa/wpa_supplicant/
H A Dop_classes.c520 int *classes; in wpas_supp_op_classes() local
524 classes = os_zalloc((max_num + 1) * sizeof(int)); in wpas_supp_op_classes()
525 if (!classes) in wpas_supp_op_classes()
530 classes[pos++] = global_op_class[op].op_class; in wpas_supp_op_classes()
533 return classes; in wpas_supp_op_classes()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetInstrPredicate.td64 // New MCInstPredicate classes must be added to this file. For each new class
180 // classes. This check is always expanded to "false" when generating code for
350 list<InstructionEquivalenceClass> classes> {
352 list<InstructionEquivalenceClass> Classes = classes;
356 // Convenience classes and definitions used by processor scheduling models to
370 class IsZeroIdiomFunction<list<DepBreakingClass> classes>
371 : STIPredicate<IsZeroIdiomDecl, classes>;
373 class IsDepBreakingFunction<list<DepBreakingClass> classes>
374 : STIPredicate<IsDepBreakingDecl, classes>;
376 class IsOptimizableRegisterMove<list<InstructionEquivalenceClass> classes>
[all …]
/freebsd-13.1/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c90 const char *classes[] = { in char_class_passwd_quality() local
114 for (i = 0; i < sizeof(classes)/sizeof(classes[0]); i++) { in char_class_passwd_quality()
115 if (strcspn(pw, classes[i]) < len) in char_class_passwd_quality()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSchedule.td47 // Itinerary classes.
54 // Auto-generated itinerary classes
/freebsd-13.1/sys/kern/
H A Dkern_khelp.c151 khelp_init_osd(uint32_t classes, struct osd *hosd) in khelp_init_osd() argument
164 if (h->h_classes & classes && h->h_flags & HELPER_NEEDS_OSD) { in khelp_init_osd()
178 if (h->h_classes & classes) in khelp_init_osd()
/freebsd-13.1/stand/ficl/softwords/
H A Dclasses.fr2 \ ** ficl/softwords/classes.fr
59 \ Derived classes must specify the size of the thing
62 \ All derived classes must define the @size method:
/freebsd-13.1/sbin/geom/
H A DMakefile26 .include "${SRCTOP}/lib/geom/Makefile.classes"

12345678910