Home
last modified time | relevance | path

Searched refs:space (Results 176 - 200 of 655) sorted by relevance

12345678910>>...27

/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...]
/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
/kernel/linux/linux-6.6/arch/arm/mach-rockchip/
H A Dheadsmp.S14 1: .space 4
/kernel/linux/linux-5.10/drivers/char/ipmi/
H A Dipmi_plat_data.h14 unsigned int space; /* addr_space for si, intf# for ssif. */ member
H A Dipmi_si_hotmod.c122 rv = parse_str(hotmod_as, &ival, "address space", &curr); in parse_hotmod_str()
125 h->space = ival; in parse_hotmod_str()
226 dev = ipmi_si_remove_by_data(h.space, h.type, h.addr); in hotmod_handler()
/kernel/linux/linux-6.6/drivers/char/ipmi/
H A Dipmi_plat_data.h14 unsigned int space; /* addr_space for si, intf# for ssif. */ member
H A Dipmi_si_hotmod.c121 rv = parse_str(hotmod_as, &ival, "address space", &curr); in parse_hotmod_str()
124 h->space = ival; in parse_hotmod_str()
217 dev = ipmi_si_remove_by_data(h.space, h.type, h.addr); in hotmod_handler()
/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...]
/kernel/linux/linux-5.10/arch/s390/include/asm/
H A Dpci_io.h41 #define ZPCI_CREATE_REQ(handle, space, len) \
42 ((u64) handle << 32 | space << 16 | len)
/kernel/linux/linux-6.6/arch/s390/include/asm/
H A Dpci_io.h41 #define ZPCI_CREATE_REQ(handle, space, len) \
42 ((u64) handle << 32 | space << 16 | len)
/kernel/linux/linux-5.10/tools/bootconfig/
H A Dtest-bootconfig.sh170 xfail grep -q val[[:space:]] $OUTFILE
171 xpass grep -q val2[[:space:]] $OUTFILE
/kernel/linux/linux-5.10/drivers/media/rc/
H A Dir-rcmm-decoder.c53 * ir_rcmm_decode() - Decode one RCMM pulse or space
55 * @ev: the struct ir_raw_event descriptor of the pulse/space
191 const unsigned int space = rcmmspace[(data >> i) & 3]; in ir_rcmm_rawencoder() local
193 ret = ir_raw_gen_pulse_space(ev, &max, RCMM_UNIT, space); in ir_rcmm_rawencoder()
/kernel/linux/linux-6.6/drivers/media/rc/
H A Dir-rcmm-decoder.c53 * ir_rcmm_decode() - Decode one RCMM pulse or space
55 * @ev: the struct ir_raw_event descriptor of the pulse/space
191 const unsigned int space = rcmmspace[(data >> i) & 3]; in ir_rcmm_rawencoder() local
193 ret = ir_raw_gen_pulse_space(ev, &max, RCMM_UNIT, space); in ir_rcmm_rawencoder()
/kernel/liteos_a/kernel/extended/blackbox/
H A Dlos_blackbox_system_adapter.c75 static void WriteExcFile(UINT32 startAddr, UINT32 space, UINT32 rwFlag, char *buf) in WriteExcFile() argument
78 (void)space; in WriteExcFile()
/kernel/linux/linux-6.6/tools/bootconfig/
H A Dtest-bootconfig.sh170 xfail grep -q val[[:space:]] $OUTFILE
171 xpass grep -q val2[[:space:]] $OUTFILE
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/
H A Dintel_ring_types.h46 u32 space; member
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/
H A Dintel_ring_types.h45 u32 space; member
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/siena/
H A Dtx.c216 int space; in efx_siena_xdp_tx_buffers() local
248 /* Check for available space. We should never need multiple in efx_siena_xdp_tx_buffers()
251 space = efx->txq_entries + in efx_siena_xdp_tx_buffers()
257 if (i >= space) in efx_siena_xdp_tx_buffers()
/kernel/linux/linux-5.10/arch/s390/boot/
H A Dhead.S200 chi %r0,0x20 # is it a space ?
324 .Lctl: .quad 0x04040000 # cr0: AFP registers & secondary space
325 .quad 0 # cr1: primary space segment table
331 .quad 0 # cr7: secondary space segment table
337 .quad 0 # cr13: home space segment table
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/
H A Dccm_mbox.c180 /* Reserve space if reply is bigger */ in nfp_ccm_mbox_copy_in()
377 int space = nn->tlv_caps.mbox_len - NFP_NET_CFG_MBOX_SIMPLE_VAL; variable
381 space -= 4; /* for End TLV */
386 space -= 4 + nfp_ccm_mbox_maxlen(skb);
390 space -= 4 + nfp_ccm_mbox_maxlen(skb);
391 if (space < 0)
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/
H A Dccm_mbox.c180 /* Reserve space if reply is bigger */ in nfp_ccm_mbox_copy_in()
377 int space = nn->tlv_caps.mbox_len - NFP_NET_CFG_MBOX_SIMPLE_VAL; variable
381 space -= 4; /* for End TLV */
386 space -= 4 + nfp_ccm_mbox_maxlen(skb);
390 space -= 4 + nfp_ccm_mbox_maxlen(skb);
391 if (space < 0)

Completed in 15 milliseconds

12345678910>>...27