/kernel/linux/linux-5.10/fs/fat/ |
D | dir.c | 281 wchar_t **unicode, unsigned char *nr_slots) in fat_parse_long() argument 301 *nr_slots = slots; in fat_parse_long() 335 *nr_slots = 0; in fat_parse_long() 470 unsigned char nr_slots; in fat_search_long() local 481 nr_slots = 0; in fat_search_long() 490 &unicode, &nr_slots); in fat_search_long() 515 if (nr_slots) { in fat_search_long() 527 nr_slots++; /* include the de */ in fat_search_long() 528 sinfo->slot_off = cpos - nr_slots * sizeof(*de); in fat_search_long() 529 sinfo->nr_slots = nr_slots; in fat_search_long() [all …]
|
D | namei_vfat.c | 582 struct msdos_dir_slot *slots, int *nr_slots) in vfat_build_slots() argument 596 *nr_slots = 0; in vfat_build_slots() 624 *nr_slots = usize / 13; in vfat_build_slots() 625 for (ps = slots, i = *nr_slots; i > 0; i--, ps++) { in vfat_build_slots() 641 (*nr_slots)++; in vfat_build_slots() 662 int err, nr_slots; in vfat_add_entry() local 673 slots, &nr_slots); in vfat_add_entry() 677 err = fat_add_entries(dir, slots, nr_slots, sinfo); in vfat_add_entry()
|
D | fat.h | 135 int nr_slots; /* number of slots + 1(de) in filename */ member 336 extern int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43legacy/ |
D | dma.c | 57 B43legacy_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); in op32_fill_descriptor() 65 if (slot == ring->nr_slots - 1) in op32_fill_descriptor() 119 return (ring->nr_slots - ring->used_slots); in free_slots() 124 B43legacy_WARN_ON(!(slot >= -1 && slot <= ring->nr_slots - 1)); in next_slot() 125 if (slot == ring->nr_slots - 1) in next_slot() 132 B43legacy_WARN_ON(!(slot >= 0 && slot <= ring->nr_slots - 1)); in prev_slot() 134 return ring->nr_slots - 1; in prev_slot() 497 for (i = 0; i < ring->nr_slots; i++) { in alloc_initial_descbuffers() 508 ring->used_slots = ring->nr_slots; in alloc_initial_descbuffers() 589 for (i = 0; i < ring->nr_slots; i++) { in free_all_descbuffers() [all …]
|
D | dma.h | 135 int nr_slots; member
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/ |
D | dma.c | 97 B43_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); in op32_fill_descriptor() 103 if (slot == ring->nr_slots - 1) in op32_fill_descriptor() 189 B43_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); in op64_fill_descriptor() 195 if (slot == ring->nr_slots - 1) in op64_fill_descriptor() 259 return (ring->nr_slots - ring->used_slots); in free_slots() 264 B43_WARN_ON(!(slot >= -1 && slot <= ring->nr_slots - 1)); in next_slot() 265 if (slot == ring->nr_slots - 1) in next_slot() 272 B43_WARN_ON(!(slot >= 0 && slot <= ring->nr_slots - 1)); in prev_slot() 274 return ring->nr_slots - 1; in prev_slot() 642 for (i = 0; i < ring->nr_slots; i++) { in alloc_initial_descbuffers() [all …]
|
D | dma.h | 241 int nr_slots; member
|
/kernel/linux/linux-5.10/fs/ |
D | pipe.c | 1249 int pipe_resize_ring(struct pipe_inode_info *pipe, unsigned int nr_slots) in pipe_resize_ring() argument 1254 bufs = kcalloc(nr_slots, sizeof(*bufs), in pipe_resize_ring() 1265 if (nr_slots < n) { in pipe_resize_ring() 1296 pipe->ring_size = nr_slots; in pipe_resize_ring() 1297 if (pipe->max_usage > nr_slots) in pipe_resize_ring() 1298 pipe->max_usage = nr_slots; in pipe_resize_ring() 1316 unsigned int nr_slots, size; in pipe_set_size() local 1325 nr_slots = size >> PAGE_SHIFT; in pipe_set_size() 1327 if (!nr_slots) in pipe_set_size() 1337 if (nr_slots > pipe->max_usage && in pipe_set_size() [all …]
|
/kernel/linux/linux-5.10/fs/afs/ |
D | dir_edit.c | 23 static int afs_find_contig_bits(union afs_xdr_dir_block *block, unsigned int nr_slots) in afs_find_contig_bits() argument 39 mask = (1 << nr_slots) - 1; in afs_find_contig_bits() 52 if (bit > 64 - nr_slots) in afs_find_contig_bits() 69 int bit, unsigned int nr_slots) in afs_set_contig_bits() argument 73 mask = (1 << nr_slots) - 1; in afs_set_contig_bits() 90 int bit, unsigned int nr_slots) in afs_clear_contig_bits() argument 94 mask = (1 << nr_slots) - 1; in afs_clear_contig_bits()
|
/kernel/linux/linux-5.10/drivers/md/ |
D | dm-switch.c | 80 sector_t nr_slots; in alloc_region_table() local 107 nr_slots = nr_regions; in alloc_region_table() 108 if (sector_div(nr_slots, sctx->region_entries_per_slot)) in alloc_region_table() 109 nr_slots++; in alloc_region_table() 111 if (nr_slots > ULONG_MAX / sizeof(region_table_slot_t)) { in alloc_region_table() 116 sctx->region_table = vmalloc(array_size(nr_slots, in alloc_region_table()
|
/kernel/linux/linux-5.10/kernel/events/ |
D | hw_breakpoint.c | 50 static int nr_slots[TYPE_MAX]; variable 93 for (i = nr_slots[type] - 1; i >= 0; i--) { in max_task_bp_pinned() 304 if (slots.pinned + (!!slots.flexible) > nr_slots[type]) in __reserve_bp_slot() 683 nr_slots[i] = hw_breakpoint_slots(i); in init_hw_breakpoint() 689 info->tsk_pinned = kcalloc(nr_slots[i], sizeof(int), in init_hw_breakpoint()
|
/kernel/linux/linux-5.10/kernel/dma/ |
D | swiotlb.c | 181 static inline unsigned long nr_slots(u64 val) in nr_slots() function 472 return nr_slots(boundary_mask + 1); in get_max_slots() 495 unsigned int nslots = nr_slots(alloc_size), stride; in find_slots() 528 nr_slots(tbl_dma_addr), in find_slots() 596 for (i = 0; i < nr_slots(alloc_size + offset); i++) in swiotlb_tbl_map_single() 615 int i, count, nslots = nr_slots(alloc_size + offset); in swiotlb_tbl_unmap_single()
|
/kernel/linux/linux-5.10/drivers/gpu/host1x/ |
D | dev.h | 45 u32 syncpt_incrs, u32 syncval, u32 nr_slots); 292 u32 syncval, u32 nr_slots) in host1x_hw_cdma_timeout_cpu_incr() argument 295 nr_slots); in host1x_hw_cdma_timeout_cpu_incr()
|
/kernel/linux/linux-5.10/arch/arm/mach-omap1/ |
D | board-h3-mmc.c | 35 .nr_slots = 1,
|
D | board-sx1-mmc.c | 42 .nr_slots = 1,
|
D | board-h2-mmc.c | 50 .nr_slots = 1,
|
D | board-palmte.c | 212 .nr_slots = 1,
|
D | board-nokia770.c | 177 .nr_slots = 1,
|
D | board-innovator.c | 349 .nr_slots = 1,
|
/kernel/linux/linux-5.10/include/linux/platform_data/ |
D | mmc-omap.h | 17 unsigned nr_slots:2; member
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
D | omap.c | 161 int nr_slots; member 274 for (i = 0; i < host->nr_slots; i++) { in mmc_omap_release_slot() 860 BUG_ON(num >= host->nr_slots); in omap_mmc_notify_cover_event() 863 if (host->nr_slots == 0 || !host->slots[num]) in omap_mmc_notify_cover_event() 1335 if (pdata->nr_slots == 0) { in mmc_omap_probe() 1425 host->nr_slots = pdata->nr_slots; in mmc_omap_probe() 1434 for (i = 0; i < pdata->nr_slots; i++) { in mmc_omap_probe() 1472 for (i = 0; i < host->nr_slots; i++) in mmc_omap_remove()
|
/kernel/linux/linux-5.10/arch/arm/mach-omap2/ |
D | board-n8x0.c | 436 .nr_slots = 0, 503 mmc1_data.nr_slots = 2; in n8x0_mmc_init()
|
/kernel/linux/linux-5.10/drivers/pci/hotplug/ |
D | acpiphp.h | 63 int nr_slots; member
|
D | acpiphp_glue.c | 307 bridge->nr_slots++; in acpiphp_add_context() 310 sun = bridge->nr_slots; in acpiphp_add_context() 318 bridge->nr_slots--; in acpiphp_add_context()
|
/kernel/linux/linux-5.10/include/linux/ |
D | pipe_fs_i.h | 269 int pipe_resize_ring(struct pipe_inode_info *pipe, unsigned int nr_slots);
|