/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | RegisterFile.cpp | 126 WriteRef &WR = RegisterMappings[RegID].first; in onInstructionExecuted() local 127 if (WR.getWriteState() == &WS) in onInstructionExecuted() 128 WR.notifyExecuted(CurrentCycle); in onInstructionExecuted() 364 WriteRef &WR = RegisterMappings[RegID].first; in removeRegisterWrite() local 365 if (WR.getWriteState() == &WS) in removeRegisterWrite() 366 WR.commit(); in removeRegisterWrite() 497 unsigned RegisterFile::getElapsedCyclesFromWriteBack(const WriteRef &WR) const { in getElapsedCyclesFromWriteBack() 498 assert(WR.hasKnownWriteBackCycle() && "Write hasn't been committed yet!"); in getElapsedCyclesFromWriteBack() 499 return CurrentCycle - WR.getWriteBackCycle(); in getElapsedCyclesFromWriteBack() 519 const WriteRef &WR = RegisterMappings[RegID].first; in collectWrites() local [all …]
|
/freebsd/usr.bin/tail/ |
H A D | read.c | 90 WR(t + 1, len); in bytes() 98 WR(t + 1, len); in bytes() 102 WR(sp, tlen); in bytes() 107 WR(t + 1, len); in bytes() 109 WR(sp, tlen); in bytes() 113 WR(p, len); in bytes() 116 WR(sp, len); in bytes() 191 WR(llines[cnt].l, llines[cnt].len); in lines() 194 WR(llines[cnt].l, llines[cnt].len); in lines() 198 WR(llines[cnt].l, llines[cnt].len); in lines() [all …]
|
H A D | misc.c | 84 WR(mip->start + (startoff - mip->mapoff), n); in mapprint() 124 WR("\n", 1); in printfn() 125 WR("==> ", 4); in printfn() 126 WR(fn, strlen(fn)); in printfn() 127 WR(" <==\n", 5); in printfn()
|
H A D | reverse.c | 255 WR(p, llen + 1); in r_buf() 257 WR(p + 1, llen); in r_buf() 259 WR(p, 1); in r_buf() 267 WR(&tr->l, tr->len); in r_buf()
|
H A D | extern.h | 32 #define WR(p, size) do { \ macro
|
/freebsd/contrib/ntp/libparse/ |
H A D | parsesolaris.c | 306 return putctl1(WR(q)->q_next, M_CTL, (mode == M_PARSE) ? MC_SERVICEIMM : in setup_stream() 350 WR(q)->q_ptr = q->q_ptr; in parseopen() 351 pprintf(DD_OPEN, "parse: OPEN - WQ parse area q=%x, q->q_ptr=%x\n", WR(q), WR(q)->q_ptr); in parseopen() 433 WR(q)->q_ptr = (caddr_t)NULL; in parseclose() 784 dq = WR(q); in init_linemon()
|
H A D | parsestreams.c | 458 return putctl1(WR(q)->q_next, M_CTL, (mode == M_PARSE) ? MC_SERVICEIMM : in setup_stream() 508 WR(q)->q_ptr = q->q_ptr; in parseopen() 588 WR(q)->q_ptr = (caddr_t)NULL; in parseclose() 934 dq = WR(q); in init_linemon()
|
/freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
H A D | r8a774e1-hihope-rzg2h-ex-idk-1110wr.dts | 4 * to an Advantech IDK-1110WR 10.1" LVDS panel
|
H A D | r8a774a1-hihope-rzg2m-ex-idk-1110wr.dts | 4 * to an Advantech IDK-1110WR 10.1" LVDS panel
|
H A D | r8a774a1-hihope-rzg2m-rev2-ex-idk-1110wr.dts | 4 * Advantech IDK-1110WR 10.1" LVDS panel
|
H A D | r8a774b1-hihope-rzg2n-ex-idk-1110wr.dts | 4 * to an Advantech IDK-1110WR 10.1" LVDS panel
|
H A D | r8a774b1-hihope-rzg2n-rev2-ex-idk-1110wr.dts | 4 * to an Advantech IDK-1110WR 10.1" LVDS panel
|
H A D | r8a774c0-ek874-idk-2121wr.dts | 4 * connected to an Advantech IDK-2121WR 21.5" LVDS panel
|
/freebsd/sys/dev/cxgb/ |
H A D | cxgb_sge.c | 3160 uint32_t *WR, wr_hi, wr_lo, gen; in t3_dump_txq_eth() local 3202 WR = (uint32_t *)txd->flit; in t3_dump_txq_eth() 3203 wr_hi = ntohl(WR[0]); in t3_dump_txq_eth() 3204 wr_lo = ntohl(WR[1]); in t3_dump_txq_eth() 3211 WR[j], WR[j + 1], WR[j + 2], WR[j + 3]); in t3_dump_txq_eth() 3227 uint32_t *WR, wr_hi, wr_lo, gen; in t3_dump_txq_ctrl() local 3259 WR = (uint32_t *)txd->flit; in t3_dump_txq_ctrl() 3260 wr_hi = ntohl(WR[0]); in t3_dump_txq_ctrl() 3261 wr_lo = ntohl(WR[1]); in t3_dump_txq_ctrl() 3268 WR[j], WR[j + 1], WR[j + 2], WR[j + 3]); in t3_dump_txq_ctrl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
H A D | RegisterFile.h | 295 unsigned getElapsedCyclesFromWriteBack(const WriteRef &WR) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | WindowsResource.cpp | 328 Error WindowsResourceParser::parse(WindowsResource *WR, in parse() argument 330 auto EntryOrErr = WR->getHeadEntry(); in parse() 348 InputFilenames.push_back(std::string(WR->getFileName())); in parse() 357 Entry, InputFilenames[Node->Origin], WR->getFileName())); in parse()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | SubtargetEmitter.cpp | 913 for (Record *WR : ProcModel.WriteResDefs) { in FindWriteResources() 914 if (!WR->isSubClassOf("WriteRes")) in FindWriteResources() 916 Record *WRDef = WR->getValueAsDef("WriteType"); in FindWriteResources() 919 PrintFatalError(WR->getLoc(), "Resources are defined for both " in FindWriteResources() 923 ResDef = WR; in FindWriteResources()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | WindowsResource.h | 157 Error parse(WindowsResource *WR, std::vector<std::string> &Duplicates);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonBitTracker.cpp | 794 uint16_t WR = W0; in evaluate() local 796 assert(WR == 64 && WP == 8); in evaluate() 798 RegisterCell RC(WR); in evaluate()
|
H A D | HexagonRegisterInfo.td | 514 (add (sequence "W%u", 0, 15), (sequence "WR%u", 0, 15))> { 567 (add (sequence "WR%u", 0, 15))>;
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 862 UpwardsWalkResult WR = walkToPhiOrClobber(Paths[Paused]); in tryOptimizePhi() local 863 if (WR.IsKnownClobber) in tryOptimizePhi() 864 Clobbers.push_back({WR.Result, Paused}); in tryOptimizePhi() 867 DefChainEnd = WR.Result; in tryOptimizePhi()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenSchedule.cpp | 1904 for (Record *WR : WRDefs) { in collectProcResources() 1905 Record *ModelDef = WR->getValueAsDef("SchedModel"); in collectProcResources() 1906 addWriteRes(WR, getProcModel(ModelDef).Index); in collectProcResources()
|
/freebsd/contrib/ncurses/include/ |
H A D | Caps-ncurses | 319 # WR key_word_right
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64SchedA510.td | 562 def : InstRW<[CortexA510Write<2, CortexA510UnitVALU0>], (instregex "^WHILE(RW|WR)_PXX_[BHSD]")>;
|
H A D | AArch64SchedNeoverseN2.td | 1518 def : InstRW<[N2Write_3cyc_1M], (instregex "^WHILE(RW|WR)_PXX_[BHSD]$")>;
|