Searched refs:clu (Results 1 - 13 of 13) sorted by relevance

/linux-master/drivers/media/platform/renesas/vsp1/
H A Dvsp1_clu.c28 static inline void vsp1_clu_write(struct vsp1_clu *clu, argument
43 static int clu_set_table(struct vsp1_clu *clu, struct v4l2_ctrl *ctrl) argument
48 dlb = vsp1_dl_body_get(clu->pool);
56 spin_lock_irq(&clu->lock);
57 swap(clu->clu, dlb);
58 spin_unlock_irq(&clu->lock);
66 struct vsp1_clu *clu = local
71 clu_set_table(clu, ctrl);
75 clu
177 struct vsp1_clu *clu = to_clu(&entity->subdev); local
194 struct vsp1_clu *clu = to_clu(&entity->subdev); local
222 struct vsp1_clu *clu = to_clu(&entity->subdev); local
239 struct vsp1_clu *clu; local
[all...]
H A Dvsp1_clu.h34 struct vsp1_dl_body *clu; member in struct:vsp1_clu
H A Dvsp1.h89 struct vsp1_clu *clu; member in struct:vsp1_device
H A Dvsp1_drv.c296 vsp1->clu = vsp1_clu_create(vsp1);
297 if (IS_ERR(vsp1->clu)) {
298 ret = PTR_ERR(vsp1->clu);
302 list_add_tail(&vsp1->clu->entity.list_dev, &vsp1->entities);
/linux-master/fs/exfat/
H A Ddir.c72 struct exfat_chain dir, clu; local
96 exfat_chain_dup(&clu, &dir);
98 if (clu.flags == ALLOC_NO_FAT_CHAIN) {
99 clu.dir += clu_offset;
100 clu.size -= clu_offset;
106 clu.dir = ei->hint_bmap.clu;
109 while (clu_offset > 0 && clu.dir != EXFAT_EOF_CLUSTER) {
110 if (exfat_get_next_cluster(sb, &(clu.dir)))
117 while (clu
321 exfat_alloc_new_dir(struct inode *inode, struct exfat_chain *clu) argument
578 exfat_walk_fat_chain(struct super_block *sb, struct exfat_chain *p_dir, unsigned int byte_offset, unsigned int *clu) argument
614 unsigned int off, clu = 0; local
825 unsigned int clu = exfat_sector_to_cluster(sbi, sec); local
959 exfat_set_empty_hint(struct exfat_inode_info *ei, struct exfat_hint_femp *candi_empty, struct exfat_chain *clu, int dentry, int num_entries, int entry_type) argument
1010 struct exfat_chain clu; local
1214 struct exfat_chain clu; local
[all...]
H A Dfatent.c154 unsigned int clu; local
172 clu = p_chain->dir;
175 BITMAP_OFFSET_SECTOR_INDEX(sb, CLUSTER_TO_BITMAP_ENT(clu));
182 if (clu < last_cluster)
184 BITMAP_OFFSET_SECTOR_INDEX(sb, CLUSTER_TO_BITMAP_ENT(clu+1));
187 if (clu == last_cluster || cur_cmap_i != next_cmap_i) {
192 exfat_clear_bitmap(inode, clu, (sync && IS_DIRSYNC(inode)));
193 clu++;
199 unsigned int n_clu = clu;
213 exfat_clear_bitmap(inode, clu, (syn
241 unsigned int clu, next; local
268 exfat_zeroed_cluster(struct inode *dir, unsigned int clu) argument
427 unsigned int clu; local
[all...]
H A Dballoc.c80 struct exfat_chain clu; local
83 exfat_chain_set(&clu, sbi->root_dir, 0, ALLOC_FAT_CHAIN);
84 while (clu.dir != EXFAT_EOF_CLUSTER) {
89 ep = exfat_get_dentry(sb, &clu, i, &bh);
108 if (exfat_get_next_cluster(sb, &clu.dir))
125 int exfat_set_bitmap(struct inode *inode, unsigned int clu, bool sync) argument
132 if (!is_valid_cluster(sbi, clu))
135 ent_idx = CLUSTER_TO_BITMAP_ENT(clu);
144 void exfat_clear_bitmap(struct inode *inode, unsigned int clu, bool sync) argument
152 if (!is_valid_cluster(sbi, clu))
180 exfat_find_free_bitmap(struct super_block *sb, unsigned int clu) argument
[all...]
H A Dfile.c26 struct exfat_chain clu; local
39 exfat_chain_set(&clu, ei->start_clu, num_clusters, ei->flags);
40 ret = exfat_find_last_cluster(sb, &clu, &last_clu);
44 clu.dir = last_clu + 1;
47 clu.dir = EXFAT_EOF_CLUSTER;
50 clu.size = 0;
51 clu.flags = ei->flags;
54 &clu, IS_DIRSYNC(inode));
60 if (clu.flags != ei->flags)
64 if (clu
149 struct exfat_chain clu; local
[all...]
H A Dnamei.c214 struct exfat_chain clu; local
234 exfat_chain_dup(&clu, &hint_femp->cur);
236 exfat_chain_dup(&clu, p_dir);
241 clu.dir != EXFAT_EOF_CLUSTER) {
244 ret = exfat_get_empty_dentry_set(es, sb, &clu, i, num_entries);
254 if (clu.flags == ALLOC_NO_FAT_CHAIN) {
255 if (--clu.size > 0)
256 clu.dir++;
258 clu.dir = EXFAT_EOF_CLUSTER;
260 if (exfat_get_next_cluster(sb, &clu
301 struct exfat_chain clu; local
469 struct exfat_chain clu; local
866 struct exfat_chain clu; local
[all...]
H A Dinode.c121 * *clu = (~0), if it's unable to allocate a new cluster
124 unsigned int *clu, int create)
143 *clu = EXFAT_EOF_CLUSTER;
147 *clu = last_clu = ei->start_clu;
150 if (clu_offset > 0 && *clu != EXFAT_EOF_CLUSTER) {
154 *clu = EXFAT_EOF_CLUSTER;
156 *clu += clu_offset;
161 &fclus, clu, &last_clu, 1);
171 /* hint_bmap.clu should be valid */
172 WARN_ON(ei->hint_bmap.clu <
123 exfat_map_cluster(struct inode *inode, unsigned int clu_offset, unsigned int *clu, int create) argument
[all...]
H A Dexfat_fs.h111 #define EXFAT_CLU_TO_DEN(clu, sbi) \
112 ((clu) << ((sbi)->cluster_size_bits - DENTRY_SIZE_BITS))
129 #define CLUSTER_TO_BITMAP_ENT(clu) ((clu) - EXFAT_RESERVED_CLUSTERS)
138 #define IGNORED_BITS_REMAINED(clu, clu_base) ((1UL << ((clu) - (clu_base))) - 1)
183 unsigned int clu; member in struct:exfat_hint
436 int exfat_zeroed_cluster(struct inode *dir, unsigned int clu);
445 int exfat_set_bitmap(struct inode *inode, unsigned int clu, bool sync);
446 void exfat_clear_bitmap(struct inode *inode, unsigned int clu, boo
[all...]
H A Dnls.c748 struct exfat_chain clu; local
753 clu.dir = sbi->root_dir;
754 clu.flags = ALLOC_FAT_CHAIN;
756 while (clu.dir != EXFAT_EOF_CLUSTER) {
758 ep = exfat_get_dentry(sb, &clu, i, &bh);
789 if (exfat_get_next_cluster(sb, &(clu.dir)))
H A Dsuper.c78 buf->f_blocks = sbi->num_clusters - 2; /* clu 0 & 1 */
350 ei->hint_stat.clu = sbi->root_dir;

Completed in 137 milliseconds