Searched refs:tmpmax (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.10/fs/ocfs2/ |
D | ocfs2.h | 926 int fix = 0, ret, tmpmax; in ocfs2_find_next_zero_bit_unaligned() local 928 tmpmax = max + fix; in ocfs2_find_next_zero_bit_unaligned() 931 ret = ocfs2_find_next_zero_bit(bitmap, tmpmax, start) - fix; in ocfs2_find_next_zero_bit_unaligned()
|
/Linux-v5.10/fs/ext4/ |
D | mballoc.c | 427 int fix = 0, ret, tmpmax; in mb_find_next_zero_bit() local 429 tmpmax = max + fix; in mb_find_next_zero_bit() 432 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit() 440 int fix = 0, ret, tmpmax; in mb_find_next_bit() local 442 tmpmax = max + fix; in mb_find_next_bit() 445 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
|