Lines Matching refs:maxcount
226 u32 count[2], maxcount = 0xffffffff; in find_next_position() local
248 if (maxcount == 0xffffffff) { in find_next_position()
249 maxcount = count[0]; in find_next_position()
251 } else if (count[0] < 0x40000000 && maxcount > 0xc0000000) { in find_next_position()
252 maxcount = count[0]; in find_next_position()
254 } else if (count[0] > maxcount && count[0] < 0xc0000000) { in find_next_position()
255 maxcount = count[0]; in find_next_position()
257 } else if (count[0] > maxcount && count[0] > 0xc0000000 in find_next_position()
258 && maxcount > 0x80000000) { in find_next_position()
259 maxcount = count[0]; in find_next_position()
263 if (maxcount == 0xffffffff) { in find_next_position()
269 cxt->nextcount = maxcount; in find_next_position()