Home
last modified time | relevance | path

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

/external/curl/tests/
Dobjnames-test10.sh84 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 …]
Dobjnames-test08.sh84 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 …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/
DRISCVInstrFormatsC.td14 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 …]
DRISCVInstrFormats.td79 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/
Dparse.c814 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 …]
Dmain.c321 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()
Dmain.h206 char argstr[MAX_ARG_LEN]; /* human readable argument string /w assumtions */ member
Dchildmain.c508 args->argstr); in miscompare_dump()
/external/u-boot/common/
Dhwconfig.c161 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/
Dxstring.h25 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/
Dasdl_c.py265 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/
Dasdl_c.py261 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/
Ddev_server.py648 argstr = '&'.join(map(lambda x: "%s=%s" % x, kwargs.iteritems()))
650 host=host, method=method, argstr=argstr)