| /kernel/linux/linux-6.6/kernel/locking/ |
| H A D | lockdep_proc.c | 151 struct lock_chain *chain = v; in lc_show() local 169 seq_printf(m, "irq_context: %s\n", irq_strs[chain->irq_context]); in lc_show() 171 for (i = 0; i < chain->depth; i++) { in lc_show() 172 class = lock_chain_get_class(chain, i); in lc_show() 205 seq_printf(m, " chain lookup misses: %11llu\n", in lockdep_stats_debug_show() 207 seq_printf(m, " chain lookup hits: %11llu\n", in lockdep_stats_debug_show() 308 seq_printf(m, " dependency chain hlocks used: %11lu [max: %lu]\n", in lockdep_stats_show() 312 seq_printf(m, " dependency chain hlocks lost: %11u\n", in lockdep_stats_show() 388 seq_printf(m, " large chain blocks: %11u\n", in lockdep_stats_show()
|
| /kernel/linux/linux-6.6/kernel/futex/ |
| H A D | core.c | 443 plist_for_each_entry(this, &hb->chain, list) { in futex_top_waiter() 518 plist_del(&q->list, &hb->chain); in __futex_unqueue() 568 plist_add(&q->list, &hb->chain); in __futex_queue() 1152 plist_head_init(&futex_queues[i].chain); in futex_init()
|
| /kernel/linux/linux-6.6/net/sched/ |
| H A D | cls_bpf.c | 149 struct tcf_block *block = tp->chain->block; in cls_bpf_offload_cmd() 230 struct tcf_block *block = tp->chain->block; in cls_bpf_offload_update_stats() 404 tcf_block_netif_keep_dst(tp->chain->block); in cls_bpf_prog_from_efd() 654 struct tcf_block *block = tp->chain->block; in cls_bpf_reoffload()
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | templateLiteralTypes3.js | 124 declare function chain<F extends keyof Schema>(field: F | `${F}.${F}`): void; 126 chain("a"); 244 chain("a");
343 declare function chain<F extends keyof Schema>(field: F | `${F}.${F}`): void;
|
| /third_party/python/Lib/test/ |
| H A D | test_faulthandler.py | 685 unregister=False, chain=False, fd=None): 690 If chain is True, check that the previous signal handler is called. 704 chain = {chain} 721 if chain: 724 all_threads=all_threads, chain={chain}) 728 if chain and not handler.called: 745 chain=chain, [all...] |
| /kernel/linux/linux-5.10/drivers/dma/ |
| H A D | txx9dmac.c | 441 /* Make chain-completion interrupt happen */ in txx9dmac_dequeue() 538 dma_addr_t chain; in txx9dmac_scan_descriptors() local 544 chain = channel64_read_CHAR(dc); in txx9dmac_scan_descriptors() 548 chain = channel32_readl(dc, CHAR); in txx9dmac_scan_descriptors() 552 /* For dynamic chain, we should look at XFACT instead of NCHNC */ in txx9dmac_scan_descriptors() 559 chain = 0; /* last descriptor of this chain */ in txx9dmac_scan_descriptors() 562 (u64)chain); in txx9dmac_scan_descriptors() 565 if (desc_read_CHAR(dc, desc) == chain) { in txx9dmac_scan_descriptors() 573 if (desc_read_CHAR(dc, child) == chain) { in txx9dmac_scan_descriptors() [all...] |
| /kernel/linux/linux-6.6/drivers/dma/ |
| H A D | txx9dmac.c | 441 /* Make chain-completion interrupt happen */ in txx9dmac_dequeue() 538 dma_addr_t chain; in txx9dmac_scan_descriptors() local 544 chain = channel64_read_CHAR(dc); in txx9dmac_scan_descriptors() 548 chain = channel32_readl(dc, CHAR); in txx9dmac_scan_descriptors() 552 /* For dynamic chain, we should look at XFACT instead of NCHNC */ in txx9dmac_scan_descriptors() 559 chain = 0; /* last descriptor of this chain */ in txx9dmac_scan_descriptors() 562 (u64)chain); in txx9dmac_scan_descriptors() 565 if (desc_read_CHAR(dc, desc) == chain) { in txx9dmac_scan_descriptors() 573 if (desc_read_CHAR(dc, child) == chain) { in txx9dmac_scan_descriptors() [all...] |
| /kernel/linux/linux-5.10/drivers/firmware/arm_scmi/ |
| H A D | notify.c | 42 * and is served by its own dedicated notification chain; information contained 59 * queued items into the proper notification-chain: notifications processing can 346 * @chain: The notification chain dedicated to this specific event tuple 360 struct blocking_notifier_head chain; member 375 * scmi_lookup_and_call_event_chain() - Lookup the proper chain and call it 377 * @evt_key: The key to use to lookup the related notification chain 398 ret = blocking_notifier_call_chain(&hndl->chain, in scmi_lookup_and_call_event_chain() 401 /* Notifiers are NOT supposed to cut the chain ... */ in scmi_lookup_and_call_event_chain() 516 * - > call the related notification chain passin [all...] |
| /third_party/littlefs/scripts/ |
| H A D | summary.py | 354 for k in it.chain(by or [], (k for k, _ in defines or [])): 539 ((max(it.chain([w], (len(l[i]) for l in lines)))+1+4-1)//4)*4-1 541 it.chain([23], it.repeat(7)), 570 renames = list(it.chain.from_iterable( 572 for k, vs in it.chain(by or [], fields or [])))
|
| /third_party/python/Lib/lib2to3/ |
| H A D | refactor.py | 22 from itertools import chain namespace 94 for node_type in chain(pygram.python_grammar.symbol2number.values(), 204 for fixer in chain(self.post_order, self.pre_order): 406 for fixer in chain(self.pre_order, self.post_order): 465 for fixer in chain(self.pre_order, self.post_order):
|
| /foundation/communication/netmanager_base/services/netpolicymanager/include/ |
| H A D | firewall_rule.h | 35 * @param chain The chain type 38 static std::shared_ptr<FirewallRule> CreateFirewallRule(uint32_t chain);
|
| /kernel/linux/linux-5.10/drivers/dma/ppc4xx/ |
| H A D | adma.h | 80 * @chain: device chain view of the descriptors 85 * @hw_chain_inited: h/w descriptor chain initialization flag 96 struct list_head chain; member 123 * @phys: hardware address of the hardware descriptor chain 125 * @hw_next: pointer to the next descriptor in chain 128 * @chain_node: node on the op_adma_chan.chain list 132 * @hw_desc: virtual address of the hardware descriptor chain 171 #define PPC440SPE_DESC_WXOR 4 /* WXORs are in chain */ 172 #define PPC440SPE_DESC_RXOR 5 /* RXOR is in chain */ [all...] |
| /kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/ |
| H A D | i915_gem_clflush.c | 109 i915_sw_fence_await_reservation(&clflush->base.chain, in i915_gem_clflush_object()
|
| /kernel/linux/linux-5.10/drivers/scsi/ |
| H A D | aha1542.h | 60 struct chain { struct 61 u8 datalen[3]; /* Size of this part of chain */
|
| /kernel/linux/linux-6.6/drivers/scsi/ |
| H A D | aha1542.h | 60 struct chain { struct 61 u8 datalen[3]; /* Size of this part of chain */
|
| /kernel/linux/linux-6.6/drivers/dma/ppc4xx/ |
| H A D | adma.h | 77 * @chain: device chain view of the descriptors 82 * @hw_chain_inited: h/w descriptor chain initialization flag 93 struct list_head chain; member 120 * @phys: hardware address of the hardware descriptor chain 122 * @hw_next: pointer to the next descriptor in chain 125 * @chain_node: node on the op_adma_chan.chain list 129 * @hw_desc: virtual address of the hardware descriptor chain 168 #define PPC440SPE_DESC_WXOR 4 /* WXORs are in chain */ 169 #define PPC440SPE_DESC_RXOR 5 /* RXOR is in chain */ [all...] |
| /kernel/linux/linux-6.6/drivers/gpu/drm/i915/gem/ |
| H A D | i915_gem_clflush.c | 116 i915_sw_fence_await_reservation(&clflush->base.chain, in i915_gem_clflush_object()
|
| /test/xts/tools/sample/ServerSampleE/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/entity/ |
| H A D | OhSampleGroupSite.java | 37 @Accessors(chain = true)
|
| /third_party/libwebsockets/lib/system/async-dns/ |
| H A D | private-lib-async-dns.h | 43 struct lws_adns_cache *chain; member
|
| /third_party/node/deps/v8/tools/release/ |
| H A D | filter_build_files.py | 84 list_of_files.extend(itertools.chain(*map(glob.iglob, globs)))
|
| /third_party/node/tools/ |
| H A D | checkimports.py | 47 files = itertools.chain(files, glob.iglob(pattern))
|
| /third_party/rust/crates/cxx/gen/build/src/syntax/ |
| H A D | names.rs | 21 .chain(iter::once(&self.cxx as &dyn Segment)); in to_symbol()
|
| /third_party/rust/crates/cxx/gen/lib/src/syntax/ |
| H A D | names.rs | 21 .chain(iter::once(&self.cxx as &dyn Segment)); in to_symbol()
|
| /third_party/rust/crates/cxx/macro/src/syntax/ |
| H A D | names.rs | 21 .chain(iter::once(&self.cxx as &dyn Segment)); in to_symbol()
|
| /third_party/rust/crates/cxx/syntax/ |
| H A D | names.rs | 21 .chain(iter::once(&self.cxx as &dyn Segment)); in to_symbol()
|