Home
last modified time | relevance | path

Searched refs:ifmt (Results 1 – 3 of 3) sorted by relevance

/linux/fs/erofs/
H A Dinode.c39 unsigned int ifmt, ofs; in erofs_read_inode() local
53 ifmt = le16_to_cpu(dic->i_format); in erofs_read_inode()
54 if (ifmt & ~EROFS_I_ALL) { in erofs_read_inode()
56 ifmt, vi->nid); in erofs_read_inode()
61 vi->datalayout = erofs_inode_datalayout(ifmt); in erofs_read_inode()
69 switch (erofs_inode_version(ifmt)) { in erofs_read_inode()
128 erofs_inode_version(ifmt), vi->nid); in erofs_read_inode()
H A Dinternal.h297 static inline unsigned int erofs_inode_version(unsigned int ifmt) in erofs_inode_version() argument
299 return (ifmt >> EROFS_I_VERSION_BIT) & EROFS_I_VERSION_MASK; in erofs_inode_version()
302 static inline unsigned int erofs_inode_datalayout(unsigned int ifmt) in erofs_inode_datalayout() argument
304 return (ifmt >> EROFS_I_DATALAYOUT_BIT) & EROFS_I_DATALAYOUT_MASK; in erofs_inode_datalayout()
/linux/drivers/media/platform/ti/omap3isp/
H A Disppreview.c1166 const struct v4l2_mbus_framefmt *ifmt = &prev->formats[PREV_PAD_SINK]; in preview_adjust_bandwidth() local
1197 requests_per_frame = DIV_ROUND_UP(ifmt->width * 2, 256) * ifmt->height; in preview_adjust_bandwidth()