Lines Matching refs:PAGE_CACHE_SIZE
30 l = min_t(int, len, PAGE_CACHE_SIZE - off); in hfs_bnode_read()
36 l = min_t(int, len, PAGE_CACHE_SIZE); in hfs_bnode_read()
83 l = min_t(int, len, PAGE_CACHE_SIZE - off); in hfs_bnode_write()
90 l = min_t(int, len, PAGE_CACHE_SIZE); in hfs_bnode_write()
113 l = min_t(int, len, PAGE_CACHE_SIZE - off); in hfs_bnode_clear()
119 l = min_t(int, len, PAGE_CACHE_SIZE); in hfs_bnode_clear()
145 l = min_t(int, len, PAGE_CACHE_SIZE - src); in hfs_bnode_copy()
152 l = min_t(int, len, PAGE_CACHE_SIZE); in hfs_bnode_copy()
164 if (PAGE_CACHE_SIZE - src < PAGE_CACHE_SIZE - dst) { in hfs_bnode_copy()
165 l = PAGE_CACHE_SIZE - src; in hfs_bnode_copy()
169 l = PAGE_CACHE_SIZE - dst; in hfs_bnode_copy()
211 src = PAGE_CACHE_SIZE; in hfs_bnode_move()
229 src = PAGE_CACHE_SIZE; in hfs_bnode_move()
234 dst = PAGE_CACHE_SIZE; in hfs_bnode_move()
241 if (dst == PAGE_CACHE_SIZE) in hfs_bnode_move()
254 l = min_t(int, len, PAGE_CACHE_SIZE - src); in hfs_bnode_move()
262 l = min_t(int, len, PAGE_CACHE_SIZE); in hfs_bnode_move()
275 if (PAGE_CACHE_SIZE - src < in hfs_bnode_move()
276 PAGE_CACHE_SIZE - dst) { in hfs_bnode_move()
277 l = PAGE_CACHE_SIZE - src; in hfs_bnode_move()
281 l = PAGE_CACHE_SIZE - dst; in hfs_bnode_move()
600 min_t(int, PAGE_CACHE_SIZE, tree->node_size)); in hfs_bnode_create()
604 memset(kmap(*++pagep), 0, PAGE_CACHE_SIZE); in hfs_bnode_create()