Searched refs:tmpmax (Results 1 – 2 of 2) sorted by relevance
/fs/ocfs2/ |
D | ocfs2.h | 877 int fix = 0, ret, tmpmax; in ocfs2_find_next_zero_bit_unaligned() local 879 tmpmax = max + fix; in ocfs2_find_next_zero_bit_unaligned() 882 ret = ocfs2_find_next_zero_bit(bitmap, tmpmax, start) - fix; in ocfs2_find_next_zero_bit_unaligned()
|
/fs/ext4/ |
D | mballoc.c | 416 int fix = 0, ret, tmpmax; in mb_find_next_zero_bit() local 418 tmpmax = max + fix; in mb_find_next_zero_bit() 421 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit() 429 int fix = 0, ret, tmpmax; in mb_find_next_bit() local 431 tmpmax = max + fix; in mb_find_next_bit() 434 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
|