Home
last modified time | relevance | path

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

/third_party/popt/src/
Dpoptparse.c135 char * argstr; in poptConfigFileToString() local
154 argstr = calloc(maxargvlen, sizeof(*argstr)); in poptConfigFileToString()
155 if (argstr == NULL) return POPT_ERROR_MALLOC; in poptConfigFileToString()
166 free(argstr); in poptConfigFileToString()
189 argstr = realloc(argstr, maxargvlen); in poptConfigFileToString()
190 if (argstr == NULL) return POPT_ERROR_MALLOC; in poptConfigFileToString()
192 strcat(argstr, " --"); in poptConfigFileToString()
193 strcat(argstr, p); in poptConfigFileToString()
218 argstr = realloc(argstr, maxargvlen); in poptConfigFileToString()
219 if (argstr == NULL) return POPT_ERROR_MALLOC; in poptConfigFileToString()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrFormatsC.td13 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 …]
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>,
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 …]
/third_party/python/Parser/
Dasdl_c.py325 argstr = ", ".join(["%s %s" % (atype, aname)
327 argstr += ", PyArena *arena"
329 argstr = "PyArena *arena"
330 self.emit("%s %s(%s);" % (ctype, ast_func_name(name), argstr), False)
345 argstr = ", ".join(["%s %s" % (atype, aname)
347 if argstr:
348 argstr += ", PyArena *arena"
350 argstr = "PyArena *arena"
352 emit("%s(%s)" % (ast_func_name(name), argstr))
/third_party/musl/Benchmark/musl/
Dbenchmark_framework.cpp184 std::string argstr; in ResolveArgs() local
185 while (sstream >> argstr) { in ResolveArgs()
187 int converted = static_cast<int>(strtol(argstr.c_str(), &errorCheck, 10)); in ResolveArgs()