/kernel/linux/linux-5.10/arch/sparc/lib/ |
D | bitext.c | 55 offset = t->first_free; in bit_map_string_get() 85 if (offset == t->first_free) in bit_map_string_get() 86 t->first_free = find_next_zero_bit in bit_map_string_get() 88 t->first_free + len); in bit_map_string_get() 115 if (offset < t->first_free) in bit_map_clear() 116 t->first_free = offset; in bit_map_clear()
|
/kernel/linux/linux-5.10/fs/hpfs/ |
D | dnode.c | 159 le32_add_cpu(&d->first_free, 4); in set_last_pointer() 160 if (le32_to_cpu(d->first_free) > 2048) { in set_last_pointer() 162 le32_add_cpu(&d->first_free, -4); in set_last_pointer() 198 le32_add_cpu(&d->first_free, d_size); in hpfs_add_de() 211 d->first_free = cpu_to_le32(le32_to_cpu(d->first_free) - le16_to_cpu(de->length)); in hpfs_delete_de() 212 memmove(de, de_next_de(de), le32_to_cpu(d->first_free) + (char *)d - (char *)de); in hpfs_delete_de() 276 if (le32_to_cpu(d->first_free) + de_size(namelen, down_ptr) <= 2048) { in hpfs_add_to_dnode() 300 memcpy(nd, d, le32_to_cpu(d->first_free)); in hpfs_add_to_dnode() 327 memmove((char *)nd + 20, de, le32_to_cpu(nd->first_free) + (char *)nd - (char *)de); in hpfs_add_to_dnode() 328 le32_add_cpu(&nd->first_free, -((char *)de - (char *)nd - 20)); in hpfs_add_to_dnode() [all …]
|
D | map.c | 187 if (le16_to_cpu(fnode->btree.first_free) != in hpfs_map_fnode() 240 if (le16_to_cpu(anode->btree.first_free) != in hpfs_map_anode() 280 if (le32_to_cpu(dnode->first_free) > 2048) { in hpfs_map_dnode() 281 hpfs_error(s, "dnode %08x has first_free == %08x", secno, le32_to_cpu(dnode->first_free)); in hpfs_map_dnode() 284 for (p = 20; p < le32_to_cpu(dnode->first_free); p += d[p] + (d[p+1] << 8)) { in hpfs_map_dnode() 304 if (p != le32_to_cpu(dnode->first_free)) { in hpfs_map_dnode()
|
D | anode.c | 135 anode->btree.first_free = btree->first_free; in hpfs_add_sector_to_btree() 141 btree->first_free = cpu_to_le16((char *)&(btree->u.internal[1]) - (char *)btree); in hpfs_add_sector_to_btree() 157 le16_add_cpu(&btree->first_free, 12); in hpfs_add_sector_to_btree() 178 le16_add_cpu(&btree->first_free, 8); in hpfs_add_sector_to_btree() 208 anode->btree.first_free = cpu_to_le16(16); in hpfs_add_sector_to_btree() 241 memcpy(&ranode->btree, btree, le16_to_cpu(btree->first_free)); in hpfs_add_sector_to_btree() 257 btree->first_free = cpu_to_le16((char *)&btree->u.internal[2] - (char *)btree); in hpfs_add_sector_to_btree() 420 btree->first_free = cpu_to_le16(8); in hpfs_truncate_btree() 439 btree->first_free = cpu_to_le16(8 + 8 * btree->n_used_nodes); in hpfs_truncate_btree() 473 btree->first_free = cpu_to_le16(8 + 12 * btree->n_used_nodes); in hpfs_truncate_btree()
|
D | hpfs_fn.h | 123 …e->first_free)>=0x14 && le32_to_cpu(dnode->first_free)<=0xa00,("HPFS: dnode_end_de: dnode->first_f… in dnode_end_de() 124 return (void *) dnode + le32_to_cpu(dnode->first_free); in dnode_end_de()
|
D | hpfs.h | 283 __le32 first_free; /* offset from start of dnode to member 408 __le16 first_free; /* offset from start of header to member
|
D | alloc.c | 445 d->first_free = cpu_to_le32(52); in hpfs_alloc_dnode() 467 f->btree.first_free = cpu_to_le16(8); in hpfs_alloc_fnode() 485 a->btree.first_free = cpu_to_le16(8); in hpfs_alloc_anode()
|
D | namei.c | 88 fnode->btree.first_free = cpu_to_le16(0x14); in hpfs_mkdir()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/ |
D | smt.c | 67 struct smt_entry *first_free = NULL; in find_or_alloc_smte() local 72 if (!first_free) in find_or_alloc_smte() 73 first_free = e; in find_or_alloc_smte() 85 if (first_free) { in find_or_alloc_smte() 86 e = first_free; in find_or_alloc_smte()
|
D | l2t.c | 302 struct l2t_entry *first_free = NULL; in find_or_alloc_l2e() local 306 if (!first_free) in find_or_alloc_l2e() 307 first_free = e; in find_or_alloc_l2e() 317 if (first_free) { in find_or_alloc_l2e() 318 e = first_free; in find_or_alloc_l2e()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/nx-gzip/ |
D | gunz_test.c | 283 int first_free, last_free, first_used, last_used; in decompress_file() local 437 first_free = fifo_free_first_bytes(cur_in, used_in, fifo_in_len); in decompress_file() 445 read_sz = NX_MIN(free_space, first_free); in decompress_file() 618 first_free = fifo_free_first_bytes(cur_out, used_out, fifo_out_len); in decompress_file() 628 first_free = NX_MIN(target_max, first_free); in decompress_file() 629 if (first_free > 0) { in decompress_file() 631 nx_append_dde(ddl_out, fifo_out + first_offset, first_free); in decompress_file() 635 last_free = NX_MIN(target_max - first_free, last_free); in decompress_file()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/mthca/ |
D | mthca_srq.c | 294 srq->first_free = 0; in mthca_alloc_srq() 500 first_ind = srq->first_free; in mthca_tavor_post_srq_recv() 503 ind = srq->first_free; in mthca_tavor_post_srq_recv() 541 srq->first_free = next_ind; in mthca_tavor_post_srq_recv() 557 first_ind = srq->first_free; in mthca_tavor_post_srq_recv() 593 ind = srq->first_free; in mthca_arbel_post_srq_recv() 624 srq->first_free = next_ind; in mthca_arbel_post_srq_recv()
|
D | mthca_provider.h | 212 int first_free; member
|
/kernel/linux/linux-5.10/arch/sparc/include/asm/ |
D | bitext.h | 20 int first_free; member
|
/kernel/linux/linux-5.10/mm/ |
D | percpu.c | 330 return block->first_free; in pcpu_next_hint() 590 block->first_free = min(block->first_free, start); in pcpu_block_update() 713 bit_off = chunk_md->first_free; in pcpu_chunk_refresh_hint() 743 start = block->first_free; in pcpu_block_refresh_hint() 797 if (s_off == s_block->first_free) in pcpu_block_update_hint_alloc() 798 s_block->first_free = find_next_zero_bit( in pcpu_block_update_hint_alloc() 839 e_block->first_free = find_next_zero_bit( in pcpu_block_update_hint_alloc() 983 block->first_free = 0; in pcpu_block_update_hint_free() 1203 if (bit_off == chunk_md->first_free) in pcpu_alloc_area() 1204 chunk_md->first_free = find_next_zero_bit( in pcpu_alloc_area() [all …]
|
D | percpu-internal.h | 49 int first_free; /* block position of first free */ member
|
D | percpu-stats.c | 128 P("first_bit", chunk_md->first_free); in chunk_map_stats()
|
/kernel/linux/linux-5.10/drivers/tty/vt/ |
D | keyboard.c | 2006 char *first_free, *fj, *fnw; in vt_do_kdgkb_ioctl() local 2056 first_free = funcbufptr + (funcbufsize - funcbufleft); in vt_do_kdgkb_ioctl() 2062 fj = first_free; in vt_do_kdgkb_ioctl() 2069 memmove(fj + delta, fj, first_free - fj); in vt_do_kdgkb_ioctl() 2103 if (first_free > fj) { in vt_do_kdgkb_ioctl() 2104 memmove(fnw + (fj - funcbufptr) + delta, fj, first_free - fj); in vt_do_kdgkb_ioctl()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
D | qed_cxt.h | 293 u64 first_free; member
|
D | qed_cxt.c | 865 p_t2->first_free = (u64)p_t2->dma_mem[0].phys_addr; in qed_cxt_src_t2_alloc() 1650 p_hwfn->p_cxt_mngr->src_t2.first_free); in qed_src_init_pf()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/ |
D | ice_flex_pipe.c | 3580 s8 first_free = ICE_FD_FV_NOT_FOUND; in ice_update_fd_swap() local 3599 if (first_free == ICE_FD_FV_NOT_FOUND && es[i].prot_id != in ice_update_fd_swap() 3601 first_free = i - 1; in ice_update_fd_swap() 3611 orig_free = first_free; in ice_update_fd_swap() 3628 if (first_free + 1 < (s8)ice_fd_pairs[index].count) in ice_update_fd_swap() 3633 es[first_free - k].prot_id = in ice_update_fd_swap() 3635 es[first_free - k].off = in ice_update_fd_swap() 3638 if (k > first_free) in ice_update_fd_swap() 3642 mask_sel |= BIT(first_free - k); in ice_update_fd_swap() 3645 pair_start[index] = first_free; in ice_update_fd_swap() [all …]
|
/kernel/linux/linux-5.10/fs/btrfs/ |
D | scrub.c | 158 int first_free; member 609 sctx->first_free = 0; in scrub_setup_ctx() 1978 sctx->curr = sctx->first_free; in scrub_add_page_to_rd_bio() 1980 sctx->first_free = sctx->bios[sctx->curr]->next_free; in scrub_add_page_to_rd_bio() 1986 wait_event(sctx->list_wait, sctx->first_free != -1); in scrub_add_page_to_rd_bio() 2283 sbio->next_free = sctx->first_free; in scrub_bio_end_io_worker() 2284 sctx->first_free = sbio->index; in scrub_bio_end_io_worker()
|