Home
last modified time | relevance | path

Searched refs:tmpstr (Results 1 – 12 of 12) sorted by relevance

/external/toolchain-utils/deprecated/
Dcompare_benchmarks.py66 tmpstr = ''
68 tmpstr += '-'
69 print(tmpstr)
73 tmpstr = ''
75 if tmpstr != '':
76 tmpstr += ','
77 tmpstr += hdr[i]
78 print(tmpstr)
85 tmpstr = ''
87 tmpstr += '%15.15s' % hdr[i]
[all …]
/external/honggfuzz/
Ddisplay.c266 static char tmpstr[1024 * 128] = {0}; in display_createTargetStr() local
267 snprintf(tmpstr, sizeof(tmpstr), "%s", hfuzz->exe.cmdline[0]); in display_createTargetStr()
269 util_ssnprintf(tmpstr, sizeof(tmpstr), " %s", hfuzz->exe.cmdline[i]); in display_createTargetStr()
272 size_t len = strlen(tmpstr); in display_createTargetStr()
274 snprintf(hfuzz->display.cmdline_txt, sizeof(hfuzz->display.cmdline_txt), "%s", tmpstr); in display_createTargetStr()
278 snprintf(hfuzz->display.cmdline_txt, sizeof(hfuzz->display.cmdline_txt), "%.32s.....%s", tmpstr, in display_createTargetStr()
279 &tmpstr[len - 27]); in display_createTargetStr()
/external/curl/tests/
Dsshhelp.pm422 foreach my $tmpstr (qx($cmd 2>&1)) {
423 if($tmpstr =~ /OpenSSH[_-](\d+)\.(\d+)(\.(\d+))*/i) {
433 if($tmpstr =~ /Sun[_-]SSH[_-](\d+)\.(\d+)(\.(\d+))*/i) {
443 $error .= $tmpstr;
Dsshserver.pl134 my $tmpstr = $ARGV[1];
135 if($tmpstr =~ /^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)$/) {
140 $listenaddr = $tmpstr;
Dftpserver.pl2925 my $tmpstr = $ARGV[1];
2926 if($tmpstr =~ /^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)$/) {
2930 $listenaddr = $tmpstr;
/external/ltp/testcases/kernel/mem/vma/
Dvma04.c200 char buf[BUFSIZ], tmpstr[BUFSIZ]; in get_vmas() local
213 sprintf(tmpstr, "%ld", (t - s) / pagesize); in get_vmas()
216 sprintf(tmpstr, ",%ld", (t - s) / pagesize); in get_vmas()
218 strncat(retbuf, tmpstr, 32); in get_vmas()
/external/ltp/lib/
Drandom_range.c105 char *tmpstr, *cp, *tok, *n1str, *n2str, *multstr; in parse_ranges() local
123 tmpstr = strdup(str); in parse_ranges()
127 tok = strtok(tmpstr, ","); in parse_ranges()
158 free(tmpstr); in parse_ranges()
178 free(tmpstr); in parse_ranges()
196 free(tmpstr); in parse_ranges()
206 free(tmpstr); in parse_ranges()
/external/clang/test/SemaObjCXX/
Dreferences.mm34 void f4(NSString &tmpstr) {
35 f3(&tmpstr);
/external/iproute2/lib/
Dutils.c991 char tmpstr[3]; in hexstring_a2n() local
993 strncpy(tmpstr, str, 2); in hexstring_a2n()
994 tmpstr[2] = '\0'; in hexstring_a2n()
996 tmp = strtoul(tmpstr, &endptr, 16); in hexstring_a2n()
/external/ltp/testcases/kernel/sched/process_stress/
Dprocess.c803 char tmpstr[1024]; local
828 sprintf(tmpstr, "sigaction: %s\n", siginfo[i].signame);
829 perror(tmpstr);
/external/python/cpython3/Modules/
Dpyexpat.c1650 PyObject *tmpnum, *tmpstr; in MODULE_INITFUNC() local
1778 tmpstr = PyUnicode_FromString(XML_ErrorString(name)); \ in MODULE_INITFUNC()
1779 if (tmpstr == NULL) return NULL; \ in MODULE_INITFUNC()
1780 res = PyDict_SetItem(rev_codes_dict, tmpnum, tmpstr); \ in MODULE_INITFUNC()
1781 Py_DECREF(tmpstr); \ in MODULE_INITFUNC()
/external/libxml2/
Dtree.c6527 xmlChar *elemQName, *tmpstr = NULL; in xmlGetPropNodeInternal() local
6533 tmpstr = xmlStrdup(node->ns->prefix); in xmlGetPropNodeInternal()
6534 tmpstr = xmlStrcat(tmpstr, BAD_CAST ":"); in xmlGetPropNodeInternal()
6535 tmpstr = xmlStrcat(tmpstr, node->name); in xmlGetPropNodeInternal()
6536 if (tmpstr == NULL) in xmlGetPropNodeInternal()
6538 elemQName = tmpstr; in xmlGetPropNodeInternal()
6560 if (tmpstr != NULL) in xmlGetPropNodeInternal()
6561 xmlFree(tmpstr); in xmlGetPropNodeInternal()
6582 if (tmpstr != NULL) in xmlGetPropNodeInternal()
6583 xmlFree(tmpstr); in xmlGetPropNodeInternal()