| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrFormatsC.td | 26 string opcodestr, string argstr> 41 string opcodestr, string argstr> 239 let AsmString = ".insn cr " # argstr; 256 let AsmString = ".insn ci " # argstr; 272 let AsmString = ".insn ciw " # argstr; 288 let AsmString = ".insn css " # argstr; 307 let AsmString = ".insn cl " # argstr; 326 let AsmString = ".insn cs " # argstr; 344 let AsmString = ".insn ca " # argstr; 364 let AsmString = ".insn cb " # argstr; [all …]
|
| H A D | RISCVInstrFormatsV.td | 58 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatI> { 75 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatI> { 91 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 108 string opcodestr, string argstr> 109 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 128 string opcodestr, string argstr> 148 string opcodestr, string argstr> 167 string argstr> 187 dag ins, string opcodestr, string argstr> 207 string argstr> [all …]
|
| H A D | RISCVInstrFormats.td | 165 let AsmString = opcodestr # !if(!empty(argstr), "", "\t" # argstr); 308 string argstr> 446 string argstr> 457 string argstr> 491 let AsmString = ".insn r " # argstr; 513 let AsmString = ".insn r4 " # argstr; 531 let AsmString = ".insn i " # argstr; 550 let AsmString = ".insn s " # argstr; 571 let AsmString = ".insn b " # argstr; 585 let AsmString = ".insn u " # argstr; [all …]
|
| H A D | RISCVInstrInfoZimop.td | 17 dag outs, dag ins, string opcodestr, string argstr> 18 : RVInstIBase<funct3, opcode, outs, ins, opcodestr, argstr> { 28 dag outs, dag ins, string opcodestr, string argstr> 29 : RVInstRBase<funct3, opcode, outs, ins, opcodestr, argstr> {
|
| H A D | RISCVInstrInfoXCV.td | 15 string opcodestr, string argstr> 16 : RVInstIBase<funct3, OPC_CUSTOM_2, outs, ins, opcodestr, argstr> { 282 dag ins, string opcodestr, string argstr> 283 : RVInstRBase<funct3, opcode, outs, ins, opcodestr, argstr> { 292 : RVInstIBase<funct3, opcode, outs, ins, opcodestr, argstr> { 491 string opcodestr, string argstr> 492 : RVInstB<funct3, OPC_CUSTOM_0, outs, ins, opcodestr, argstr> { 586 string opcodestr, string argstr> 587 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatOther> { 603 string opcodestr, string argstr> [all …]
|
| H A D | RISCVInstrInfoXSf.td | 59 string opcodestr, string argstr> 60 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> { 81 string opcodestr, string argstr> 82 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> {
|
| H A D | RISCVInstrInfoXTHead.td | 42 string opcodestr, string argstr> 43 : RVInstVV<funct6, opv, outs, ins, opcodestr, argstr> { 50 string opcodestr, string argstr> 51 : RVInstVX<funct6, opv, outs, ins, opcodestr, argstr> {
|
| H A D | RISCVInstrInfoZvk.td | 45 string argstr> 46 : RVInst<outs, ins, opcodestr, argstr, [], InstFormatR> {
|
| /freebsd-14.2/stand/lua/ |
| H A D | cli.lua | 62 local argstr = "" 68 argstr = argstr .. " " .. v 72 return kernel_name, argstr 74 return argstr 122 local kernel, argstr = parseBootArgs(argv) 127 core.boot(argstr) 132 local argstr = parseBootArgs(argv, false) 133 core.autoboot(argstr) 138 local kernel, argstr = parseBootArgs(argv) 143 core.autoboot(argstr)
|
| H A D | core.lua | 42 local function composeLoaderCmd(cmd_name, argstr) 43 if argstr ~= nil then 44 cmd_name = cmd_name .. " " .. argstr 385 function core.autoboot(argstr) 391 loader.perform(composeLoaderCmd("autoboot", argstr)) 394 function core.boot(argstr) 400 loader.perform(composeLoaderCmd("boot", argstr))
|
| /freebsd-14.2/contrib/netbsd-tests/lib/libutil/ |
| H A D | t_parsedate.c | 63 char argstr[128]; in parsecheck() local 71 snprintf(argstr, sizeof(argstr), "%s%s%s, %s%.*jd, %s%.*d", in parsecheck() 86 "parsedate(%s) returned -1\n", argstr); in parsecheck() 91 argstr, year, (int)tm.tm_year); in parsecheck() 95 argstr, month, (int)tm.tm_mon); in parsecheck() 99 argstr, day, (int)tm.tm_mday); in parsecheck() 103 argstr, hour, (int)tm.tm_hour); in parsecheck() 107 argstr, minute, (int)tm.tm_min); in parsecheck() 111 argstr, second, (int)tm.tm_sec); in parsecheck()
|
| /freebsd-14.2/usr.bin/nl/ |
| H A D | nl.c | 361 parse_numbering(const char *argstr, int section) in parse_numbering() argument 366 switch (argstr[0]) { in parse_numbering() 385 &argstr[1], REG_NEWLINE|REG_NOSUB)) != 0) { in parse_numbering() 392 &argstr[1]); in parse_numbering() 398 numbering_properties[section].name, argstr); in parse_numbering()
|
| /freebsd-14.2/lib/libc/tests/stdio/ |
| H A D | printbasic_test.c | 67 _testfmt(const char *result, const char *argstr, const char *fmt,...) in _testfmt() argument 80 fmt, argstr, s, result); in _testfmt() 89 wfmt, argstr, ws, wresult); in _testfmt()
|
| H A D | printfloat_test.c | 59 _testfmt(const char *result, const char *argstr, const char *fmt,...) in _testfmt() argument 72 fmt, argstr, s, result); in _testfmt() 81 wfmt, argstr, ws, wresult); in _testfmt()
|
| /freebsd-14.2/bin/sh/ |
| H A D | expand.c | 91 static const char *argstr(const char *, struct nodelist **restrict, int, 239 argstr(arg->narg.text, &argbackq, flag, &exparg); in expandarg() 271 argstr(const char *p, struct nodelist **restrict argbackq, int flag, in argstr() function 425 p = argstr(p, argbackq, 0, NULL); in expari() 556 p = argstr(p, argbackq, EXP_CASE | EXP_TILDE, NULL); in subevalvar_trim() 628 end = argstr(p, argbackq, EXP_TILDE, NULL); in subevalvar_misc() 763 return argstr(p, argbackq, in evalvar() 1450 argstr(pattern->narg.text, &argbackq, EXP_TILDE | EXP_CASE, NULL); in casematch()
|
| H A D | TOUR | 216 EXPAND.C: As the routine argstr generates words by parameter
|
| /freebsd-14.2/contrib/kyua/engine/ |
| H A D | atf_result.cpp | 199 const std::string argstr = rest.substr(delim + 1, delim2 - delim - 1); in parse_with_reason_and_arg() local 200 arg = parse_int(argstr); in parse_with_reason_and_arg() 204 argstr % status); in parse_with_reason_and_arg()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | SMEInstrFormats.td | 462 string mnemonic, string argstr> 463 : I<outs, ins, mnemonic, argstr, "", []>, Sched<[]> { 639 string mnemonic, string argstr> 640 : I<(outs), ins, mnemonic, argstr, "", []>, Sched<[]> { 832 string mnemonic, string argstr> 833 : I<outs, ins, mnemonic, argstr, "", []>, Sched<[]> { 1022 string mnemonic, string argstr> 1023 : I<outs, ins, mnemonic, argstr, "", []>, Sched<[]> {
|