| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyExceptionInfo.cpp | 62 SmallVector<const MachineBasicBlock *, 8> WL; in isReachableAmongDominated() local 64 WL.push_back(Src); in isReachableAmongDominated() 66 while (!WL.empty()) { in isReachableAmongDominated() 67 const auto *MBB = WL.pop_back_val(); in isReachableAmongDominated() 73 WL.push_back(Succ); in isReachableAmongDominated() 290 SmallVector<MachineBasicBlock *, 8> WL; in discoverAndMapException() local 291 WL.push_back(EHPad); in discoverAndMapException() 292 while (!WL.empty()) { in discoverAndMapException() 293 MachineBasicBlock *MBB = WL.pop_back_val(); in discoverAndMapException() 309 WL.push_back(Frontier); in discoverAndMapException() [all …]
|
| H A D | WebAssemblyLateEHPrepare.cpp | 71 SmallVector<MachineBasicBlock *, 2> WL; in getMatchingEHPad() local 73 WL.push_back(MI->getParent()); in getMatchingEHPad() 75 while (!WL.empty()) { in getMatchingEHPad() 76 MachineBasicBlock *MBB = WL.pop_back_val(); in getMatchingEHPad() 89 WL.push_back(Pred); in getMatchingEHPad() 98 SmallVector<MachineBasicBlock *, 8> WL(MBBs.begin(), MBBs.end()); in eraseDeadBBsAndChildren() local 100 while (!WL.empty()) { in eraseDeadBBsAndChildren() 101 MachineBasicBlock *MBB = WL.pop_back_val(); in eraseDeadBBsAndChildren() 105 WL.append(MBB->succ_begin(), MBB->succ_end()); in eraseDeadBBsAndChildren()
|
| /freebsd/sys/contrib/device-tree/src/arm/allwinner/ |
| H A D | sun8i-h2-plus-bananapi-m2-zero.dts | 241 "WL-SDIO-CLK", "WL-SDIO-CMD", "WL-SDIO-D0", "WL-SDIO-D1", 242 "WL-SDIO-D2", "WL-SDIO-D3", "BT-UART-TX", "BT-UART-RX", 243 "BT-UART-RTS", "BT-UART-CTS", "WL-WAKE-AP", "BT-WAKE-AP", 253 "VCC-IO-EN", "USB0-ID", "WL-PWR-EN",
|
| H A D | sun6i-a31s-sinovoip-bpi-m2.dts | 281 "", "", "", "", "", "", "WL-SDIO-CMD", "WL-SDIO-CLK", 282 "WL-SDIO-D0", "WL-SDIO-D2", "WL-SDIO-D2", "WL-SDIO-D3", 326 "WL-WAKE-HOST", "BT-WAKE_HOST", "BT-ENABLE", 327 "WL-PMU-EN", "", "", "", "", "", "", "", "", "", "", "",
|
| H A D | sun7i-a20-bananapi-m1-plus.dts | 91 reset-gpios = <&pio 7 22 GPIO_ACTIVE_LOW>; /* PH22 WL-PMU-EN */
|
| H A D | sun8i-a83t-bananapi-m3.dts | 106 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
| H A D | sun9i-a80-optimus.dts | 106 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetSubtargetInfo.cpp | 21 const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, in TargetSubtargetInfo() argument 23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PN, PF, PD, WPR, WL, RA, IS, OC, in TargetSubtargetInfo()
|
| H A D | WasmEHPrepare.cpp | 176 SmallVector<BasicBlock *, 8> WL(BBs.begin(), BBs.end()); in eraseDeadBBsAndChildren() local 177 while (!WL.empty()) { in eraseDeadBBsAndChildren() 178 auto *BB = WL.pop_back_val(); in eraseDeadBBsAndChildren() 181 WL.append(succ_begin(BB), succ_end(BB)); in eraseDeadBBsAndChildren()
|
| /freebsd/sys/contrib/ck/include/ |
| H A D | ck_rwcohort.h | 44 #define CK_RWCOHORT_WP_INIT(N, RW, WL) ck_rwcohort_wp_##N##_init(RW, WL) argument 148 #define CK_RWCOHORT_RP_INIT(N, RW, WL) ck_rwcohort_rp_##N##_init(RW, WL) argument
|
| /freebsd/crypto/krb5/src/util/verto/ |
| H A D | ev.c | 1554 typedef ev_watcher_list *WL; typedef 1768 WL head; 1795 WL head; 2043 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next) in fd_event_nocheck() 2117 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next) in fd_reify() 2379 WL head; 2579 WL w; in ev_feed_signal_event() 2626 static WL childs [EV_PID_HASHSIZE]; 2641 for (w = (ev_child *)childs [chain & ((EV_PID_HASHSIZE) - 1)]; w; w = (ev_child *)((WL)w)->next) in child_reap() 3141 WL w, w2; in ev_verify() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 323 SmallVector<const CFGBlock*, 32> WL; in scanFromBlock() local 332 WL.push_back(Start); in scanFromBlock() 335 while (!WL.empty()) { in scanFromBlock() 336 const CFGBlock *item = WL.pop_back_val(); in scanFromBlock() 373 WL.push_back(B); in scanFromBlock()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | GenericDomTree.h | 430 SmallVector<const DomTreeNodeBase<NodeT> *, 8> WL; 431 WL.push_back(RN); 433 while (!WL.empty()) { 434 const DomTreeNodeBase<NodeT> *N = WL.pop_back_val(); 436 WL.append(N->begin(), N->end());
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instruction.cpp | 1356 ArrayRef<unsigned> WL) { in copyMetadata() argument 1357 if (WL.empty() || is_contained(WL, LLVMContext::MD_dbg)) in copyMetadata() 1363 SmallDenseSet<unsigned, 4> WLS(WL.begin(), WL.end()); in copyMetadata() 1370 if (WL.empty() || WLS.count(MD.first)) in copyMetadata()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 253 const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, in MCSubtargetInfo() argument 257 WriteLatencyTable(WL), ReadAdvanceTable(RA), Stages(IS), in MCSubtargetInfo()
|
| /freebsd/sys/contrib/device-tree/src/arm64/allwinner/ |
| H A D | sun50i-a64-amarula-relic.dts | 63 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* WL-PMU-EN: PL2 */ 150 interrupts = <0 3 IRQ_TYPE_LEVEL_LOW>; /* WL-WAKE-AP: PL3 */
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetSubtargetInfo.h | 71 const MCWriteLatencyEntry *WL,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSubtargetInfo.h | 103 const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL,
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 3101 DFSWorkList WL; in findReportInEquivalenceClass() local 3102 WL.push_back(errorNode); in findReportInEquivalenceClass() 3105 while (!WL.empty()) { in findReportInEquivalenceClass() 3106 WLItem &WI = WL.back(); in findReportInEquivalenceClass() 3118 WL.clear(); in findReportInEquivalenceClass() 3129 WL.push_back(Succ); in findReportInEquivalenceClass() 3136 if (!WL.empty() && &WL.back() == &WI) in findReportInEquivalenceClass() 3137 WL.pop_back(); in findReportInEquivalenceClass()
|
| H A D | RegionStore.cpp | 869 WorkList WL; member in __anonfa909ae00b11::ClusterAnalysis 922 WL.push_back(E); in AddToWorkList() 931 while (!WL.empty()) { in RunWorkList() 932 WorkListElement E = WL.pop_back_val(); in RunWorkList()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 1166 Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, in WhileStmt() argument 1177 setWhileLoc(WL); in WhileStmt() 1188 Stmt *Body, SourceLocation WL, in Create() argument 1195 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
|
| /freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
| H A D | imx6ull-dhcor-maveo-box.dts | 125 "NFC-IRQ", "WL-REG-ON", "DHCOR-BOOT-M0", "DHCOR-BOOT-M1",
|
| /freebsd/sys/contrib/device-tree/src/arm/st/ |
| H A D | stm32mp13xx-dhcor-som.dtsi | 211 compatible = "st,24256e-wl"; /* ST M24256E WL page of 0x50 */
|
| /freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | imx8mp-dhcom-som.dtsi | 430 compatible = "atmel,24c32d-wl"; /* M24C32-D WL page of 0x50 */ 436 compatible = "atmel,24c32d-wl"; /* M24C32-D WL page of 0x53 */
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instruction.h | 467 ArrayRef<unsigned> WL = ArrayRef<unsigned>());
|