/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | idle_6xx.S | 185 .space 4*NR_CPUS 188 .space 4*NR_CPUS
|
/kernel/linux/linux-6.6/tools/perf/util/intel-pt-decoder/ |
H A D | intel-pt-log.c | 105 size_t space = b->buf_sz - b->head; in log_buf__write() local 106 size_t n = min(space, sz); in log_buf__write()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_set_caching_policy.tex | 20 of address space \Var{as} to the policy specified by argument 45 caching is turned off by default. For the local address space
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_cl.h | 143 uint32_t v3dv_cl_ensure_space(struct v3dv_cl *cl, uint32_t space, uint32_t alignment); 144 void v3dv_cl_ensure_space_with_branch(struct v3dv_cl *cl, uint32_t space); 207 * Since we have a private address space as of V3D, our BOs can have lifelong
|
/third_party/node/deps/v8/src/heap/ |
H A D | large-spaces.h | 34 LargePage(Heap* heap, BaseSpace* space, size_t chunk_size, Address area_start, 67 // the large object space. Large objects do not move during garbage collections. 76 // Releases internal resources, frees objects in this space. 79 // Available bytes for objects in this space. 85 // Approximate amount of physical memory committed for this space. 93 // Checks whether a heap object is in this space; O(1). 95 // Checks whether an address is in the object area in this space. Iterates all 96 // objects in the space. May be slow. 99 // Checks whether the space is empty. 199 // Available bytes for objects in this space [all...] |
H A D | paged-spaces.cc | 33 PagedSpace* space) in PagedSpaceObjectIterator() 36 space_(space), in PagedSpaceObjectIterator() 37 page_range_(space->first_page(), nullptr), in PagedSpaceObjectIterator() 49 PagedSpace* space, in PagedSpaceObjectIterator() 53 space_(space), in PagedSpaceObjectIterator() 95 PagedSpace::PagedSpace(Heap* heap, AllocationSpace space, in PagedSpace() argument 99 : SpaceWithLinearArea(heap, space, free_list, allocation_info_), in PagedSpace() 102 area_size_ = MemoryChunkLayout::AllocatableMemoryInMemoryChunk(space); in PagedSpace() 196 // 2. Observers might try to take the space lock, which isn't reentrant. in MergeCompactionSpace() 241 // Ensure that the space' in VerifyCommittedPhysicalMemory() 32 PagedSpaceObjectIterator(Heap* heap, PagedSpace* space) PagedSpaceObjectIterator() argument 48 PagedSpaceObjectIterator(Heap* heap, PagedSpace* space, Page* page) PagedSpaceObjectIterator() argument [all...] |
H A D | base-space.h | 34 // Returns name of the space. 35 static const char* GetSpaceName(AllocationSpace space); 52 // Return the total amount committed memory for this space, i.e., allocatable 58 // Approximate amount of physical memory committed for this space. 74 // Keeps track of committed memory in a space.
|
/third_party/rust/crates/nom/tests/ |
H A D | issues.rs | 25 character::streaming::{digit1 as digit, space1 as space}, 38 let (i, _) = opt(complete(space))(input)?; in spaces_or_int()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i810/ |
H A D | i810_dma.c | 250 while (ring->space < n) { in i810_wait_ring() 252 ring->space = ring->head - (ring->tail + 8); in i810_wait_ring() 253 if (ring->space < 0) in i810_wait_ring() 254 ring->space += ring->Size; in i810_wait_ring() 263 DRM_ERROR("space: %d wanted %d\n", ring->space, n); in i810_wait_ring() 281 ring->space = ring->head - (ring->tail + 8); in i810_kernel_lost_context() 282 if (ring->space < 0) in i810_kernel_lost_context() 283 ring->space += ring->Size; in i810_kernel_lost_context() 294 /* Not enough space i in i810_freelist_init() [all...] |
/kernel/linux/linux-6.6/drivers/thunderbolt/ |
H A D | tb.h | 343 * the path config space of @in_port. 401 * @clear_fc: Clear all flow control from the path config space entries 633 enum tb_cfg_space space, u32 offset, u32 length) in tb_sw_read() 641 space, in tb_sw_read() 647 enum tb_cfg_space space, u32 offset, u32 length) in tb_sw_write() 655 space, in tb_sw_write() 661 enum tb_cfg_space space, u32 offset, u32 length) in tb_port_read() 669 space, in tb_port_read() 675 enum tb_cfg_space space, u32 offset, u32 length) in tb_port_write() 683 space, in tb_port_write() 632 tb_sw_read(struct tb_switch *sw, void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_sw_read() argument 646 tb_sw_write(struct tb_switch *sw, const void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_sw_write() argument 660 tb_port_read(struct tb_port *port, void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_port_read() argument 674 tb_port_write(struct tb_port *port, const void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_port_write() argument [all...] |
/kernel/linux/linux-5.10/fs/xfs/ |
H A D | xfs_log.c | 104 int cycle, space; in xlog_grant_sub_space() local 106 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_sub_space() 108 space -= bytes; in xlog_grant_sub_space() 109 if (space < 0) { in xlog_grant_sub_space() 110 space += log->l_logsize; in xlog_grant_sub_space() 115 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_sub_space() 131 int cycle, space; in xlog_grant_add_space() local 133 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_add_space() 135 tmp = log->l_logsize - space; in xlog_grant_add_space() 137 space in xlog_grant_add_space() 3511 int cycle, space; xlog_verify_grant_tail() local [all...] |
/kernel/linux/linux-6.6/fs/xfs/ |
H A D | xfs_log.c | 94 * track the space used by the log vectors separately to prevent log space hangs 95 * due to inaccurate accounting (i.e. a leak) of the used log space through the 98 * We also add space for the xlog_op_header that describes this region in the 154 int cycle, space; in xlog_grant_sub_space() local 156 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_sub_space() 158 space -= bytes; in xlog_grant_sub_space() 159 if (space < 0) { in xlog_grant_sub_space() 160 space += log->l_logsize; in xlog_grant_sub_space() 165 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_sub_space() 181 int cycle, space; xlog_grant_add_space() local 3554 int cycle, space; xlog_verify_grant_tail() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_pattern.cpp | 2039 auto space = listLayoutProperty->GetSpace().value_or(CHAIN_INTERVAL_DEFAULT).ConvertToPx(); 2040 if (Negative(space)) { 2041 space = CHAIN_INTERVAL_DEFAULT.ConvertToPx(); 2043 if (!chainAnimation_ || (chainAnimation_ && space != chainAnimation_->GetSpace())) { 2050 minSpace = GreatNotEqual(minSpace, space) ? space : minSpace; 2051 maxSpace = LessNotEqual(maxSpace, space) ? space : maxSpace; 2054 chainAnimation_ = AceType::MakeRefPtr<ChainAnimation>(space, maxSpace, minSpace, springProperty_); 2068 auto minSpace = space * DEFAULT_MIN_SPACE_SCAL [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_indicator/ |
H A D | linear_indicator_model_ng.h | 34 static void SetIndicatorStyleSpace(FrameNode* frameNode, const Dimension& space);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/ |
H A D | gauge_model.h | 49 virtual void SetIndicatorSpace(const Dimension& space) = 0;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | gauge_model_impl.h | 44 void SetIndicatorSpace(const Dimension& space) override {}
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/cell/spufs/ |
H A D | spu_restore_crt0.S | 19 .space SIZEOF_SPU_SPILL_REGS, 0x0
|
H A D | spu_save_crt0.S | 18 .space SIZEOF_SPU_SPILL_REGS, 0x0
|
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
H A D | debug.S | 45 .space 4
|
/kernel/linux/linux-6.6/arch/arm/boot/compressed/ |
H A D | debug.S | 45 .space 4
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/cell/spufs/ |
H A D | spu_restore_crt0.S | 19 .space SIZEOF_SPU_SPILL_REGS, 0x0
|
H A D | spu_save_crt0.S | 18 .space SIZEOF_SPU_SPILL_REGS, 0x0
|
/kernel/linux/linux-5.10/sound/core/seq/ |
H A D | seq_memory.h | 86 struct snd_seq_pool *pool, char *space);
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | fault-inject.h | 20 atomic_t space; member
|
/kernel/linux/linux-6.6/sound/core/seq/ |
H A D | seq_memory.h | 103 struct snd_seq_pool *pool, char *space);
|