/external/vulkan-validation-layers/layers/ |
D | vk_layer_config.cpp | 298 strcat(msg_flags, "DEBUG"); in PrintMessageFlags() 302 if (separator) strcat(msg_flags, ","); in PrintMessageFlags() 303 strcat(msg_flags, "INFO"); in PrintMessageFlags() 307 if (separator) strcat(msg_flags, ","); in PrintMessageFlags() 308 strcat(msg_flags, "WARN"); in PrintMessageFlags() 312 if (separator) strcat(msg_flags, ","); in PrintMessageFlags() 313 strcat(msg_flags, "PERF"); in PrintMessageFlags() 317 if (separator) strcat(msg_flags, ","); in PrintMessageFlags() 318 strcat(msg_flags, "ERROR"); in PrintMessageFlags() 327 strcat(msg_flags, "VERBOSE"); in PrintMessageSeverity() [all …]
|
/external/python/cpython2/PC/VS7.1/ |
D | make_buildinfo.c | 43 strcat(command, "bin\\subwcrev.exe"); in make_buildinfo2() 47 strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c"); in make_buildinfo2() 63 strcat(command, "-MD "); in main() 66 strcat(command, "-D_DEBUG -MDd "); in main() 69 strcat(command, "-MD /USECL:MS_ITANIUM "); in main() 72 strcat(command, "-MD "); in main() 73 strcat(command, "-MD /USECL:MS_OPTERON "); in main() 81 strcat(command, "getbuildinfo2.c -DSUBWCREV "); in main() 83 strcat(command, "..\\..\\Modules\\getbuildinfo.c"); in main() 84 strcat(command, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC"); in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | strcat-1.ll | 1 ; Test that the strcat libcall simplifier works correctly per the 12 declare i8* @strcat(i8*, i8*) 17 ; CHECK-NOT: call i8* @strcat 24 ; rslt1 = strcat(target, "hello\00") 26 %rslt1 = call i8* @strcat(i8* %arg1, i8* %arg2) 28 ; rslt2 = strcat(rslt1, "\00") 30 %rslt2 = call i8* @strcat(i8* %rslt1, i8* %arg3) 32 ; rslt3 = strcat(rslt2, "\00hello\00") 34 %rslt3 = call i8* @strcat(i8* %rslt2, i8* %arg4)
|
D | strcat-2.ll | 1 ; Test that the strcat libcall simplifier works correctly. 11 declare i8* @strcat(i8*, i8*) 15 ; CHECK-NOT: call i8* @strcat 20 call i8* @strcat(i8* %dst, i8* %src) 30 call i8* @strcat(i8* %dst, i8* %src)
|
D | strcat-3.ll | 1 ; Test that the strcat libcall simplifier works correctly. 11 declare i16* @strcat(i8*, i8*) 15 ; CHECK: call i16* @strcat 20 call i16* @strcat(i8* %dst, i8* %src)
|
/external/llvm/test/Transforms/InstCombine/ |
D | strcat-1.ll | 1 ; Test that the strcat libcall simplifier works correctly per the 12 declare i8* @strcat(i8*, i8*) 17 ; CHECK-NOT: call i8* @strcat 24 ; rslt1 = strcat(target, "hello\00") 26 %rslt1 = call i8* @strcat(i8* %arg1, i8* %arg2) 28 ; rslt2 = strcat(rslt1, "\00") 30 %rslt2 = call i8* @strcat(i8* %rslt1, i8* %arg3) 32 ; rslt3 = strcat(rslt2, "\00hello\00") 34 %rslt3 = call i8* @strcat(i8* %rslt2, i8* %arg4)
|
D | strcat-2.ll | 1 ; Test that the strcat libcall simplifier works correctly. 11 declare i8* @strcat(i8*, i8*) 15 ; CHECK-NOT: call i8* @strcat 20 call i8* @strcat(i8* %dst, i8* %src) 30 call i8* @strcat(i8* %dst, i8* %src)
|
D | strcat-3.ll | 1 ; Test that the strcat libcall simplifier works correctly. 11 declare i16* @strcat(i8*, i8*) 15 ; CHECK: call i16* @strcat 20 call i16* @strcat(i8* %dst, i8* %src)
|
/external/icu/icu4c/as_is/os400/ |
D | iculd.c | 108 strcat(opt,argv[i]+9); in main() 150 strcat(objs,outputdir); in main() 151 strcat(objs,"/"); in main() 153 strcat(objs, " "); in main() 184 strcat(bnddirs,outputdir); in main() 185 strcat(bnddirs,"/"); in main() 187 strcat(bnddirs, " "); in main() 196 strcat(libs,outputdir); in main() 197 strcat(libs,"/"); in main() 199 strcat(libs," "); in main()
|
/external/blktrace/ |
D | blkparse_fmt.c | 184 fprintf(ofp, strcat(format, "s"), act); in print_field() 187 fprintf(ofp, strcat(format, "d"), pci->cpu); in print_field() 192 fprintf(ofp, strcat(format, "s"), name); in print_field() 199 fprintf(ofp, strcat(format, "s"), rwbs); in print_field() 206 fprintf(ofp, strcat(format, "d"), t->error); in print_field() 209 fprintf(ofp, strcat(format, "d"), MAJOR(t->device)); in print_field() 212 fprintf(ofp, strcat(format, "d"), MINOR(t->device)); in print_field() 215 fprintf(ofp, strcat(format, "u"), t_sec(t)); in print_field() 218 fprintf(ofp, strcat(format, "u"), t->bytes); in print_field() 221 fprintf(ofp, strcat(format, "u"), t->pid); in print_field() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | cpuinfo.c | 63 strcat(buffer, "x86"); in _mesa_get_cpu_string() 68 strcat(buffer, (cpu_has_mmxext) ? "/MMX+" : "/MMX"); in _mesa_get_cpu_string() 73 strcat(buffer, (cpu_has_3dnowext) ? "/3DNow!+" : "/3DNow!"); in _mesa_get_cpu_string() 78 strcat(buffer, (cpu_has_xmm2) ? "/SSE2" : "/SSE"); in _mesa_get_cpu_string() 84 strcat(buffer, "SPARC"); in _mesa_get_cpu_string()
|
/external/ltp/testcases/kernel/fs/mongo/ |
D | reiser_fract_tree.c | 86 strcat(path, "/"); in chngdir() 87 strcat(path, name); in chngdir() 172 strcat(fname, "/"); in make_file() 173 strcat(fname, str); in make_file() 300 strcat(tdir, "/"); in make_directory() 301 strcat(tdir, dirname); in make_directory() 321 strcat(tdir, "/"); in make_directory() 322 strcat(tdir, dirname); in make_directory()
|
D | mongo_compare.c | 76 strcat(out1, ".txt"); in main() 79 strcat(out2, ".html"); in main() 115 strcat(line3, " "); in main() 162 strcat(line2, " "); in main() 165 strcat(line3, line2); in main() 168 strcat(out_line, "\n"); in main()
|
/external/selinux/mcstrans/src/ |
D | mcstrans.c | 950 strcat(buffer, "["); in emit_whitespace() 951 strcat(buffer, whitespace); in emit_whitespace() 952 strcat(buffer, "]"); in emit_whitespace() 1011 strcat(buffer, sortable[i]); in build_regexps() 1012 if (i < n_el) strcat(buffer,"|"); in build_regexps() 1022 strcat(buffer,"(?:"); in build_regexps() 1024 strcat(buffer, a->text); in build_regexps() 1025 if (a->next) strcat(buffer,"|"); in build_regexps() 1027 strcat(buffer,")"); in build_regexps() 1028 strcat(buffer,"[ ]+"); in build_regexps() [all …]
|
/external/iproute2/tc/ |
D | tc_class.c | 193 strcat(buf, "| "); in graph_indent() 195 strcat(buf, " "); in graph_indent() 202 strcat(buf, "| |"); in graph_indent() 204 strcat(buf, "| "); in graph_indent() 206 strcat(buf, " |"); in graph_indent() 208 strcat(buf, " "); in graph_indent() 212 strcat(buf, spaces); in graph_indent() 247 strcat(buf, str); in graph_cls_show() 253 strcat(buf, " [unknown qdisc kind] "); in graph_cls_show() 258 strcat(buf, str); in graph_cls_show() [all …]
|
/external/u-boot/board/Arcturus/ucp1020/ |
D | ucp1020.c | 228 strcat(newkernelargs, " "); in last_stage_init() 229 strcat(newkernelargs, mmckargs); in last_stage_init() 230 strcat(newkernelargs, " "); in last_stage_init() 231 strcat(newkernelargs, &tmp[n]); in last_stage_init() 243 strcat(newkernelargs, sval); in last_stage_init() 244 strcat(newkernelargs, " "); in last_stage_init() 245 strcat(newkernelargs, kval); in last_stage_init()
|
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/ |
D | StrCat.ll | 4 ; RUN: not grep {call.*strcat} 16 declare i8* @strcat(i8*, i8*) 25 %rslt1 = call i8* @strcat( i8* %arg1, i8* %arg2 ) ; <i8*> [#uses=1] 27 %rslt2 = call i8* @strcat( i8* %rslt1, i8* %arg3 ) ; <i8*> [#uses=1] 29 %rslt3 = call i8* @strcat( i8* %rslt2, i8* %arg4 ) ; <i8*> [#uses=1]
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_str_test.cc | 385 strcat(to, from); in TEST() 386 strcat(to, from); in TEST() 387 strcat(to + from_size, from + from_size - 2); in TEST() 390 EXPECT_DEATH(strcat(to - 1, from + from_size - 1), LeftOOBAccessMessage(1)); in TEST() 392 EXPECT_DEATH(strcat(to - 1, from), LeftOOBAccessMessage(1)); in TEST() 393 EXPECT_DEATH(strcat(to, from - 1), LeftOOBReadMessage(1)); in TEST() 394 EXPECT_DEATH(strcat(to, from + from_size), RightOOBReadMessage(0)); in TEST() 398 EXPECT_DEATH(strcat(to, from), RightOOBReadMessage(0)); in TEST() 403 EXPECT_DEATH(strcat(to, from), RightOOBWriteMessage(0)); in TEST() 405 strcat(to, from + 1); in TEST() [all …]
|
/external/e2fsprogs/misc/ |
D | mklost+found.c | 63 strcat (path, "/"); in main() 64 strcat (path, name); in main() 79 strcat (path, "/"); in main() 80 strcat (path, name); in main()
|
/external/ltp/testcases/kernel/fs/doio/ |
D | open_flags.c | 256 strcat(Open_symbols, "O_RDONLY"); in openflags2symbols() 267 strcat(Open_symbols, sep); in openflags2symbols() 269 strcat(Open_symbols, Open_flags[ind].symbol); in openflags2symbols() 283 strcat(Open_symbols, sep); in openflags2symbols() 284 strcat(Open_symbols, UNKNOWN_SYMBOL); in openflags2symbols()
|
/external/toybox/toys/pending/ |
D | wget.c | 111 strcat(toybuf, name); in mk_fld() 112 strcat(toybuf, ": "); in mk_fld() 113 strcat(toybuf, value); in mk_fld() 114 strcat(toybuf, "\r\n"); in mk_fld() 149 strcat(ua, ver); in wget_main() 152 strcat(toybuf, "\r\n"); in wget_main()
|
/external/ltp/lib/ |
D | tst_mkfs.c | 61 strcat(fs_opts_str, " "); in tst_mkfs_() 62 strcat(fs_opts_str, fs_opts[i]); in tst_mkfs_() 79 strcat(extra_opts_str, " "); in tst_mkfs_() 80 strcat(extra_opts_str, extra_opts[i]); in tst_mkfs_()
|
/external/clang/test/Analysis/ |
D | string.c | 354 #define strcat(a,b) __strcat_chk(a,b,(size_t)-1) macro 358 #define strcat BUILTIN(strcat) macro 359 char *strcat(char *restrict s1, const char *restrict s2); 365 strcat(NULL, x); // expected-warning{{Null pointer argument in call to string copy function}} in strcat_null_dst() 369 strcat(x, NULL); // expected-warning{{Null pointer argument in call to string copy function}} in strcat_null_src() 373 …strcat(x, (char*)&strcat_fn); // expected-warning{{Argument to string copy function is the address… in strcat_fn() 384 clang_analyzer_eval(strcat(x, y) == x); // expected-warning{{TRUE}} in strcat_effects() 391 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} in strcat_overflow_0() 397 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} in strcat_overflow_1() 403 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} in strcat_overflow_2() [all …]
|
/external/selinux/libsemanage/src/ |
D | seusers_local.c | 45 strcat(roles,","); in semanage_user_roles() 46 strcat(roles,roles_arr[i]); in semanage_user_roles() 88 strcat(msg,sep); in semanage_seuser_audit() 89 strcat(msg,"sename"); in semanage_seuser_audit() 93 strcat(msg,sep); in semanage_seuser_audit() 94 strcat(msg,"role"); in semanage_seuser_audit() 98 strcat(msg,sep); in semanage_seuser_audit() 99 strcat(msg,"range"); in semanage_seuser_audit()
|
/external/python/cpython2/Modules/ |
D | getpath.c | 147 strcat(filename, Py_OptimizeFlag ? "o" : "c"); in ismodule() 590 strcat(buf, delimiter); in calculate_path() 597 strcat(buf, zip_path); in calculate_path() 598 strcat(buf, delimiter); in calculate_path() 609 strcat(buf, prefix); in calculate_path() 612 strcat(buf, separator); in calculate_path() 623 strcat(buf, defpath); in calculate_path() 629 strcat(buf, delimiter); in calculate_path() 632 strcat(buf, exec_prefix); in calculate_path()
|