Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXInstrLoadStore.td138 multiclass PTX_LD<string opstr, string typestr,
142 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
147 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
152 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
157 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
162 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
167 !strconcat(opstr, !strconcat(typestr, "\t$d, [$a]")),
172 multiclass PTX_ST<string opstr, string typestr, RegisterClass RC,
176 !strconcat(opstr, !strconcat(typestr, "\t[$a], $d")),
181 !strconcat(opstr, !strconcat(typestr, "\t[$a], $d")),
[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/toybox/toys/lsb/
Dumount.c126 char *typestr = 0; in umount_main() local
129 for (tal = TT.t; tal; tal = tal->next) comma_collate(&typestr, tal->arg); in umount_main()
131 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags); in umount_main()
133 free(typestr); in umount_main()
/external/elfutils/libasm/
Dasm_newscn.c69 const char *typestr = ""; in text_newscn() local
92 typestr = ",@progbits"; in text_newscn()
94 typestr = ",@nobits"; in text_newscn()
100 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.py324 typestr = '';
351 typestr += line;
367 entries = typestr.split(',');
/external/libpcap/
Dgencode.c4525 const char *typestr; local
4528 typestr = "net";
4530 typestr = "host";
4558 bpf_error("'tcp' modifier applied to %s", typestr);
4561 bpf_error("'sctp' modifier applied to %s", typestr);
4564 bpf_error("'udp' modifier applied to %s", typestr);
4567 bpf_error("'icmp' modifier applied to %s", typestr);
4570 bpf_error("'igmp' modifier applied to %s", typestr);
4573 bpf_error("'igrp' modifier applied to %s", typestr);
4576 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/mdnsresponder/mDNSShared/
Ddnssd_clientshim.c187 char typestr[MAX_ESCAPED_DOMAIN_NAME]; in RegCallback() local
191 if (!ConvertDomainNameToCString(&type, typestr)) return; in RegCallback()
197 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context); in RegCallback()
207 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.c416 const char *typestr; in handle_ctrl_proto() local
424 typestr = tok2str(ppptype2str, "unknown ctrl-proto (0x%04x)", proto); in handle_ctrl_proto()
425 ND_PRINT((ndo, "%s, ", typestr)); in handle_ctrl_proto()
575 ND_PRINT((ndo, "[|%s]", typestr)); in handle_ctrl_proto()
/external/llvm/lib/Target/Mips/
DMipsInstrFPU.td224 class CEQS_FT<string typestr, RegisterClass RC, InstrItinClass Itin,
227 !strconcat("c.$cond.", typestr, "\t$fs, $ft"),
229 !strconcat("c.$cond.", typestr)>, HARDFLOAT {