Lines Matching refs:maxcount
220 u32 count[2], maxcount = 0xffffffff; in find_next_position() local
242 if (maxcount == 0xffffffff) { in find_next_position()
243 maxcount = count[0]; in find_next_position()
245 } else if (count[0] < 0x40000000 && maxcount > 0xc0000000) { in find_next_position()
246 maxcount = count[0]; in find_next_position()
248 } else if (count[0] > maxcount && count[0] < 0xc0000000) { in find_next_position()
249 maxcount = count[0]; in find_next_position()
251 } else if (count[0] > maxcount && count[0] > 0xc0000000 in find_next_position()
252 && maxcount > 0x80000000) { in find_next_position()
253 maxcount = count[0]; in find_next_position()
257 if (maxcount == 0xffffffff) { in find_next_position()
263 cxt->nextcount = maxcount; in find_next_position()