Lines Matching defs:size
19 int hfsplus_block_allocate(struct super_block *sb, u32 size,
32 return size;
34 hfs_dbg(BITMAP, "block_allocate: %u,%u,%u\n", size, offset, len);
39 start = size;
46 if ((size ^ offset) / PAGE_CACHE_BITS)
49 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32;
79 if (offset >= size)
84 start = size;
88 if ((size ^ offset) / PAGE_CACHE_BITS)
91 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32;
94 start = size;
99 if (start >= size) {
104 len = min(size - start, len);
135 start = size;