| /src/external/historical/nawk/dist/bugs-fixed/ |
| rs_underflow.awk | 1 BEGIN { RS="zx" } { print $1 }
|
| numeric-rs.awk | 2 RS = 1;
|
| unicode-fs-rs-1.awk | 3 RS="␞"
|
| unicode-fs-rs-2.awk | 3 RS = "בב"
|
| /src/tests/compat/linux/ |
| h_inotify_watch_change.c | 47 RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644)); 48 RS(close(targetfd)); 50 RS(fd = syscall(LINUX_SYS_inotify_init)); 51 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 55 RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644)); 56 RS(close(targetfd)); 58 RS(nread = read(fd, events, sizeof(events))); 63 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 67 RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644)); 68 RS(close(targetfd)) [all...] |
| h_inotify_single_file.c | 51 RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644)); 52 RS(close(targetfd)); 54 RS(fd = syscall(LINUX_SYS_inotify_init)); 55 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 59 RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644)); 60 RS(write(targetfd, &buf, sizeof(buf))); 61 RS(read(targetfd, &buf, sizeof(buf))); 62 RS(close(targetfd)); 63 RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644)); 64 RS(close(targetfd)) [all...] |
| h_inotify_init.c | 47 RS(fd = syscall(LINUX_SYS_inotify_init)); 50 RS(close(fd)); 53 RS(fd = syscall(LINUX_SYS_inotify_init1, LINUX_IN_NONBLOCK)); 56 RS(close(fd)); 59 RS(fd = syscall(LINUX_SYS_inotify_init1, LINUX_IN_CLOEXEC)); 62 RS(close(fd));
|
| h_inotify_directory.c | 69 RS(mkdir("test", 0644)); 71 RS(fd = syscall(LINUX_SYS_inotify_init)); 72 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 76 RS(targetfd = open("test/test", LINUX_O_RDWR|LINUX_O_CREAT, 0644)); 77 RS(write(targetfd, &targetfd, sizeof(targetfd))); 78 RS(close(targetfd)); 79 RS(rename("test/test", "test/test2")); 80 RS(unlink("test/test2")); 81 RS(rename("test", "test2")); 82 RS(rmdir("test2")) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/ |
| RandomIRBuilder.cpp | 33 auto RS = makeSampler(Rand, make_filter_range(Insts, MatchesPred)); 35 RS.sample(nullptr, /*Weight=*/1); 36 if (Instruction *Src = RS.getSelection()) 44 auto RS = makeSampler<Value *>(Rand); 45 RS.sample(Pred.generate(Srcs, KnownTypes)); 61 RS.sample(NewLoad, RS.totalWeight()); 66 assert(!RS.isEmpty() && "Failed to generate sources"); 67 return RS.getSelection(); 97 auto RS = makeSampler<Use *>(Rand) [all...] |
| IRMutator.cpp | 39 auto RS = makeSampler<Function *>(IB.Rand); 42 RS.sample(&F, /*Weight=*/1); 43 mutate(*RS.getSelection(), IB); 61 auto RS = makeSampler<IRMutationStrategy *>(IB.Rand); 63 RS.sample(Strategy.get(), 64 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); 65 auto Strategy = RS.getSelection(); 100 auto RS = makeSampler(IB.Rand, make_filter_range(Operations, OpMatchesPred)); 101 if (RS.isEmpty()) 103 return *RS; [all...] |
| /src/sys/arch/ia64/include/ |
| efilib.h | 34 extern EFI_RUNTIME_SERVICES *RS;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BPFFrameLowering.cpp | 33 RegScavenger *RS) const { 34 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
|
| BPFRegisterInfo.h | 33 RegScavenger *RS = nullptr) const override;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LLVMRemarkStreamer.h | 28 remarks::RemarkStreamer &RS; 35 LLVMRemarkStreamer(remarks::RemarkStreamer &RS) : RS(RS) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/ |
| ResourceManager.cpp | 105 getStrategyFor(const ResourceState &RS) { 106 if (RS.isAResourceGroup() || RS.getNumUnits() > 1) 107 return std::make_unique<DefaultResourceStrategy>(RS.getReadyMask()); 138 const ResourceState &RS = *Resources[Index]; 139 if (!RS.isAResourceGroup()) { 180 ResourceState &RS = *Resources[Index]; 181 assert(RS.isReady() && "No available units to select!"); 183 // Special case where RS is not a group, and it only declares a single 185 if (!RS.isAResourceGroup() && RS.getNumUnits() == 1 [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/ |
| Random.h | 76 ReservoirSampler<ElT, GenT> RS(RandGen); 77 RS.sample(Items); 78 return RS; 84 ReservoirSampler<T, GenT> RS(RandGen); 85 RS.sample(Item, Weight); 86 return RS;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFCompileUnit.h | 21 const DWARFSection *RS, const DWARFSection *LocSection, 25 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
|
| DWARFTypeUnit.h | 29 const DWARFSection *RS, const DWARFSection *LocSection, 33 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| MSP430RegisterInfo.h | 37 RegScavenger *RS = nullptr) const override;
|
| /src/external/bsd/ntp/dist/include/ |
| ascii.h | 73 #define RS 30
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| iq2000-opc.c | 240 /* add ${rd-rs},$rt */ 246 /* add $rd,$rs,$rt */ 249 { { MNEM, ' ', OP (RD), ',', OP (RS), ',', OP (RT), 0 } }, 252 /* addi ${rt-rs},$lo16 */ 258 /* addi $rt,$rs,$lo16 */ 261 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 264 /* addiu ${rt-rs},$lo16 */ 270 /* addiu $rt,$rs,$lo16 */ 273 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 276 /* addu ${rd-rs},$rt * [all...] |
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| iq2000-opc.c | 240 /* add ${rd-rs},$rt */ 246 /* add $rd,$rs,$rt */ 249 { { MNEM, ' ', OP (RD), ',', OP (RS), ',', OP (RT), 0 } }, 252 /* addi ${rt-rs},$lo16 */ 258 /* addi $rt,$rs,$lo16 */ 261 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 264 /* addiu ${rt-rs},$lo16 */ 270 /* addiu $rt,$rs,$lo16 */ 273 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 276 /* addu ${rd-rs},$rt * [all...] |
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| iq2000-opc.c | 240 /* add ${rd-rs},$rt */ 246 /* add $rd,$rs,$rt */ 249 { { MNEM, ' ', OP (RD), ',', OP (RS), ',', OP (RT), 0 } }, 252 /* addi ${rt-rs},$lo16 */ 258 /* addi $rt,$rs,$lo16 */ 261 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 264 /* addiu ${rt-rs},$lo16 */ 270 /* addiu $rt,$rs,$lo16 */ 273 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 276 /* addu ${rd-rs},$rt * [all...] |
| /src/external/gpl3/gdb/dist/opcodes/ |
| iq2000-opc.c | 240 /* add ${rd-rs},$rt */ 246 /* add $rd,$rs,$rt */ 249 { { MNEM, ' ', OP (RD), ',', OP (RS), ',', OP (RT), 0 } }, 252 /* addi ${rt-rs},$lo16 */ 258 /* addi $rt,$rs,$lo16 */ 261 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 264 /* addiu ${rt-rs},$lo16 */ 270 /* addiu $rt,$rs,$lo16 */ 273 { { MNEM, ' ', OP (RT), ',', OP (RS), ',', OP (LO16), 0 } }, 276 /* addu ${rd-rs},$rt * [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| ReturnPointerRangeChecker.cpp | 31 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const; 35 void ReturnPointerRangeChecker::checkPreStmt(const ReturnStmt *RS, 39 const Expr *RetE = RS->getRetValue();
|