/freebsd/crypto/heimdal/kadmin/ |
H A D | random_password.c | 118 } *classes; in generate_password() local 126 classes = malloc(num_classes * sizeof(*classes)); in generate_password() 127 if(classes == NULL) in generate_password() 132 classes[i].str = va_arg(ap, const char*); in generate_password() 133 classes[i].len = strlen(classes[i].str); in generate_password() 134 classes[i].freq = va_arg(ap, int); 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() 149 (*pw)[i] = classes[j].str[RND(rbuf, sizeof(rbuf), &rleft) in generate_password() [all …]
|
/freebsd/contrib/pam_modules/pam_passwdqc/ |
H A D | passwdqc_check.c | 65 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 D | README | 29 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/lib/libc/net/ |
H A D | hesiod.c | 63 int classes[2]; /* The class search order. */ member 226 retvec = get_txt_records(ctx->classes[0], bindname); in hesiod_resolve() 227 if (retvec == NULL && errno == ENOENT && ctx->classes[1]) in hesiod_resolve() 228 retvec = get_txt_records(ctx->classes[1], bindname); in hesiod_resolve() 262 ctx->classes[0] = C_IN; in read_config_file() 263 ctx->classes[1] = C_HS; in read_config_file() 318 ctx->classes[n++] = C_IN; in read_config_file() 321 ctx->classes[n++] = in read_config_file() 326 ctx->classes[n++] = 0; in read_config_file() 332 if (!ctx->rhs || ctx->classes[0] == 0 || in read_config_file() [all …]
|
/freebsd/contrib/llvm-project/lldb/docs/design/ |
H A D | overview.rst |
|
H A D | sbapi.rst |
|
/freebsd/contrib/kyua/model/ |
H A D | README | 1 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/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyRegisterInfo.td | 10 /// 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. 60 // Register classes
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | Symbols.def | 9 // 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 D | Regions.def | 9 // 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,
|
/freebsd/sys/dev/hwpmc/ |
H A D | hwpmc_arm64.c | 523 int classes, idcode, impcode; in pmc_arm64_initialize() 554 classes = 1; in pmc_arm64_initialize() 557 /* Query presence of optional classes and set max class. */ in pmc_arm64_initialize() 559 classes = MAX(classes, PMC_MDEP_CLASS_INDEX_CMN600); in pmc_arm64_initialize() 561 classes = MAX(classes, PMC_MDEP_CLASS_INDEX_DMC620_C); in pmc_arm64_initialize() 564 pmc_mdep = pmc_mdep_alloc(classes); in pmc_arm64_initialize() 509 int classes, idcode, impcode; pmc_arm64_initialize() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
H A D | RegisterBank.td | 12 class RegisterBank<string name, list<RegisterClass> classes> { 14 list<RegisterClass> RegisterClasses = classes;
|
/freebsd/sbin/pfctl/ |
H A D | pfctl_osfp.c | 67 static struct name_list classes = LIST_HEAD_INITIALIZER(&classes); variable 102 pfctl_flush_my_fingerprints(&classes); in pfctl_file_fingerprints() 302 pfctl_flush_my_fingerprints(&classes); in pfctl_load_fingerprints() 322 if (LIST_FIRST(&classes) != NULL) { in pfctl_show_fingerprints() 329 sort_name_list(opts, &classes); in pfctl_show_fingerprints() 330 print_name_list(opts, &classes, ""); in pfctl_show_fingerprints() 350 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint() 368 if ((class_nm = lookup_name_list(&classes, wr_name)) == NULL) { in pfctl_get_fingerprint() 484 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint() 609 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in add_fingerprint() [all …]
|
/freebsd/contrib/wpa/src/p2p/ |
H A D | p2p_utils.c | 384 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/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
H A D | Syntax.td | 21 // 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/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_data.c | 154 struct bhnd_nvram_io *io, bhnd_nvram_data_class *classes[], in bhnd_nvram_data_probe_classes() argument 165 if (classes == NULL) { in bhnd_nvram_data_probe_classes() 166 classes = SET_BEGIN(bhnd_nvram_data_class_set); in bhnd_nvram_data_probe_classes() 174 next_cls = classes[i]; in bhnd_nvram_data_probe_classes()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetInstrPredicate.td | 64 // New MCInstPredicate classes must be added to this file. For each new class 214 // classes. This check is always expanded to "false" when generating code for 390 list<InstructionEquivalenceClass> classes> { 392 list<InstructionEquivalenceClass> Classes = classes; 396 // Convenience classes and definitions used by processor scheduling models to 410 class IsZeroIdiomFunction<list<DepBreakingClass> classes> 411 : STIPredicate<IsZeroIdiomDecl, classes>; 413 class IsDepBreakingFunction<list<DepBreakingClass> classes> 414 : STIPredicate<IsDepBreakingDecl, classes>; 416 class IsOptimizableRegisterMove<list<InstructionEquivalenceClass> classes> [all...] |
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | tuple.cppm |
|
/freebsd/crypto/heimdal/lib/kadm5/ |
H A D | password_quality.c | 90 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/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | AppleArm64ExceptionClass.def | 9 // Defines ESR exception classes for Apple arm64* targets. 10 // These largely map 1:1 to the exception classes defined in ARM's architecture
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | op_classes.c | 630 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()
|
/freebsd/sys/kern/ |
H A D | kern_khelp.c | 148 khelp_init_osd(uint32_t classes, struct osd *hosd) in khelp_init_osd() argument 161 if (h->h_classes & classes && h->h_flags & HELPER_NEEDS_OSD) { in khelp_init_osd() 175 if (h->h_classes & classes) in khelp_init_osd()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonSchedule.td | 47 // Itinerary classes. 54 // Auto-generated itinerary classes
|
/freebsd/stand/ficl/softwords/ |
H A D | classes.fr | 2 \ ** ficl/softwords/classes.fr 58 \ Derived classes must specify the size of the thing 61 \ All derived classes must define the @size method:
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | CXXRecordDeclDefinitionBits.def | 73 /// * has no virtual functions (10.3) and no virtual base classes (10.1), 76 /// * has no non-standard-layout base classes, 79 /// classes with non-static data members, and 80 /// * has no base classes of the same type as the first non-static data 249 /// base classes or fields have a no-return destructor
|