| /freebsd-12.1/lib/libc/stdio/ |
| H A D | printf-pos.c | 98 types->table = types->stattable; in inittypes() 113 if (types->table != types->stattable) in freetypes() 125 if (types->nextarg >= types->tablesize) { in _ensurespace() 129 if (types->nextarg > types->tablemax) in _ensurespace() 130 types->tablemax = types->nextarg; in _ensurespace() 144 types->table[types->nextarg++] = type; in addtype() 161 types->table[types->nextarg++] = T_LLONG; in addsarg() 163 types->table[types->nextarg++] = T_LONG; in addsarg() 165 types->table[types->nextarg++] = T_INT; in addsarg() 178 types->table[types->nextarg++] = T_SIZET; in adduarg() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ |
| H A D | Types.cpp | 43 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType() 47 types::ID types::getPrecompiledType(ID Id) { in getPrecompiledType() 195 types::ID types::lookupTypeForExtension(llvm::StringRef Ext) { in lookupTypeForExtension() 256 types::ID types::lookupTypeForTypeSpecifier(const char *Name) { in lookupTypeForTypeSpecifier() 258 types::ID Id = (types::ID) (i + 1); in lookupTypeForTypeSpecifier() 299 case types::TY_C: in lookupCXXTypeForCType() 301 case types::TY_PP_C: in lookupCXXTypeForCType() 316 case types::TY_C: in lookupHeaderTypeForSourceType() 318 case types::TY_CXX: in lookupHeaderTypeForSourceType() 321 case types::TY_ObjC: in lookupHeaderTypeForSourceType() [all …]
|
| H A D | Action.cpp | 164 InputAction::InputAction(const Arg &_Input, types::ID _Type) in InputAction() 307 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() 324 types::ID OutputType) in PrecompileJobAction() 332 Action *Input, types::ID OutputType, const char *ModuleName) in HeaderModulePrecompileJobAction() 338 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() 343 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() 363 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) in LinkJobAction() 368 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) in LipoJobAction() 379 types::ID Type) in VerifyJobAction() 388 types::ID Type) in VerifyDebugInfoJobAction() [all …]
|
| H A D | Driver.cpp | 1254 if (types::getPreprocessedType(it->first) == types::TY_INVALID) { in generateCompilationDiagnostics() 2009 types::ID InputType = types::TY_Nothing; in BuildInputs() 2040 types::ID Ty = types::TY_INVALID; in BuildInputs() 2058 Ty = types::TY_C; in BuildInputs() 2314 auto Ty = IA->getType() == types::TY_HIP ? types::TY_HIP_DEVICE in addDeviceDepences() 3369 types::ID OutputTy; in ConstructPhaseAction() 3433 types::ID Output = in ConstructPhaseAction() 3434 Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC; in ConstructPhaseAction() 3438 types::ID Output = in ConstructPhaseAction() 3439 Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC; in ConstructPhaseAction() [all …]
|
| H A D | InputInfo.h | 43 types::ID Type; 46 static types::ID GetActionType(const Action *A) { in GetActionType() 47 return A != nullptr ? A->getType() : types::TY_Nothing; in GetActionType() 55 InputInfo(types::ID _Type, const char *_Filename, const char *_BaseInput) in InputInfo() 64 InputInfo(types::ID _Type, const llvm::opt::Arg *_InputArg, in InputInfo() 78 types::ID getType() const { return Type; } in getType()
|
| /freebsd-12.1/lib/libcasper/services/cap_dns/tests/ |
| H A D | dns_test.c | 330 const char *types[2]; in main() local 360 types[0] = "NAME2ADDR"; in main() 361 types[1] = "ADDR2NAME"; in main() 383 types[0] = "NAME2ADDR"; in main() 385 types[1] = "ADDR2NAME"; in main() 388 types[0] = "ADDR2NAME"; in main() 410 types[0] = "ADDR2NAME"; in main() 412 types[1] = "NAME2ADDR"; in main() 415 types[0] = "NAME2ADDR"; in main() 435 types[0] = "NAME2ADDR"; in main() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | InterpolatingCompilationDatabase.cpp | 66 namespace types = clang::driver::types; 98 *Certain = Lang != types::TY_CHeader && Lang != types::TY_INVALID; in guessType() 104 static types::ID foldType(types::ID Lang) { in foldType() 106 case types::TY_C: in foldType() 107 case types::TY_CHeader: in foldType() 108 return types::TY_C; in foldType() 109 case types::TY_ObjC: in foldType() 112 case types::TY_CXX: in foldType() 115 case types::TY_ObjCXX: in foldType() 265 case types::TY_C: in toCLFlag() [all …]
|
| /freebsd-12.1/usr.bin/mklocale/ |
| H A D | yacc.y | 452 list->types[i - list->min] |= r->types[i - r->min]; in add_map() 454 free(r->types); in add_map() 455 r->types = list->types; in add_map() 470 list->types[i - list->min] = r->types[i - r->min]; in add_map() 479 r->types = list->types; in add_map() 492 r->types = xrelalloc(r->types, list->max - r->min + 1); in add_map() 514 r->types[i - r->min] |= lr->types[i - lr->min]; in add_map() 519 r->types = xrelalloc(r->types, lr->max - r->min + 1); in add_map() 522 r->types[i - r->min] |= lr->types[i - lr->min]; in add_map() 525 r->types[i - r->min] = lr->types[i - lr->min]; in add_map() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/ |
| H A D | Action.h | 101 types::ID Type; 128 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() 141 types::ID getType() const { return Type; } in getType() 438 AnalyzeJobAction(Action *Input, types::ID OutputType); 449 MigrateJobAction(Action *Input, types::ID OutputType); 460 CompileJobAction(Action *Input, types::ID OutputType); 471 BackendJobAction(Action *Input, types::ID OutputType); 493 LinkJobAction(ActionList &Inputs, types::ID Type); 504 LipoJobAction(ActionList &Inputs, types::ID Type); 515 DsymutilJobAction(ActionList &Inputs, types::ID Type); [all …]
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A D | rdcoff.c | 112 pps = &types->slots; in coff_get_slot() 190 types, in parse_coff_type() 246 return types->basic[ntype]; in parse_coff_base_type() 327 slot = coff_get_slot (types, coff_symno); in parse_coff_base_type() 340 slot = coff_get_slot (types, coff_symno); in parse_coff_base_type() 366 types->basic[ntype] = ret; in parse_coff_base_type() 375 struct coff_types *types, int ntype, in parse_coff_struct_type() argument 623 slot = coff_get_slot (types, coff_symno); in parse_coff_symbol() 658 struct coff_types types; in parse_coff() local 674 types.slots = NULL; in parse_coff() [all …]
|
| H A D | ieee.c | 790 xrealloc (info->types.types, in ieee_alloc_type() 793 memset (info->types.types + info->types.alloc, 0, in ieee_alloc_type() 794 (nalloc - info->types.alloc) * sizeof *info->types.types); in ieee_alloc_type() 871 info.types.types = NULL; in parse_ieee() 983 free (info->types.types); in parse_ieee_bb() 984 info->types.types = NULL; in parse_ieee_bb() 994 memcpy (info->types.types, info->global_types->types, in parse_ieee_bb() 995 info->types.alloc * sizeof (*info->types.types)); in parse_ieee_bb() 1259 memcpy (info->global_types->types, info->types.types, in parse_ieee_be() 1260 info->types.alloc * sizeof (*info->types.types)); in parse_ieee_be() [all …]
|
| /freebsd-12.1/cddl/contrib/opensolaris/lib/pyzfs/common/ |
| H A D | userspace.py | 54 if isgroup and "posixgroup" not in options.types and \ 55 "smbgroup" not in options.types: 57 if not isgroup and "posixuser" not in options.types and \ 58 "smbuser" not in options.types: 77 if typename.lower().replace(" ", "") not in options.types: 193 options.types = options.types.split(",") 194 for t in options.types: 195 if t not in types: 201 if "all" in options.types: 202 options.types = types[1:] [all …]
|
| /freebsd-12.1/contrib/binutils/gas/config/ |
| H A D | tc-i386.c | 1751 && !((i.types[0] & Imm) && (i.types[1] & Imm))) 1903 || (((i.types[0] & Reg8) != 0 || (i.types[1] & Reg8) != 0) 2282 i.types[xchg2] = i.types[xchg1]; in swap_2_operands() 3350 i.types[0] = i.types[1]; in process_operands() 3351 i.types[1] = i.types[2]; in process_operands() 3368 i.types[first_reg_op + 1] = i.types[first_reg_op]; in process_operands() 3519 if (!((i.types[0] | i.types[1]) & Control)) in build_modrm_byte() 3630 i.types[op] = ((i.types[op] & Disp8) in build_modrm_byte() 4486 if (types) in lex_got() 4677 i.types[this_operand] &= types; in i386_immediate() [all …]
|
| /freebsd-12.1/crypto/openssl/crypto/asn1/ |
| H A D | a_mbstr.c | 272 unsigned long types = *((unsigned long *)arg); in type_str() local 277 types &= ~B_ASN1_NUMERICSTRING; in type_str() 279 types &= ~B_ASN1_PRINTABLESTRING; in type_str() 280 if ((types & B_ASN1_IA5STRING) && !ossl_isascii(native)) in type_str() 281 types &= ~B_ASN1_IA5STRING; in type_str() 282 if ((types & B_ASN1_T61STRING) && (value > 0xff)) in type_str() 283 types &= ~B_ASN1_T61STRING; in type_str() 284 if ((types & B_ASN1_BMPSTRING) && (value > 0xffff)) in type_str() 285 types &= ~B_ASN1_BMPSTRING; in type_str() 286 if (!types) in type_str() [all …]
|
| /freebsd-12.1/crypto/heimdal/doc/ |
| H A D | layman.asc | 62 one to define a variety data types, from simple types such 200 types, structured types, implicitly and explicitly tagged 201 types, and other types. Section 5 describes specific types 208 are the "atomic" types. ASN.1 defines several; the types 282 Implicitly tagged types are derived from other types by 287 Explicitly tagged types are derived from other types by 419 types, types derived simple string types and structured 453 types, types derived simple string types and structured 495 types derived from simple string types, the 1184 more types. [all …]
|
| /freebsd-12.1/crypto/openssh/regress/ |
| H A D | cert-hostkey.sh | 10 types="" 12 if [ -z "$types" ]; then 13 types="$i" 19 types="[email protected],$i,$types" 20 types="[email protected],$types";; 22 types="$types,rsa-sha2-512,rsa-sha2-256,$i";; 24 *cert*) types="$i,$types";; 25 *) types="$types,$i";; 29 echo "HostKeyAlgorithms ${types}"
|
| H A D | ssh-com-keygen.sh | 41 types="dss" 44 types="$types rsa" 47 for t in $types; do
|
| /freebsd-12.1/libexec/talkd/ |
| H A D | print.c | 51 static const char *types[] = variable 53 #define NTYPES (sizeof (types) / sizeof (types[0])) 69 tp = types[mp->type]; in print_request() 84 tp = types[rp->type]; in print_response()
|
| /freebsd-12.1/contrib/apr/docs/ |
| H A D | incomplete_types | 2 types?" This document will try to explain that. 4 Incomplete types are used in APR because they can enforce portability, and 6 types on all platforms. Imagine a scenario where APR wasn't using incomplete 7 types. The ap_file_t type would have to be defined as: 42 using incomplete types. However, using this structure leads developers to 68 developers to easily use native types on all platforms with the same code. 72 Having said all of that, sometimes incomplete types just don't make sense. 73 For example, the first implementation of time functions used incomplete types, 79 APR is trying hard to provide a balance of incomplete and complete types, 83 and design parts of APR that do not use incomplete types.
|
| /freebsd-12.1/crypto/heimdal/lib/krb5/ |
| H A D | krbhst-test.c | 64 int types[] = {KRB5_KRBHST_KDC, KRB5_KRBHST_ADMIN, KRB5_KRBHST_CHANGEPW, in main() local 90 for (j = 0; j < sizeof(types)/sizeof(*types); ++j) { in main() 93 krb5_krbhst_init(context, argv[i], types[j], &handle); in main()
|
| /freebsd-12.1/contrib/xz/src/xz/ |
| H A D | args.c | 393 } types[] = { in parse_real() local 404 while (strcmp(types[i].str, optarg) != 0) in parse_real() 405 if (++i == ARRAY_SIZE(types)) in parse_real() 410 opt_format = types[i].format; in parse_real() 419 } types[] = { in parse_real() local 427 while (strcmp(types[i].str, optarg) != 0) { in parse_real() 428 if (++i == ARRAY_SIZE(types)) in parse_real() 436 if (!lzma_check_is_supported(types[i].check)) in parse_real() 440 coder_set_check(types[i].check); in parse_real()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 158 llvm::DenseSet<SymbolFile *> &searched_symbol_files, TypeMap &types) { in FindTypes() argument 160 types.Clear(); in FindTypes() 161 return types.GetSize(); in FindTypes() 166 bool append, TypeMap &types) { in FindTypes() argument 168 types.Clear(); in FindTypes() 169 return types.GetSize(); in FindTypes()
|
| /freebsd-12.1/contrib/less/ |
| H A D | mkutable | 34 my %types; 38 $types{$arg} = 1; 40 my %out = ( 'types' => \%types ); 70 my $type_ok = ($type and ${${$out}{types}}{$type});
|
| /freebsd-12.1/lib/libc/locale/ |
| H A D | rune.c | 131 uint32_t *types; in _Read_RuneMagi() local 135 types = variable; in _Read_RuneMagi() 136 variable = types + len; in _Read_RuneMagi() 195 uint32_t *types; in _Read_RuneMagi() local 202 types = variable; in _Read_RuneMagi() 203 variable = types + len; in _Read_RuneMagi() 207 rr[x].__types[len] = types[len]; in _Read_RuneMagi()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedA57WriteRes.td | 24 // Define Generic 1 micro-op types 55 // Define Generic 2 micro-op types 178 // Define Generic 3 micro-op types 249 // Define Generic 4 micro-op types 316 // Define Generic 5 micro-op types 360 // Define Generic 6 micro-op types 407 // Define Generic 7 micro-op types 444 // Define Generic 8 micro-op types 470 // Define Generic 9 micro-op types 497 // Define Generic 10 micro-op types [all …]
|