Home
last modified time | relevance | path

Searched full:nump (Results 1 – 11 of 11) sorted by relevance

/linux-6.12.1/drivers/scsi/sym53c8xx_2/
Dsym_malloc.c184 ++mp->nump; in ___mp0_get_mem_cluster()
192 --mp->nump; in ___mp0_free_mem_cluster()
224 ++mp->nump; in ___get_dma_mem_cluster()
246 --mp->nump; in ___free_dma_mem_cluster()
313 if (!mp->nump) in __sym_calloc_dma()
333 if (!mp->nump) in __sym_mfree_dma()
Dsym_hipd.h1158 int nump; member
/linux-6.12.1/include/linux/
Dmoduleparam.h495 * @nump: optional pointer filled in with the number written
504 #define module_param_array(name, type, nump, perm) \ argument
505 module_param_array_named(name, name, type, nump, perm)
512 * @nump: optional pointer filled in with the number written
518 #define module_param_array_named(name, array, type, nump, perm) \ argument
521 = { .max = ARRAY_SIZE(array), .num = nump, \
568 * @nump: optional pointer filled in with the number written
577 #define module_param_hw_array(name, type, hwtype, nump, perm) \ argument
580 = { .max = ARRAY_SIZE(name), .num = nump, \
/linux-6.12.1/net/sunrpc/
Ddebugfs.c125 int *nump = numv; in do_xprt_debugfs() local
133 if (*nump == 0) in do_xprt_debugfs()
136 len = snprintf(link, sizeof(link), "xprt%d", *nump); in do_xprt_debugfs()
141 (*nump)++; in do_xprt_debugfs()
/linux-6.12.1/drivers/net/ethernet/cavium/liquidio/
Dcn68xx_device.c78 tx_pipe &= 0xffffffffff00ffffULL; /* clear out NUMP field */ in lio_cn68xx_setup_pkt_ctl_regs()
79 tx_pipe |= max_oqs << 16; /* put max_oqs in NUMP field */ in lio_cn68xx_setup_pkt_ctl_regs()
/linux-6.12.1/sound/core/
Dpcm_lib.c825 * @nump: pointer to store the resultant numerator
833 unsigned int *nump, unsigned int *denp) in snd_interval_ratnum() argument
929 if (nump) in snd_interval_ratnum()
930 *nump = result_num; in snd_interval_ratnum()
943 * @nump: pointer to store the resultant numerator
952 unsigned int *nump, unsigned int *denp) in snd_interval_ratden() argument
1028 if (nump) in snd_interval_ratden()
1029 *nump = best_num; in snd_interval_ratden()
/linux-6.12.1/arch/x86/kernel/apic/
Dx2apic_uv_x.c1483 int nums, numn, nump; in build_socket_tables() local
1501 nump = maxpnode - minpnode + 1; in build_socket_tables()
1505 if ((alloc_conv_table(nump, &_pnode_to_socket) < 0) in build_socket_tables()
1565 FREE_1_TO_1_TABLE(_socket_to_pnode, _min_pnode, nums, nump); in build_socket_tables()
1566 FREE_1_TO_1_TABLE(_pnode_to_socket, _min_pnode, nums, nump); in build_socket_tables()
/linux-6.12.1/drivers/usb/dwc3/
Dgadget.c2795 * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG
2813 * Given RxFIFO Size, NUMP = RxFIFOSize / 1024;
2819 u32 nump; in dwc3_gadget_setup_nump() local
2825 nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024; in dwc3_gadget_setup_nump()
2826 nump = min_t(u32, nump, 16); in dwc3_gadget_setup_nump()
2828 /* update NumP */ in dwc3_gadget_setup_nump()
2831 reg |= nump << DWC3_DCFG_NUMP_SHIFT; in dwc3_gadget_setup_nump()
2853 * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP in __dwc3_gadget_start()
2873 * ACK with NumP=0 and PP=0 (for IN direction). This slightly improves in __dwc3_gadget_start()
/linux-6.12.1/Documentation/devicetree/bindings/usb/
Dsnps,dwc3.yaml336 In device mode, this field specifies the NUMP value that is sent in
/linux-6.12.1/drivers/scsi/
Dncr53c8xx.c221 int nump; member
356 ++mp->nump; in ___mp0_getp()
363 --mp->nump; in ___mp0_freep()
393 ++mp->nump; in ___dma_getp()
416 --mp->nump; in ___dma_freep()
466 if (mp && !mp->nump) in __m_calloc_dma()
482 if (mp && !mp->nump) in __m_free_dma()
/linux-6.12.1/include/sound/
Dpcm.h1075 unsigned int *nump, unsigned int *denp);