/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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/ |
D | RISCVInstrFormatsC.td | 14 class RVInst16<dag outs, dag ins, string opcodestr, string argstr, 31 let AsmString = opcodestr # "\t" # argstr; 38 string opcodestr, string argstr> 39 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCR> { 53 string opcodestr, string argstr> 54 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCI> { 69 string opcodestr, string argstr> 70 : RVInst16<outs, ins, opcodestr, argstr, [], InstFormatCSS> { 81 string opcodestr, string argstr> 82 : 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> { 116 dag ins, string opcodestr, string argstr> 117 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 131 string opcodestr, string argstr> 132 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR4> { 150 string argstr> 151 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { [all …]
|
/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 | 206 char argstr[MAX_ARG_LEN]; /* human readable argument string /w assumtions */ member
|
D | childmain.c | 508 args->argstr); in miscompare_dump()
|
/external/u-boot/common/ |
D | hwconfig.c | 161 const char *argstr; in hwconfig_arg_cmp_f() local 164 argstr = hwconfig_arg_f(opt, &arglen, buf); in hwconfig_arg_cmp_f() 165 if (!argstr || arglen != strlen(arg)) in hwconfig_arg_cmp_f() 168 return !strncmp(argstr, arg, arglen); in hwconfig_arg_cmp_f() 229 const char *argstr; in hwconfig_subarg_cmp_f() local 232 argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf); in hwconfig_subarg_cmp_f() 233 if (!argstr || arglen != strlen(subarg)) in hwconfig_subarg_cmp_f() 236 return !strncmp(argstr, subarg, arglen); in hwconfig_subarg_cmp_f()
|
/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/cpython3/Parser/ |
D | asdl_c.py | 265 argstr = ", ".join(["%s %s" % (atype, aname) 267 argstr += ", PyArena *arena" 269 argstr = "PyArena *arena" 275 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False) 290 argstr = ", ".join(["%s %s" % (atype, aname) 292 if argstr: 293 argstr += ", PyArena *arena" 295 argstr = "PyArena *arena" 297 emit("%s(%s)" % (name, argstr))
|
/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/autotest/client/common_lib/cros/ |
D | dev_server.py | 648 argstr = '&'.join(map(lambda x: "%s=%s" % x, kwargs.iteritems())) 650 host=host, method=method, argstr=argstr)
|