Searched refs:argstr (Results 1 – 6 of 6) sorted by relevance
/third_party/popt/src/ |
D | poptparse.c | 135 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/ |
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 …]
|
/third_party/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()
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | gendynapi.pl | 85 my $argstr = '('; 113 $argstr .= ','; 117 $argstr .= "$name"; 125 $argstr .= ')'; 128 print SDL_DYNAPI_PROCS_H "SDL_DYNAPI_PROC($rc,$fn,$paramstr,$argstr,$retstr)\n";
|
/third_party/python/Parser/ |
D | asdl_c.py | 325 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))
|