/external/curl/tests/ |
D | objnames-test08.sh | 84 argstr=123__678__ABC__FGH__KLM__PQRSTUV 86 outstr=`curl_8char_object_name $argstr` 87 echo "result: $outstr expected: $expect input: $argstr" 89 argstr=123__678__ABC__FGH__KLM__PQ.S.UV 91 outstr=`curl_8char_object_name $argstr` 92 echo "result: $outstr expected: $expect input: $argstr" 94 argstr=123__678__ABC..FGH..KLM..PQRSTUV 96 outstr=`curl_8char_object_name $argstr` 97 echo "result: $outstr expected: $expect input: $argstr" 99 argstr=123__678_.ABC._FGH__KLM__PQRSTUV [all …]
|
D | objnames-test10.sh | 84 argstr=123__678__ABC__FGH__KLM__PQRSTUV 86 outstr=`curl_10char_object_name $argstr` 87 echo "result: $outstr expected: $expect input: $argstr" 89 argstr=123__678__ABC__FGH__KLM__PQ.S.UV 91 outstr=`curl_10char_object_name $argstr` 92 echo "result: $outstr expected: $expect input: $argstr" 94 argstr=123__678__ABC..FGH..KLM..PQRSTUV 96 outstr=`curl_10char_object_name $argstr` 97 echo "result: $outstr expected: $expect input: $argstr" 99 argstr=123__678_.ABC._FGH__KLM__PQRSTUV [all …]
|
/external/llvm-project/llvm/lib/Target/RISCV/ |
D | RISCVInstrFormatsC.td | 13 class RVInst16<dag outs, dag ins, string opcodestr, string argstr, 30 let AsmString = opcodestr # "\t" # argstr; 37 string opcodestr, string argstr> 38 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCR> { 52 string opcodestr, string argstr> 53 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCI> { 68 string opcodestr, string argstr> 69 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCSS> { 80 string opcodestr, string argstr> 81 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCIW> { [all …]
|
D | RISCVInstrFormatsV.td | 70 class RVInstSetVLi<dag outs, dag ins, string opcodestr, string argstr> 71 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatI> { 86 class RVInstSetVL<dag outs, dag ins, string opcodestr, string argstr> 87 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 104 string opcodestr, string argstr> 105 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 124 string opcodestr, string argstr> 125 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 144 string opcodestr, string argstr> 145 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { [all …]
|
D | RISCVInstrFormats.td | 115 class RVInst<dag outs, dag ins, string opcodestr, string argstr, 134 let AsmString = opcodestr # "\t" # argstr; 145 class Pseudo<dag outs, dag ins, list<dag> pattern, string opcodestr = "", string argstr = ""> 146 : RVInst<outs, ins, opcodestr, argstr, pattern, InstFormatPseudo>, 186 dag ins, string opcodestr, string argstr> 187 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 201 string opcodestr, string argstr> 202 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR4> { 220 string argstr> 221 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { [all …]
|
D | RISCVInstrInfoB.td | 160 string opcodestr, string argstr> 162 (ins GPR:$rs1, GPR:$rs2, GPR:$rs3), opcodestr, argstr> { 169 string opcodestr, string argstr> 172 opcodestr, argstr> { 188 string opcodestr, string argstr> 190 (ins GPR:$rs1, GPR:$rs3, uimm5:$shamt), opcodestr, argstr> {
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
D | RISCVInstrFormatsC.td | 13 class RVInst16<dag outs, dag ins, string opcodestr, string argstr, 30 let AsmString = opcodestr # "\t" # argstr; 37 string opcodestr, string argstr> 38 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCR> { 52 string opcodestr, string argstr> 53 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCI> { 68 string opcodestr, string argstr> 69 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCSS> { 80 string opcodestr, string argstr> 81 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCIW> { [all …]
|
D | RISCVInstrFormats.td | 79 class RVInst<dag outs, dag ins, string opcodestr, string argstr, 98 let AsmString = opcodestr # "\t" # argstr; 105 class Pseudo<dag outs, dag ins, list<dag> pattern, string opcodestr = "", string argstr = ""> 106 : RVInst<outs, ins, opcodestr, argstr, pattern, InstFormatPseudo>, 146 dag ins, string opcodestr, string argstr> 147 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 161 string opcodestr, string argstr> 162 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR4> { 180 string argstr> 181 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { [all …]
|
/external/libusb/tests/ |
D | testlib.c | 93 const char *argstr = argv[j]; in libusb_testlib_run_tests() local 94 size_t arglen = strlen(argstr); in libusb_testlib_run_tests() 96 if (argstr[0] == '-' || argstr[0] == '/') { in libusb_testlib_run_tests() 98 switch (argstr[1]) { in libusb_testlib_run_tests() 111 fprintf(stderr, "Unknown option: '%s'\n", argstr); in libusb_testlib_run_tests()
|
/external/ltp/testcases/kernel/io/disktest/ |
D | parse.c | 814 strncat(args->argstr, "(-I f) ", in make_assumptions() 816 strlen(args->argstr)); in make_assumptions() 819 strncat(args->argstr, "(-I b) ", in make_assumptions() 821 strlen(args->argstr)); in make_assumptions() 825 strncat(args->argstr, "(-I r) ", in make_assumptions() 827 strlen(args->argstr)); in make_assumptions() 835 strncat(args->argstr, "(-I f) ", in make_assumptions() 836 (MAX_ARG_LEN - 1) - strlen(args->argstr)); in make_assumptions() 848 strncat(args->argstr, TmpStr, in make_assumptions() 849 (MAX_ARG_LEN - 1) - strlen(args->argstr)); in make_assumptions() [all …]
|
D | main.c | 321 pMsg(START, test->args, "Start args: %s\n", test->args->argstr); in threadedMain() 579 strncat(cleanArgs.argstr, argv[i], in main() 580 (MAX_ARG_LEN - 1) - strlen(cleanArgs.argstr)); in main() 581 strncat(cleanArgs.argstr, " ", in main() 582 (MAX_ARG_LEN - 1) - strlen(cleanArgs.argstr)); in main()
|
D | main.h | 207 char argstr[MAX_ARG_LEN]; /* human readable argument string /w assumtions */ member
|
D | childmain.c | 508 args->argstr); in miscompare_dump()
|
/external/strace/ |
D | xstring.h | 25 xsnprintf_(char *str, size_t size, const char *func, const char *argstr, in xsnprintf_() argument 38 func, ret, size, argstr); in xsnprintf_()
|
/external/python/cpython2/Parser/ |
D | asdl_c.py | 261 argstr = ", ".join(["%s %s" % (atype, aname) 263 argstr += ", PyArena *arena" 265 argstr = "PyArena *arena" 271 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False) 284 argstr = ", ".join(["%s %s" % (atype, aname) 286 if argstr: 287 argstr += ", PyArena *arena" 289 argstr = "PyArena *arena" 291 emit("%s(%s)" % (name, argstr))
|
/external/python/cpython3/Parser/ |
D | asdl_c.py | 292 argstr = ", ".join(["%s %s" % (atype, aname) 294 argstr += ", PyArena *arena" 296 argstr = "PyArena *arena" 302 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False) 317 argstr = ", ".join(["%s %s" % (atype, aname) 319 if argstr: 320 argstr += ", PyArena *arena" 322 argstr = "PyArena *arena" 324 emit("%s(%s)" % (name, argstr))
|
/external/autotest/client/common_lib/cros/ |
D | dev_server.py | 570 argstr = '&'.join(["%s=%s" % x for x in six.iteritems(kwargs)]) 572 host=host, method=method, argstr=argstr)
|