| /src/external/apache2/argon2/dist/phc-winner-argon2/src/ |
| genkat.c | 184 const char *type_str = (argc > 1) ? argv[1] : "i"; local 187 if (!strcmp(type_str, "d")) { 189 } else if (!strcmp(type_str, "i")) { 191 } else if (!strcmp(type_str, "id")) {
|
| /src/external/bsd/unbound/dist/pythonmod/examples/ |
| avahi-resolver.py | 434 type_str = dns.rdatatype.to_text(type_) 457 dbg("Got request for '%s %s %s'" % (name, class_str, type_str)) 466 dbg('Rejected, Avahi does not support the type %s' % type_str) 472 dbg('Rejected, type %s is on the blacklist' % type_str) 478 dbg('Rejected, type %s is not on the whitelist' % type_str) 495 dbg("Resolving '%s %s %s' via Avahi" % (name, class_str, type_str)) 547 type_str = sys.argv[2] variable 550 type_ = dns.rdatatype.from_text(type_str) 552 log_err('Unsupported DNS record type "%s"' % type_str) 556 log_err('Meta record type "%s" cannot be resolved via Avahi' % type_str) [all...] |
| log.py | 80 print("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
|
| /src/external/mit/isl/dist/interface/ |
| cpp.cc | 687 std::string type_str; local 700 type_str += param(arg + 1 + i, type); 702 type_str += type.getAsString(); 705 type_str += "arg_" + ::to_string(i); 708 type_str += ", "; 711 return type_str; 728 std::string type_str; local 733 type_str = "std::function<"; 734 type_str += rettype_str; 735 type_str += "(" 882 std::string type_str = subclass_type->getPointeeType().getAsString(); local [all...] |
| python.cc | 563 string type_str; local 564 type_str = generator::extract_type(type); 565 type_str = type2python(type_str); 566 printf("args[%d].__class__ is %s", i, type_str.c_str());
|
| /src/external/gpl3/gdb/dist/gdb/ |
| amdgpu-tdep.c | 513 parse_amd_dbgapi_register_type (std::string_view type_str, 516 size_t pos_open_bracket = type_str.find_last_of ('['); 517 auto sv_from_match = [type_str] (const regmatch_t &m) 518 { return type_str.substr (m.rm_so, m.rm_eo - m.rm_so); }; 524 = type_str.substr (0, pos_open_bracket); 528 size_t pos_close_bracket = type_str.find_last_of (']'); 531 = type_str.substr (pos_open_bracket + 1, 553 if (type_str.find ("flags32_t") == 0 || type_str.find ("flags64_t") == 0) 555 /* Split 'type_str' into 4 tokens: "(type) (name) ({ (fields) })". * [all...] |
| dtrace-probe.c | 51 : type (type_), type_str (std::move (type_str_)), 59 std::string type_str; member in struct:dtrace_probe_arg 476 std::string type_str (p); 489 expr = parse_expression_with_language (type_str.c_str (), 499 args.emplace_back (type, std::move (type_str), std::move (expr));
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| amdgpu-tdep.c | 515 parse_amd_dbgapi_register_type (std::string_view type_str, 518 size_t pos_open_bracket = type_str.find_last_of ('['); 519 auto sv_from_match = [type_str] (const regmatch_t &m) 520 { return type_str.substr (m.rm_so, m.rm_eo - m.rm_so); }; 526 = type_str.substr (0, pos_open_bracket); 530 size_t pos_close_bracket = type_str.find_last_of (']'); 533 = type_str.substr (pos_open_bracket + 1, 555 if (type_str.find ("flags32_t") == 0 || type_str.find ("flags64_t") == 0) 557 /* Split 'type_str' into 4 tokens: "(type) (name) ({ (fields) })". * [all...] |
| dtrace-probe.c | 51 : type (type_), type_str (std::move (type_str_)), 59 std::string type_str; member in struct:dtrace_probe_arg 476 std::string type_str (p); 489 expr = parse_expression_with_language (type_str.c_str (), 499 args.emplace_back (type, std::move (type_str), std::move (expr));
|
| /src/external/bsd/libc++/dist/libcxxrt/src/ |
| libelftc_dem_gnu3.c | 821 struct vector_type_qualifier *v, const char *type_str) 837 if (type_str != NULL) { 840 if (!VEC_PUSH_STR(&subst_v, type_str)) 854 if (type_str != NULL) { 869 if (type_str != NULL) { 884 if (type_str != NULL) { 899 if (type_str != NULL) { 914 if (type_str != NULL) { 943 if (type_str != NULL) { 966 if (type_str != NULL) 2848 char *type_str, *exp_str, *num_str, *subst_str; local [all...] |
| /src/external/bsd/libfido2/dist/tools/ |
| bio.c | 247 type_str(uint8_t t) function 274 type_str(fido_bio_info_type(i)));
|
| /src/external/bsd/unbound/dist/pythonmod/ |
| ubmodule-tst.py | 87 print("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
|
| ubmodule-msg.py | 86 print "type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class)
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/ |
| printers.py | 207 def strip_inline_namespaces(type_str): 209 type_str = strip_versioned_namespace(type_str) 210 type_str = type_str.replace('std::__cxx11::', 'std::') 213 type_str = type_str.replace(expt_ns + lfts_ns + '::', expt_ns) 215 type_str = type_str.replace(fs_ns + 'v1::', fs_ns) 216 return type_str [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/nds32/ |
| nds32-isr.cc | 309 const char *type_str; local 312 type_str = (object_p) ? "@object" : "@function"; 317 fprintf (asm_out_file, "\t.type\t%s, %s\n", symbol_name, type_str);
|
| /src/external/gpl3/gcc/dist/gcc/config/nds32/ |
| nds32-isr.cc | 309 const char *type_str; local 312 type_str = (object_p) ? "@object" : "@function"; 317 fprintf (asm_out_file, "\t.type\t%s, %s\n", symbol_name, type_str);
|
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/ |
| explore.py | 636 def get_type_from_str(type_str): 641 type_str: The type string from which the gdb.Type value should be 649 return gdb.parse_and_eval("(%s *)0" % type_str).type.target() 654 return gdb.lookup_type(type_str)
|
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/ |
| explore.py | 636 def get_type_from_str(type_str): 641 type_str: The type string from which the gdb.Type value should be 649 return gdb.parse_and_eval("(%s *)0" % type_str).type.target() 654 return gdb.lookup_type(type_str)
|
| /src/external/bsd/unbound/dist/testdata/pymod.tdir/ |
| pymod.py | 91 print ("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
|
| /src/external/bsd/unbound/dist/testdata/pymod_thread.tdir/ |
| pymod_thread.py | 91 print ("type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class))
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/ |
| printers.py | 233 def strip_inline_namespaces(type_str): 235 type_str = strip_versioned_namespace(type_str) 236 type_str = type_str.replace('std::__cxx11::', 'std::') 239 type_str = type_str.replace(expt_ns + lfts_ns + '::', expt_ns) 241 type_str = type_str.replace(fs_ns + 'v1::', fs_ns) 242 return type_str [all...] |
| /src/external/mpl/dhcp/dist/server/ |
| ldap.c | 2602 char buf[128], *type_str; local 2626 type_str = "ethernet"; 2629 type_str = "token-ring"; 2632 type_str = "fddi"; 2661 type_str, bv_o[0].bv_val, type_str, bv_o[1].bv_val);
|
| /src/external/gpl3/binutils/dist/gas/config/ |
| obj-elf-attr.c | 566 #define EXP_APPEND_TYPE_STR(type_flag, type_str) \ 572 total += snprintf_append (&sbuffer, &length, "`%s'", type_str); \
|
| /src/external/bsd/wpa/dist/wpa_supplicant/dbus/ |
| dbus_new_handlers.c | 598 char type_str[] = "a?"; /* ? will be replaced with subtype letter; */ local 609 type_str[1] = sub_type_str[0]; 612 type_str, &variant_iter) || 691 char type_str[] = "aa?"; local 703 type_str[2] = sub_type_str[0]; 707 type_str, &variant_iter) ||
|
| /src/external/apache2/mDNSResponder/dist/mDNSShared/ |
| uds_daemon.c | 1768 char type_str[MAX_ESCAPED_DOMAIN_NAME] = ""; local 1774 ConvertDomainNameToCString(&type, type_str); 1775 service_ptr = type_str; 5169 char type_str[MAX_ESCAPED_DOMAIN_NAME] = ""; local 5178 ConvertDomainNameToCString(&type, type_str); 5179 service_ptr = type_str;
|