/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | RegisterFile.cpp | 27 WriteRef::WriteRef(unsigned SourceIndex, WriteState *WS) in WriteRef() argument 29 Write(WS) {} in WriteRef() 107 for (WriteState &WS : IS->getDefs()) { in onInstructionExecuted() 108 if (WS.isEliminated()) in onInstructionExecuted() 111 MCPhysReg RegID = WS.getRegisterID(); in onInstructionExecuted() 118 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in onInstructionExecuted() 120 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in onInstructionExecuted() 127 if (WR.getWriteState() == &WS) in onInstructionExecuted() 132 if (OtherWR.getWriteState() == &WS) in onInstructionExecuted() 136 if (!WS.clearsSuperRegisters()) in onInstructionExecuted() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | WasmObjectWriter.cpp | 468 const auto &WS = static_cast<const MCSymbolWasm &>(S); in executePostLayoutBinding() local 469 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) { in executePostLayoutBinding() 1333 const auto &WS = static_cast<const MCSymbolWasm &>(S); in prepareImports() 1334 if (WS.isData() && WS.isInSection()) { in prepareImports() 1335 auto &RefSection = static_cast<MCSectionWasm &>(WS.getSection()); in prepareImports() 1362 const auto &WS = static_cast<const MCSymbolWasm &>(S); in prepareImports() 1366 if (WS in prepareImports() 1346 const auto &WS = static_cast<const MCSymbolWasm &>(S); prepareImports() local 1417 const auto &WS = static_cast<const MCSymbolWasm &>(S); prepareImports() local 1562 const auto &WS = static_cast<const MCSymbolWasm &>(S); writeOneObject() local 1729 const auto &WS = static_cast<const MCSymbolWasm &>(S); writeOneObject() local 1767 const auto &WS = static_cast<const MCSymbolWasm &>(S); writeOneObject() local 1844 const auto &WS = static_cast<const MCSectionWasm &>(S); writeOneObject() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/ |
H A D | WasmReader.cpp | 24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create() local 25 Obj->Sections.push_back({static_cast<uint8_t>(WS.Type), in create() 26 WS.HeaderSecSizeEncodingLen, WS.Name, WS.Content}); in create()
|
/freebsd/usr.sbin/mailwrapper/ |
H A D | mailwrapper.c | 141 #define WS " \t\n" in main() 144 cp += strspn(cp, WS); in main() 151 if ((from = strsep(&cp, WS)) == NULL || cp == NULL) in main() 154 cp += strspn(cp, WS); in main() 156 if ((to = strsep(&cp, WS)) == NULL) in main() 160 for (ap = strsep(&cp, WS); ap != NULL; in main() 161 ap = strsep(&cp, WS)) { in main() 130 #define WS main() macro
|
/freebsd/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/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/crypto/openssl/crypto/conf/ |
H A D | keysets.pl | 20 my $WS = 0x0010; 41 $v |= $WS if $c =~ /[ \t\r\n]/; 55 $v |= $WS if $c =~ /[ \t\r\n]/; 82 #define CONF_WS $WS
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | WasmAsmParser.cpp | 195 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective() local 198 if (WS->getSegmentFlags() != Flags) in parseSectionDirective() 201 utohexstr(WS->getSegmentFlags())); in parseSectionDirective() 204 if (!WS->isWasmData()) in parseSectionDirective() 206 WS->setPassive(); in parseSectionDirective() 209 getStreamer().switchSection(WS); in parseSectionDirective()
|
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/ |
H A D | InOrderIssueStage.cpp | 90 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findFirstWriteBackCycle() local 91 int CyclesLeft = WS.getCyclesLeft(); in findFirstWriteBackCycle() 93 CyclesLeft = WS.getLatency(); in findFirstWriteBackCycle() 165 for (WriteState &WS : IS.getDefs()) in addRegisterReadWrite() 166 PRF.addRegisterWrite(WriteRef(SourceIndex, &WS), UsedRegs); in addRegisterReadWrite() 357 for (const WriteState &WS : IS.getDefs()) in retireInstruction() local 358 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 | 119 for (WriteState &WS : IS.getDefs()) in dispatch() 120 PRF.addRegisterWrite(WriteRef(IR.getSourceIndex(), &WS), RegisterFiles); in dispatch()
|
/freebsd/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() 180 for (WriteState &WS : getDefs()) in execute() 181 WS.onInstructionIssued(IID); in execute()
|
/freebsd/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/contrib/netbsd-tests/lib/libpthread/ |
H A D | h_resolv.c | 48 #define WS " \t\n\r" macro 86 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS)) in load()
|
/freebsd/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/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Host.cpp | 608 void llvm::format_provider<WaitStatus>::format(const WaitStatus &WS, in format() argument 613 switch (WS.type) { in format() 624 OS << formatv("{0}{1:x-2}", type, WS.status); in format() 630 switch(WS.type) { in format() 641 OS << desc << " " << int(WS.status); in format()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | UncountedLocalVarsChecker.cpp | 172 bool TraverseWhileStmt(WhileStmt *WS) { in checkASTDecl() 173 if (!TFA.isTrivial(WS)) in checkASTDecl() 174 return Base::TraverseWhileStmt(WS); in checkASTDecl()
|
H A D | PtrTypesSemantics.cpp | 341 bool VisitWhileStmt(const WhileStmt *WS) { in VisitWhileStmt() argument 342 return WithCachedResult(WS, [&]() { return VisitChildren(WS); }); in VisitWhileStmt()
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 61 #define WS "%ls" macro 95 #define WS "%s" macro
|
H A D | options.c | 962 "%s"WS, O_ISSET(sp, offset) ? "" : "no", op->name); in opts_print() 965 curlen += ex_printf(sp, WS"=%ld", op->name, O_VAL(sp, offset)); in opts_print() 968 curlen += ex_printf(sp, WS"=\"", op->name); in opts_print() 1002 (void)fprintf(fp, "set "WS"\n", op->name); in opts_save() 1004 (void)fprintf(fp, "set no"WS"\n", op->name); in opts_save() 1008 "set "WS"=%-3ld\n", op->name, O_VAL(sp, cnt)); in opts_save()
|
/freebsd/lib/libc/tests/resolv/ |
H A D | resolv_test.c | 51 #define WS " \t\n\r" macro 88 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS)) { in load()
|
/freebsd/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/contrib/file/magic/Magdir/ |
H A D | puzzle | 9 # "Universal" or "WS Journal" links on the right side of
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
H A D | WebAssemblyAsmParser.cpp | 759 auto WS = cast<MCSectionWasm>(getStreamer().getCurrentSectionOnly()); in CheckDataSection() local 760 if (WS && WS->isText()) in CheckDataSection() 1109 auto *WS = getContext().getWasmSection(SecName, SectionKind::getText(), 0, in doBeforeLabelEmit() local 1111 getStreamer().switchSection(WS); in doBeforeLabelEmit() 1114 getContext().addGenDwarfSection(WS); in doBeforeLabelEmit()
|