| /src/crypto/external/apache2/openssl/dist/crypto/store/ |
| store_strings.c | 25 int types = OSSL_NELEM(type_strings); local 27 if (type < 1 || type > types)
|
| /src/crypto/external/bsd/openssl/dist/crypto/store/ |
| store_strings.c | 23 int types = sizeof(type_strings) / sizeof(type_strings[0]); local 25 if (type < 1 || type > types)
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/store/ |
| store_strings.c | 22 int types = sizeof(type_strings) / sizeof(type_strings[0]); local 24 if (type < 1 || type > types)
|
| /src/libexec/talkd/ |
| print.c | 43 #include <sys/types.h> 52 static const char *types[] = { variable 58 #define NTYPES (sizeof (types) / sizeof (types[0])) 83 tp = types[mp->type]; 99 tp = types[rp->type];
|
| /src/usr.bin/mklocale/ |
| ldef.h | 44 u_int32_t *types; member in struct:rune_list
|
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| Types.h | 1 //===--- Types.h - Input & Temporary Driver Types ---------------*- C++ -*-===// 22 namespace types { namespace in namespace:clang::driver 26 #include "clang/Driver/Types.def" 63 /// types). 119 } // end namespace types
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| pretty-print.py | 20 import gdb.types namespace 58 t1 = gdb.types.get_basic_type(self._type_obj) 59 t2 = gdb.types.get_basic_type(type_obj) 77 gdb.types.register_type_printer(obj, printer)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-mi-var-info-path-expression.py | 19 import gdb.types namespace
|
| py-typeprint.py | 60 import gdb.types namespace 62 gdb.types.register_type_printer(gdb.objfiles()[0], OtherTypePrinter())
|
| py-pp-maint.py | 22 import gdb.types namespace 33 typename = gdb.types.get_basic_type(val.type).tag
|
| py-pp-registration.py | 22 import gdb.types namespace 33 typename = gdb.types.get_basic_type(val.type).tag
|
| py-unwind-maint.py | 20 import gdb.types namespace
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
| notify.h | 21 u32 types; member in struct:nvkm_notify
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| krbhst-test.c | 66 int types[] = {KRB5_KRBHST_KDC, KRB5_KRBHST_ADMIN, KRB5_KRBHST_CHANGEPW, local 92 for (j = 0; j < sizeof(types)/sizeof(*types); ++j) { 95 krb5_krbhst_init(context, argv[i], types[j], &handle);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdbarch-selftests.c | 39 struct type *types[] = local 79 different combinations of register numbers and types. */ 80 for (const auto &type : types)
|
| /src/external/ibm-public/postfix/dist/src/dns/ |
| test_dns_lookup.c | 65 msg_fatal("usage: %s [-npv] [-f filter] types name", argv[0]); 71 unsigned *types; local 112 types = (unsigned *) mymalloc(sizeof(*types) * (types_argv->argc + 1)); 114 if ((types[i] = dns_type(types_argv->argv[i])) == 0) 116 types[i] = 0; 121 &rcode, lflags, types)) { 136 myfree((void *) types);
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| dwz.h | 52 struct dwarf2_section_info types {}; struct in struct:dwz_file
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| dwz.h | 54 struct dwarf2_section_info types {}; struct in struct:dwz_file
|
| /src/external/gpl3/gdb/dist/gdb/ |
| gdbarch-selftests.c | 38 struct type *types[] = local 78 different combinations of register numbers and types. */ 79 for (const auto &type : types)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| DebugInfo.h | 141 iterator_range<type_iterator> types() const { function in class:llvm::DebugInfoFinder
|
| /src/external/bsd/kyua-cli/dist/cli/ |
| common.cpp | 73 "results-filter", "Comma-separated list of result types to include in " 74 "the report", "types", "skipped,xfail,broken,failed"); 106 cli::result_types types; local 113 types.push_back((*match).second); 115 return types; 176 /// Gets the filters for the result types. 180 /// \return A collection of result types to be used for filtering. 186 result_types types = parse_types( local 188 if (types.empty()) { 189 types.push_back(engine::test_result::passed) [all...] |
| /src/tests/include/ |
| t_stddef.c | 90 ATF_TC(types); variable 91 ATF_TC_HEAD(types, tc) 93 atf_tc_set_md_var(tc, "descr", "Test <stddef.h> types are reasonable"); 95 ATF_TC_BODY(types, tc) 124 ATF_TP_ADD_TC(tp, types);
|
| /src/usr.bin/mkcsmapper/ |
| yacc.y | 48 #include <sys/types.h> 122 %type <i_value> dst types oob_mode_sel zone 140 type : R_TYPE types { set_type($2); } 141 types : R_ROWCOL { $$ = R_ROWCOL; } label
|
| /src/crypto/external/apache2/openssl/dist/crypto/asn1/ |
| a_mbstr.c | 29 * of permissible ASN1 string types. It then works out the minimal type 288 unsigned long types = usable_types; local 292 * Clear out all the types which are not checked later. If any of those 296 types &= B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING 301 * If any other types were in the input mask, they're effectively treated 304 if (types != usable_types) 305 types |= B_ASN1_UTF8STRING; 310 if ((types & B_ASN1_NUMERICSTRING) && !(ossl_isdigit(native) || native == ' ')) 311 types &= ~B_ASN1_NUMERICSTRING; 312 if ((types & B_ASN1_PRINTABLESTRING) && !ossl_isasn1print(native) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| a_mbstr.c | 29 * of permissible ASN1 string types. It then works out the minimal type 281 unsigned long types = *((unsigned long *)arg); local 284 if ((types & B_ASN1_NUMERICSTRING) && !(ossl_isdigit(native) 286 types &= ~B_ASN1_NUMERICSTRING; 287 if ((types & B_ASN1_PRINTABLESTRING) && !ossl_isasn1print(native)) 288 types &= ~B_ASN1_PRINTABLESTRING; 289 if ((types & B_ASN1_IA5STRING) && !ossl_isascii(native)) 290 types &= ~B_ASN1_IA5STRING; 291 if ((types & B_ASN1_T61STRING) && (value > 0xff)) 292 types &= ~B_ASN1_T61STRING [all...] |