| /src/lib/libc/stdio/ |
| H A D | printf-pos.c | 88 inittypes(struct typetable *types) in inittypes() argument 92 types->table = types->stattable; in inittypes() 93 types->tablesize = STATIC_ARG_TBL_SIZE; in inittypes() 94 types->tablemax = 0; in inittypes() 95 types->nextarg = 1; in inittypes() 97 types->table[n] = T_UNUSED; in inittypes() 104 freetypes(struct typetable *types) in freetypes() argument 107 if (types->table != types->stattable) in freetypes() 108 free (types->table); in freetypes() 116 _ensurespace(struct typetable *types) in _ensurespace() argument [all …]
|
| /src/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Types.cpp | 21 using namespace clang::driver::types; 52 const char *types::getTypeName(ID Id) { in getTypeName() 56 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType() 73 types::ID types::getPrecompiledType(ID Id) { in getPrecompiledType() 83 const char *types::getTypeTempSuffix(ID Id, bool CLStyle) { in getTypeTempSuffix() 100 bool types::onlyPrecompileType(ID Id) { in onlyPrecompileType() 105 bool types::canTypeBeUserSpecified(ID Id) { in canTypeBeUserSpecified() 106 static const clang::driver::types::ID kStaticLangageTypes[] = { in canTypeBeUserSpecified() 117 bool types::appendSuffixForType(ID Id) { in appendSuffixForType() 122 bool types::canLipoType(ID Id) { in canLipoType() [all …]
|
| H A D | Action.cpp | 176 InputAction::InputAction(const Arg &_Input, types::ID _Type, StringRef _Id) in InputAction() 194 OffloadAction::OffloadAction(const DeviceDependences &DDeps, types::ID Ty) in OffloadAction() 338 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() 341 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) in JobAction() 346 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() 351 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() 355 types::ID OutputType) in PrecompileJobAction() 362 ExtractAPIJobAction::ExtractAPIJobAction(Action *Inputs, types::ID OutputType) in ExtractAPIJobAction() 367 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() 372 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() [all …]
|
| H A D | Driver.cpp | 782 llvm::any_of(Inputs, [](std::pair<types::ID, const llvm::opt::Arg *> &I) { in CreateOffloadingDeviceToolChains() 783 return types::isCuda(I.first); in CreateOffloadingDeviceToolChains() 787 [](std::pair<types::ID, const llvm::opt::Arg *> &I) { in CreateOffloadingDeviceToolChains() 788 return types::isHIP(I.first); in CreateOffloadingDeviceToolChains() 1751 if (types::getPreprocessedType(it->first) == types::TY_INVALID) { in generateCompilationDiagnostics() 2435 << types::getTypeName(A->getType()) << offload_os.str() << "\n"; 2501 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) in BuildUniversalActions() 2503 << types::getTypeName(Act->getType()); in BuildUniversalActions() 2511 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) in BuildUniversalActions() 2527 if (Act->getType() == types::TY_Image) { in BuildUniversalActions() [all …]
|
| /src/lib/libcasper/services/cap_dns/tests/ |
| H A D | dns_test.c | 372 const char *types[2]; in ATF_TC_BODY() local 377 types[0] = "NAME2ADDR"; in ATF_TC_BODY() 378 types[1] = "ADDR2NAME"; in ATF_TC_BODY() 379 ATF_REQUIRE(cap_dns_type_limit(capdns, types, 2) == 0); in ATF_TC_BODY() 404 const char *types[2]; in ATF_TC_BODY() local 409 types[0] = "NAME2ADDR"; in ATF_TC_BODY() 410 ATF_REQUIRE(cap_dns_type_limit(capdns, types, 1) == 0); in ATF_TC_BODY() 411 types[1] = "ADDR2NAME"; in ATF_TC_BODY() 413 cap_dns_type_limit(capdns, types, 2) == -1); in ATF_TC_BODY() 414 types[0] = "ADDR2NAME"; in ATF_TC_BODY() [all …]
|
| /src/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | InterpolatingCompilationDatabase.cpp | 66 namespace types = clang::driver::types; 93 types::ID guessType(StringRef Filename, bool *Certain = nullptr) { in guessType() 96 types::lookupTypeForExtension(path::extension(Filename).substr(1)); in guessType() 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() 110 case types::TY_ObjCHeader: in foldType() [all …]
|
| /src/crypto/openssl/crypto/asn1/ |
| H A D | a_mbstr.c | 288 unsigned long types = usable_types; in type_str() local 296 types &= B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING in type_str() 304 if (types != usable_types) in type_str() 305 types |= B_ASN1_UTF8STRING; in type_str() 310 if ((types & B_ASN1_NUMERICSTRING) && !(ossl_isdigit(native) || native == ' ')) in type_str() 311 types &= ~B_ASN1_NUMERICSTRING; in type_str() 312 if ((types & B_ASN1_PRINTABLESTRING) && !ossl_isasn1print(native)) in type_str() 313 types &= ~B_ASN1_PRINTABLESTRING; in type_str() 314 if ((types & B_ASN1_IA5STRING) && !ossl_isascii(native)) in type_str() 315 types &= ~B_ASN1_IA5STRING; in type_str() [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Action.h | 105 types::ID Type; 134 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {} in Action() 135 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() 139 Action(ActionClass Kind, const ActionList &Inputs, types::ID Type) in Action() 148 types::ID getType() const { return Type; } in getType() 235 InputAction(const llvm::opt::Arg &Input, types::ID Type, 361 OffloadAction(const DeviceDependences &DDeps, types::ID Ty); 403 JobAction(ActionClass Kind, Action *Input, types::ID Type); 404 JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type); 417 PreprocessJobAction(Action *Input, types::ID OutputType); [all …]
|
| H A D | InputInfo.h | 42 types::ID Type; 45 static types::ID GetActionType(const Action *A) { in GetActionType() 46 return A != nullptr ? A->getType() : types::TY_Nothing; in GetActionType() 54 InputInfo(types::ID _Type, const char *_Filename, const char *_BaseInput) in InputInfo() 63 InputInfo(types::ID _Type, const llvm::opt::Arg *_InputArg, in InputInfo() 77 types::ID getType() const { return Type; } in getType()
|
| /src/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: 154 types = ("all", "posixuser", "smbuser", "posixgroup", "smbgroup") 193 options.types = options.types.split(",") 194 for t in options.types: 195 if t not in types: 201 if "all" in options.types: [all …]
|
| /src/contrib/kyua/engine/ |
| H A D | atf_result.hpp | 57 enum types { enum in engine::atf_result 71 types _type; 84 atf_result(const types); 85 atf_result(const types, const std::string&); 86 atf_result(const types, const utils::optional< int >&, const std::string&); 91 types type(void) const;
|
| /src/crypto/krb5/src/plugins/preauth/otp/ |
| H A D | otp_state.c | 75 token_type *types; member 283 token_types_free(token_type *types) in token_types_free() argument 287 if (types == NULL) in token_types_free() 290 for (i = 0; types[i].server != NULL; i++) in token_types_free() 291 token_type_free(&types[i]); in token_types_free() 293 free(types); in token_types_free() 301 token_type *types = NULL; in token_types_decode() local 318 types = k5calloc(i + 2, sizeof(token_type), &retval); in token_types_decode() 319 if (types == NULL) in token_types_decode() 325 retval = token_type_default(&types[pos++]); in token_types_decode() [all …]
|
| /src/contrib/kyua/cli/ |
| H A D | common.cpp | 159 cli::result_types types; in parse_types() local 166 types.push_back((*match).second); in parse_types() 168 return types; in parse_types() 276 result_types types = parse_types( in get_result_types() local 278 if (types.empty()) { in get_result_types() 279 types.push_back(model::test_result_passed); in get_result_types() 280 types.push_back(model::test_result_skipped); in get_result_types() 281 types.push_back(model::test_result_expected_failure); in get_result_types() 282 types.push_back(model::test_result_broken); in get_result_types() 283 types.push_back(model::test_result_failed); in get_result_types() [all …]
|
| /src/crypto/krb5/src/lib/rpc/ |
| H A D | deps | 5 $(BUILDTOP)/include/gssrpc/types.h $(top_srcdir)/include/gssrpc/auth.h \ 9 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/gssrpc/types.h \ 14 $(BUILDTOP)/include/gssapi/gssapi.h $(BUILDTOP)/include/gssrpc/types.h \ 22 $(BUILDTOP)/include/gssrpc/types.h $(top_srcdir)/include/gssrpc/auth.h \ 27 $(BUILDTOP)/include/gssrpc/types.h $(top_srcdir)/include/gssrpc/auth.h \ 36 $(BUILDTOP)/include/gssrpc/types.h $(BUILDTOP)/include/krb5/krb5.h \ 45 $(BUILDTOP)/include/gssapi/gssapi.h $(BUILDTOP)/include/gssrpc/types.h \ 55 $(BUILDTOP)/include/gssrpc/types.h $(top_srcdir)/include/gssrpc/auth.h \ 65 $(BUILDTOP)/include/gssrpc/types.h $(top_srcdir)/include/gssrpc/auth.h \ 72 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/gssrpc/types.h \ [all …]
|
| H A D | Makefile.in | 184 BUILD_HDRS = types.h 222 $(BUILDTOP)/include/gssrpc/types.h: types.stamp 223 types.stamp: $(top_srcdir)/include/gssrpc/types.hin $(BUILDTOP)/config.status 224 (cd $(BUILDTOP) && $(SHELL) config.status include/gssrpc/types.h) 225 touch types.stamp 228 $(RM) types.stamp $(BUILDTOP)/include/gssrpc/types.h 230 $(RM) types.stamp
|
| /src/libexec/talkd/ |
| H A D | print.c | 43 static const char *types[] = variable 45 #define NTYPES (sizeof (types) / sizeof (types[0])) 61 tp = types[mp->type]; in print_request() 76 tp = types[rp->type]; in print_response()
|
| /src/crypto/openssh/regress/ |
| H A D | cert-hostkey.sh | 11 types="" 13 if [ -z "$types" ]; then 14 types="$i" 20 types="rsa-sha2-256-cert-v01@openssh.com,$i,$types" 21 types="rsa-sha2-512-cert-v01@openssh.com,$types";; 24 types="$types,rsa-sha2-512,rsa-sha2-256,$i";; 26 *cert*) types="$i,$types";; 27 *) types="$types,$i";; 31 echo "HostKeyAlgorithms ${types}"
|
| H A D | ssh-com-keygen.sh | 41 types="dss" 44 types="$types rsa" 47 for t in $types; do
|
| /src/crypto/heimdal/doc/ |
| H A D | layman.asc | 62 one to define a variety data types, from simple types such 63 as integers and bit strings to structured types such as sets 64 and sequences, as well as complex types defined in terms of 77 ASN.1 types and their BER and DER encodings. Sections 2-4 79 Section 5 lists some ASN.1 types, giving their notation, 119 notation for describing abstract types and values. 121 In ASN.1, a type is a set of values. For some types, there 122 are a finite number of values, and for other types there are 125 simple types, which are "atomic" and have no components; 126 structured types, which have components; tagged types, which [all …]
|
| /src/contrib/llvm-project/llvm/tools/llvm-cxxfilt/ |
| H A D | Opts.td | 19 def types : FF<"types", "Attempt to demangle types as well as function names">; 20 def no_params : FF<"no-params", "Skip function parameters and return types">; 30 def : F<"t", "Alias for --types">, Alias<types>;
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TypeNodes.td | 8 /// A type node that is only used to represent dependent types in C++. For 9 /// example, DependentTemplateSpecializationType is used to represent types 11 /// that only works with non-dependent types can ignore these type nodes. 18 /// types and do not affect the semantics of the program. Code that only 19 /// works with canonical types can ignore these type nodes. 21 /// Note that this simple story about non-canonical types is not the whole 37 /// canonical types can ignore these nodes. 41 /// able to operate on leaf types faster than they can on non-leaf types. 44 /// is structurally composed of component types (`void` and `int`). 46 /// A struct type is a leaf type because its field types are not part of its [all …]
|
| /src/crypto/openssl/doc/man7/ |
| H A D | openssl-qlog.pod | 48 The following event types are currently supported: 70 By default, all supported event types are logged. The B<OSSL_QFILTER> 72 determines which event types are to be logged. Each event type can be turned on 74 terms listing event types to enable or disable. The terms are applied in order, 85 Enable all supported qlog event types. 89 Disable all qlog event types. 93 Enable all qlog event types, but disable the B<transport:packet_received> event 98 Disable all qlog event types, except for the B<transport:packet_sent> event type. 102 Disable all qlog event types, except for B<transport:parameters_set> and all 103 supported event types in the B<connectivity> category. [all …]
|
| H A D | openssl-core.h.pod | 5 openssl/core.h - OpenSSL Core types 13 The F<< <openssl/core.h> >> header defines a number of public types that 16 These types are designed to minimise the need for intimate knowledge 19 The types are: 43 The types described here were added in OpenSSL 3.0.
|
| /src/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()
|
| /src/crypto/openssl/doc/designs/quic-design/ |
| H A D | qlog.md | 110 - `+*` (or `*`) enables all event types. 112 - `-*` disables all event types. 114 - `+quic:*` (or `quic:*`) enables all event types in the `quic` category. 121 earlier items. In the example above, for example, all event types are enabled, 122 then the `quic:version_information` event is disabled, then all event types are 127 - `*` (or `+*`): enable all event types 129 - `quic:version_information quic:packet_sent`: enable some event types explicitly 131 - `* -quic:version_information`: enable all event types except certain ones
|