Lines Matching refs:maxcount
235 u32 maxcount = 0xffffffff; in find_next_position() local
258 if (maxcount == 0xffffffff) { in find_next_position()
259 maxcount = hdr.seq; in find_next_position()
261 } else if (hdr.seq < 0x40000000 && maxcount > 0xc0000000) { in find_next_position()
262 maxcount = hdr.seq; in find_next_position()
264 } else if (hdr.seq > maxcount && hdr.seq < 0xc0000000) { in find_next_position()
265 maxcount = hdr.seq; in find_next_position()
267 } else if (hdr.seq > maxcount && hdr.seq > 0xc0000000 in find_next_position()
268 && maxcount > 0x80000000) { in find_next_position()
269 maxcount = hdr.seq; in find_next_position()
273 if (maxcount == 0xffffffff) { in find_next_position()
279 cxt->nextcount = maxcount; in find_next_position()