Home
last modified time | relevance | path

Searched refs:space (Results 276 - 300 of 1104) sorted by relevance

1...<<11121314151617181920>>...45

/kernel/linux/linux-5.10/drivers/thunderbolt/
H A Dtb.h247 * the path config space of @in_port.
303 * @clear_fc: Clear all flow control from the path config space entries
509 enum tb_cfg_space space, u32 offset, u32 length) in tb_sw_read()
517 space, in tb_sw_read()
523 enum tb_cfg_space space, u32 offset, u32 length) in tb_sw_write()
531 space, in tb_sw_write()
537 enum tb_cfg_space space, u32 offset, u32 length) in tb_port_read()
545 space, in tb_port_read()
551 enum tb_cfg_space space, u32 offset, u32 length) in tb_port_write()
559 space, in tb_port_write()
508 tb_sw_read(struct tb_switch *sw, void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_sw_read() argument
522 tb_sw_write(struct tb_switch *sw, const void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_sw_write() argument
536 tb_port_read(struct tb_port *port, void *buffer, enum tb_cfg_space space, u32 offset, u32 length) tb_port_read() argument
550 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/drivers/gpu/drm/mga/
H A Dmga_dma.c85 primary->space = primary->size; in mga_do_dma_reset()
144 primary->space = primary->size - primary->tail; in mga_do_dma_flush()
146 primary->space = head - tail; in mga_do_dma_flush()
150 DRM_DEBUG(" space = 0x%06x\n", primary->space); in mga_do_dma_flush()
182 primary->space = primary->size; in mga_do_dma_wrap_start()
184 primary->space = head - dev_priv->primary->offset; in mga_do_dma_wrap_start()
189 DRM_DEBUG(" space = 0x%06x\n", primary->space); in mga_do_dma_wrap_start()
918 dev_priv->prim.space in mga_do_init_dma()
[all...]
/kernel/linux/linux-6.6/scripts/
H A Dget_abi.pl119 my $space;
149 $space = "";
212 $space = $1;
216 undef($space);
240 if (!defined($space)) {
243 $space = $1;
247 $space = "" if (!($content =~ s/^($space)//));
/third_party/alsa-utils/alsamixer/
H A Dmixer_display.c687 int height, space; in compute_controls_layout() local
747 space = screen_lines - 6 - height; in compute_controls_layout()
748 if (space <= 1) in compute_controls_layout()
750 else if (space <= 10) in compute_controls_layout()
751 volume_height = space; in compute_controls_layout()
753 volume_height = 10 + (space - 10) / 2; in compute_controls_layout()
757 space = screen_lines - 6 - height; in compute_controls_layout()
758 channel_name_y = screen_lines - 2 - space / 2; in compute_controls_layout()
/third_party/node/deps/v8/src/heap/
H A Dmark-compact.h237 IterateableSpace* space, RememberedSetUpdatingMode mode);
483 void CollectEvacuationCandidates(PagedSpace* space);
545 void DrainSweepingWorklistForSpace(AllocationSpace space);
547 // Checks if sweeping is in progress right now on any space.
593 void VerifyMarkbitsAreDirty(ReadOnlySpace* space);
594 void VerifyMarkbitsAreClean(PagedSpace* space);
595 void VerifyMarkbitsAreClean(NewSpace* space);
596 void VerifyMarkbitsAreClean(LargeObjectSpace* space);
745 void StartSweepSpace(PagedSpace* space);
H A Dbasic-memory-chunk.cc53 BasicMemoryChunk::BasicMemoryChunk(Heap* heap, BaseSpace* space, in BasicMemoryChunk() argument
63 owner_(space), in BasicMemoryChunk()
H A Dmemory-chunk-layout.h90 static size_t ObjectStartOffsetInMemoryChunk(AllocationSpace space);
91 static size_t AllocatableMemoryInMemoryChunk(AllocationSpace space);
/kernel/linux/linux-5.10/fs/fat/
H A Dnamei_msdos.c30 int space; in msdos_format_name() local
43 space = 1; in msdos_format_name()
68 space = (c == ' '); in msdos_format_name()
71 if (space) in msdos_format_name()
101 space = c == ' '; in msdos_format_name()
107 if (space) in msdos_format_name()
/kernel/linux/linux-6.6/fs/fat/
H A Dnamei_msdos.c30 int space; in msdos_format_name() local
43 space = 1; in msdos_format_name()
68 space = (c == ' '); in msdos_format_name()
71 if (space) in msdos_format_name()
101 space = c == ' '; in msdos_format_name()
107 if (space) in msdos_format_name()
/kernel/linux/linux-6.6/mm/
H A Dswap_state.c167 * add_to_swap - allocate swap space for a folio
170 * Allocate swap space for the folio and add the folio to the
518 * Locate a page of swap in physical memory, reserving swap cache space
675 struct address_space *spaces, *space; in init_swap_address_space() local
683 space = spaces + i; in init_swap_address_space()
684 xa_init_flags(&space->i_pages, XA_FLAGS_LOCK_IRQ); in init_swap_address_space()
685 atomic_set(&space->i_mmap_writable, 0); in init_swap_address_space()
686 space->a_ops = &swap_aops; in init_swap_address_space()
688 mapping_set_no_writeback_tags(space); in init_swap_address_space()
/kernel/linux/linux-6.6/net/rxrpc/
H A Dsendmsg.c92 * Return true if there's sufficient Tx queue space.
102 * Wait for space to appear in the Tx queue or a signal to occur.
125 * Wait for space to appear in the Tx queue uninterruptibly, but with
166 * Wait for space to appear in the Tx queue uninterruptibly.
186 * wait for space to appear in the transmit/ACK window
366 txb->space -= offset; in rxrpc_send_data()
367 txb->space = min_t(size_t, chunk, txb->space); in rxrpc_send_data()
374 size_t copy = min_t(size_t, txb->space, msg_data_left(msg)); in rxrpc_send_data()
381 txb->space in rxrpc_send_data()
[all...]
/third_party/ffmpeg/libavformat/
H A Dmlvdec.c407 unsigned int size, space; in read_packet() local
437 space = avio_rl32(pb); in read_packet()
438 avio_skip(pb, space); in read_packet()
445 if (space > UINT_MAX - 24 || size < (24 + space)) in read_packet()
447 ret = av_get_packet(pb, pkt, size - (24 + space)); in read_packet()
/third_party/pulseaudio/src/pulsecore/
H A Dprotocol-simple.c153 size_t space = 0; in do_read() local
162 space = pa_memblock_get_length(c->playback.current_memblock) - c->playback.memblock_index; in do_read()
164 if (space <= 0) { in do_read()
174 space = pa_memblock_get_length(c->playback.current_memblock); in do_read()
177 if (l > space) in do_read()
178 l = space; in do_read()
/kernel/linux/linux-6.6/arch/powerpc/kernel/trace/
H A Dftrace_64_pg_entry.S72 .space 32
78 .space 32
/kernel/linux/linux-5.10/fs/efs/
H A Defs.h106 unsigned char space[EFS_DIRBSIZE - EFS_DIRBLK_HEADERSIZE]; member
113 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
/kernel/linux/linux-6.6/fs/efs/
H A Defs.h103 unsigned char space[EFS_DIRBSIZE - EFS_DIRBLK_HEADERSIZE]; member
110 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H A Dtoeplitz.sh35 grep -E [[:space:]]+[0-9]+:[[:space:]]+ |
/kernel/liteos_a/kernel/common/
H A Dlos_config.h404 * the size of space for recording exception information
410 * the address of space for recording exception information
430 * <li> "startAddr" must be left to save the exception address space, the size of "buf" is "space" </li>
433 * @param startAddr [IN] Address of storage ,its must be left to save the exception address space
434 * @param space [IN] size of storage.its is also the size of "buf"
443 typedef VOID (*log_read_write_fn)(UINT32 startAddr, UINT32 space, UINT32 rwFlag, CHAR *buf);
452 * and specify location and space and size</li>
456 * <li> "startAddr" must be left to save the exception address space, the size of "buf" is "space",
[all...]
/third_party/pulseaudio/man/
H A Dxmltoman42 my $space = shift;
50 s/^\s$//gm if (!$space);
/vendor/hisilicon/hispark_pegasus/demo/message_demo/
H A Dmessage.c97 uint32_t space = osMessageQueueGetSpace(qid); in rtosv2_msgq_main() local
98 printf("[Message Test] osMessageQueueGetSpace, space: %u.\r\n", space); in rtosv2_msgq_main()
/kernel/liteos_a/kernel/extended/dynload/src/
H A Dlos_load_elf.c423 INT32 OsGetKernelVaddr(LosVmSpace *space, VADDR_T vaddr, VADDR_T *kvaddr) in OsGetKernelVaddr() argument
428 if ((space == NULL) || (vaddr == 0) || (kvaddr == NULL)) { in OsGetKernelVaddr()
429 PRINT_ERR("%s[%d], space: %#x, vaddr: %#x\n", __FUNCTION__, __LINE__, space, vaddr); in OsGetKernelVaddr()
438 ret = LOS_ArchMmuQuery(&space->archMmu, vaddr, &paddr, NULL); in OsGetKernelVaddr()
748 STATIC UINT32 OsStackAlloc(LosVmSpace *space, VADDR_T vaddr, UINT32 vsize, UINT32 psize, UINT32 regionFlags) in OsStackAlloc() argument
757 (VOID)LOS_MuxAcquire(&space->regionMux); in OsStackAlloc()
763 region = LOS_RegionAlloc(space, vaddr, vsize, regionFlags | VM_MAP_REGION_FLAG_FIXED, 0); in OsStackAlloc()
775 (VOID)LOS_ArchMmuMap(&space->archMmu, vaddrTemp, paddrTemp, 1, region->regionFlags); in OsStackAlloc()
781 (VOID)LOS_MuxRelease(&space in OsStackAlloc()
[all...]
/third_party/libunwind/libunwind/doc/
H A Dunw_create_addr_space.tex8 \begin{Name}{3}{unw\_create\_addr\_space}{David Mosberger-Tang}{Programming Library}{unw\_create\_addr\_space}unw\_create\_addr\_space -- create address space for remote unwinding
20 address-space and initializes it based on the call-back routines
37 variable is copied into the newly-created address space, so the
41 The first argument to every call-back routine is an address-space
45 address-space on whose behalf the invocation is made and the \Var{arg}
125 enabled for the given address-space. The cache can be cleared with a
135 from or write to a word of memory in the target address-space. The
193 execution in the target address space. Argument \Var{cp} is the
209 when resuming execution in the local address space, the call-back will
241 address-space
[all...]
/kernel/linux/linux-5.10/arch/powerpc/xmon/
H A Dxmon_bpts.S11 .space NBPTS * BPT_SIZE
/kernel/linux/linux-6.6/arch/powerpc/xmon/
H A Dxmon_bpts.S11 .space NBPTS * BPT_SIZE
/kernel/linux/linux-5.10/arch/arm/mach-rockchip/
H A Dheadsmp.S14 1: .space 4

Completed in 19 milliseconds

1...<<11121314151617181920>>...45