| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | RegisterFile.cpp | 29 Write(WS) {} in WriteRef() 108 if (WS.isEliminated()) in onInstructionExecuted() 127 if (WR.getWriteState() == &WS) in onInstructionExecuted() 136 if (!WS.clearsSuperRegisters()) in onInstructionExecuted() 283 WS.clearsSuperRegisters() ? RegID : WS.getRegisterID(); in addRegisterWrite() 306 if (!WS.clearsSuperRegisters()) in addRegisterWrite() 323 if (WS.isEliminated()) in removeRegisterWrite() 352 if (WR.getWriteState() == &WS) in removeRegisterWrite() 361 if (!WS.clearsSuperRegisters()) in removeRegisterWrite() 466 WS.setWriteZero(); in tryEliminateMoveOrSwap() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 425 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) { in executePostLayoutBinding() 1306 if (WS.isTag()) in prepareImports() 1313 if (!WS.isDefined() && !WS.isComdat()) { in prepareImports() 1324 if (WS.isWeak()) in prepareImports() 1336 if (WS.isWeak()) in prepareImports() 1349 if (WS.isWeak()) in prepareImports() 1527 if (WS.isComdat() && !WS.isDefined()) in writeOneObject() 1732 if (WS.isWeak()) in writeOneObject() 1734 if (WS.isHidden()) in writeOneObject() 1736 if (!WS.isExternal() && WS.isDefined()) in writeOneObject() [all …]
|
| /freebsd-13.1/usr.sbin/mailwrapper/ |
| H A D | mailwrapper.c | 133 #define WS " \t\n" in main() macro 136 cp += strspn(cp, WS); in main() 143 if ((from = strsep(&cp, WS)) == NULL || cp == NULL) in main() 146 cp += strspn(cp, WS); in main() 148 if ((to = strsep(&cp, WS)) == NULL) in main() 152 for (ap = strsep(&cp, WS); ap != NULL; in main() 153 ap = strsep(&cp, WS)) { in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/ |
| H A D | Reader.cpp | 24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create() local 26 {static_cast<uint8_t>(WS.Type), WS.Name, WS.Content}); in create()
|
| /freebsd-13.1/contrib/netbsd-tests/lib/libc/stdlib/ |
| H A D | h_getopt.c | 45 #define WS "\t\n " macro 63 optstring = strtok(&line[6], WS); in main() 75 args[nargs = 0] = strtok(&line[6], WS); in main() 81 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main() 94 result = strtok(&line[8], WS); in main()
|
| H A D | h_getopt_long.c | 48 #define WS "\t\n " macro 69 optstring = strtok(&line[11], WS); in main() 85 ptr = strtok(&line[10], WS); in main() 160 args[nargs = 0] = strtok(&line[6], WS); in main() 165 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main() 173 result = strtok(&line[8], WS); in main()
|
| /freebsd-13.1/crypto/openssl/crypto/conf/ |
| H A D | keysets.pl | 17 my $WS = 0x0010; 37 $v |= $WS if $c =~ /[ \t\r\n]/; 50 $v |= $WS if $c =~ /[ \t\r\n]/; 77 #define CONF_WS $WS
|
| /freebsd-13.1/contrib/flex/src/ |
| H A D | scan.l | 137 WS [[:blank:]]+ 170 ^{WS} START_CODEBLOCK(true); 172 ^#{OPTWS}line{WS} yy_push_state( LINEDIR ); 186 {WS} /* discard */ 203 ^"%"{LEXOPT}{WS}.*{NL} ++linenum; /* ignore */ 489 ^{WS} START_CODEBLOCK(true); /* indented code in prolog */ 541 {WS}"%{" { 552 {WS}"|".*{NL} { 567 ^{WS}"/*" { 581 ^{WS} /* allow indented rules */ ; [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | WasmAsmParser.cpp | 183 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective() local 186 if (WS->getSegmentFlags() != Flags) in parseSectionDirective() 189 utohexstr(WS->getSegmentFlags())); in parseSectionDirective() 192 if (!WS->isWasmData()) in parseSectionDirective() 194 WS->setPassive(); in parseSectionDirective() 197 getStreamer().SwitchSection(WS); in parseSectionDirective()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/Stages/ |
| H A D | InOrderIssueStage.cpp | 89 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findFirstWriteBackCycle() local 90 int CyclesLeft = WS.getCyclesLeft(); in findFirstWriteBackCycle() 92 CyclesLeft = WS.getLatency(); in findFirstWriteBackCycle() 157 for (WriteState &WS : IS.getDefs()) in addRegisterReadWrite() 158 PRF.addRegisterWrite(WriteRef(SourceIndex, &WS), UsedRegs); in addRegisterReadWrite() 324 for (const WriteState &WS : IS.getDefs()) in retireInstruction() local 325 PRF.removeRegisterWrite(WS, FreedRegs); in retireInstruction()
|
| H A D | RetireStage.cpp | 69 for (const WriteState &WS : Inst.getDefs()) in notifyInstructionRetired() local 70 PRF.removeRegisterWrite(WS, FreedRegs); in notifyInstructionRetired()
|
| H A D | DispatchStage.cpp | 120 for (WriteState &WS : IS.getDefs()) in dispatch() 121 PRF.addRegisterWrite(WriteRef(IR.getSourceIndex(), &WS), RegisterFiles); in dispatch()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Instruction.cpp | 136 for (const WriteState &WS : getDefs()) { in computeCriticalRegDep() local 137 const CriticalDependency &WriteCRD = WS.getCriticalRegDep(); in computeCriticalRegDep() 168 for (WriteState &WS : getDefs()) in execute() 169 WS.onInstructionIssued(IID); in execute()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | RegisterFile.h | 51 WriteRef(unsigned SourceIndex, WriteState *WS); 264 void removeRegisterWrite(const WriteState &WS, 269 bool canEliminateMove(const WriteState &WS, const ReadState &RS,
|
| /freebsd-13.1/contrib/netbsd-tests/lib/libpthread/ |
| H A D | h_resolv.c | 48 #define WS " \t\n\r" macro 85 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS)) in load()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | RegisterFileStatistics.cpp | 67 const WriteState &WS = Inst.getDefs()[I]; in updateMoveElimInfo() local 73 if (WS.isEliminated()) in updateMoveElimInfo() 75 if (WS.isWriteZero() && RS.isReadZero()) in updateMoveElimInfo()
|
| /freebsd-13.1/contrib/nvi/common/ |
| H A D | multibyte.h | 61 #define WS "%ls" macro 95 #define WS "%s" macro
|
| H A D | options.c | 958 "%s"WS, O_ISSET(sp, offset) ? "" : "no", op->name); in opts_print() 961 curlen += ex_printf(sp, WS"=%ld", op->name, O_VAL(sp, offset)); in opts_print() 964 curlen += ex_printf(sp, WS"=\"", op->name); in opts_print() 998 (void)fprintf(fp, "set "WS"\n", op->name); in opts_save() 1000 (void)fprintf(fp, "set no"WS"\n", op->name); in opts_save() 1004 "set "WS"=%-3ld\n", op->name, O_VAL(sp, cnt)); in opts_save()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Host.cpp | 669 void llvm::format_provider<WaitStatus>::format(const WaitStatus &WS, in format() argument 674 switch (WS.type) { in format() 685 OS << formatv("{0}{1:x-2}", type, WS.status); in format() 691 switch(WS.type) { in format() 702 OS << desc << " " << int(WS.status); in format()
|
| /freebsd-13.1/lib/libc/tests/resolv/ |
| H A D | resolv_test.c | 52 #define WS " \t\n\r" macro 89 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS)) { in load()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LexicalScopes.cpp | 243 LexicalScope *WS = ScopePosition.first; in constructScopeNest() local 245 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); in constructScopeNest() 252 WS->setDFSOut(++Counter); in constructScopeNest()
|
| /freebsd-13.1/contrib/file/magic/Magdir/ |
| H A D | puzzle | 9 # "Universal" or "WS Journal" links on the right side of
|
| H A D | flash | 48 1 string WS
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 774 auto WS = cast<MCSectionWasm>(getStreamer().getCurrentSection().first); in CheckDataSection() local 775 if (WS && WS->getKind().isText()) in CheckDataSection() 1106 auto *WS = in doBeforeLabelEmit() local 1109 getStreamer().SwitchSection(WS); in doBeforeLabelEmit() 1112 getContext().addGenDwarfSection(WS); in doBeforeLabelEmit()
|
| /freebsd-13.1/contrib/nvi/ex/ |
| H A D | ex_bang.c | 86 (void)ex_printf(sp, "!"WS"\n", ap->bp); in ex_bang()
|