Home
last modified time | relevance | path

Searched refs:typestr (Results 1 – 13 of 13) sorted by relevance

/external/clang/utils/TableGen/
DNeonEmitter.cpp396 static std::string TypeString(const char mod, StringRef typestr) { in TypeString() argument
410 char type = ClassifyType(typestr, quad, poly, usgn); in TypeString()
483 static std::string BuiltinTypeString(const char mod, StringRef typestr, in BuiltinTypeString() argument
498 char type = ClassifyType(typestr, quad, poly, usgn); in BuiltinTypeString()
578 static std::string MangleName(const std::string &name, StringRef typestr, in MangleName() argument
586 char type = ClassifyType(typestr, quad, poly, usgn); in MangleName()
681 static std::string GenArgs(const std::string &proto, StringRef typestr) { in GenArgs() argument
696 s += TypeString(proto[i], typestr) + " __"; in GenArgs()
709 static std::string GenMacroLocals(const std::string &proto, StringRef typestr) { in GenMacroLocals() argument
721 s += TypeString(proto[i], typestr) + " __"; in GenMacroLocals()
[all …]
/external/ppp/pppd/plugins/radius/
Ddict.c43 char typestr[AUTH_ID_LEN]; in rc_read_dictionary() local
108 n = sscanf(buffer, "%s%s%s%s%s", dummystr, namestr, valstr, typestr, vendorstr); in rc_read_dictionary()
145 if (strcmp (typestr, "string") == 0) in rc_read_dictionary()
149 else if (strcmp (typestr, "integer") == 0) in rc_read_dictionary()
153 else if (strcmp (typestr, "ipaddr") == 0) in rc_read_dictionary()
157 else if (strcmp (typestr, "date") == 0) in rc_read_dictionary()
/external/elfutils/libasm/
Dasm_newscn.c66 const char *typestr = ""; in text_newscn() local
89 typestr = ",@progbits"; in text_newscn()
91 typestr = ",@nobits"; in text_newscn()
97 result->name, flagstr, typestr); in text_newscn()
/external/iptables/extensions/
Dlibip6t_dst.c32 parse_opts_num(const char *idstr, const char *typestr) in parse_opts_num() argument
41 "dst: no valid digits in %s `%s'", typestr, idstr); in parse_opts_num()
46 typestr, idstr); in parse_opts_num()
50 "dst: error parsing %s `%s'", typestr, idstr); in parse_opts_num()
Dlibip6t_hbh.c34 parse_opts_num(const char *idstr, const char *typestr) in parse_opts_num() argument
43 "hbh: no valid digits in %s `%s'", typestr, idstr); in parse_opts_num()
48 typestr, idstr); in parse_opts_num()
52 "hbh: error parsing %s `%s'", typestr, idstr); in parse_opts_num()
/external/v8/tools/
Dgen-postmortem-metadata.py179 typestr = '';
206 typestr += line;
220 entries = typestr.split(',');
/external/libpcap/
Dgencode.c3398 const char *typestr; local
3401 typestr = "net";
3403 typestr = "host";
3431 bpf_error("'tcp' modifier applied to %s", typestr);
3434 bpf_error("'sctp' modifier applied to %s", typestr);
3437 bpf_error("'udp' modifier applied to %s", typestr);
3440 bpf_error("'icmp' modifier applied to %s", typestr);
3443 bpf_error("'igmp' modifier applied to %s", typestr);
3446 bpf_error("'igrp' modifier applied to %s", typestr);
3449 bpf_error("'pim' modifier applied to %s", typestr);
[all …]
/external/dnsmasq/src/
Dcache.c34 } typestr[] = { variable
140 const unsigned char *mix_tab = (const unsigned char*)typestr; in hash_bucket()
1232 for (i = 0; i < (sizeof(typestr)/sizeof(typestr[0])); i++) in querystr()
1233 if (typestr[i].type == type) in querystr()
1234 sprintf(str,"query[%s]", typestr[i].name); in querystr()
/external/qemu/
Dmonitor.c2420 const char *p, *typestr; in monitor_handle_command() local
2472 typestr = cmd->args_type; in monitor_handle_command()
2475 c = *typestr; in monitor_handle_command()
2478 typestr++; in monitor_handle_command()
2489 if (*typestr == '?') { in monitor_handle_command()
2490 typestr++; in monitor_handle_command()
2614 if (*typestr == '?' || *typestr == '.') { in monitor_handle_command()
2615 if (*typestr == '?') { in monitor_handle_command()
2630 typestr++; in monitor_handle_command()
2665 c = *typestr++; in monitor_handle_command()
/external/mdnsresponder/mDNSShared/
Ddnssd_clientshim.c176 char typestr[MAX_ESCAPED_DOMAIN_NAME]; in RegCallback() local
180 if (!ConvertDomainNameToCString(&type, typestr)) return; in RegCallback()
186 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context); in RegCallback()
192 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context); in RegCallback()
Duds_daemon.c410 char typestr[MAX_ESCAPED_DOMAIN_NAME]; in GenerateNTDResponse() local
416 ConvertDomainNameToCString(&type, typestr); in GenerateNTDResponse()
424 len += (int) (strlen(typestr) + 1); in GenerateNTDResponse()
436 put_string(typestr, &data); in GenerateNTDResponse()
449 char typestr[MAX_ESCAPED_DOMAIN_NAME]; in GenerateBonjourBrowserResponse() local
460 mDNS_snprintf(typestr, sizeof(typestr), "%#s.local.", SecondLabel(servicename)); in GenerateBonjourBrowserResponse()
467 len += (int) (strlen(typestr) + 1); in GenerateBonjourBrowserResponse()
479 put_string(typestr, &data); in GenerateBonjourBrowserResponse()
/external/tcpdump/
Dprint-ppp.c426 const char *typestr; in handle_ctrl_proto() local
434 typestr = tok2str(ppptype2str, "unknown ctrl-proto (0x%04x)", proto); in handle_ctrl_proto()
435 printf("%s, ",typestr); in handle_ctrl_proto()
584 printf("[|%s]", typestr); in handle_ctrl_proto()
/external/llvm/lib/Target/Mips/
DMipsInstrFPU.td206 class CEQS_FT<string typestr, RegisterClass RC, InstrItinClass Itin,
209 !strconcat("c.$cond.", typestr, "\t$fs, $ft"),