Lines Matching refs:ctrl
92 off_t ctrl[3]; in bspatch() local
186 ctrl[i] = ParseInt64(buf); in bspatch()
190 if (ctrl[0] < 0 || ctrl[1] < 0) in bspatch()
194 if (newpos + ctrl[0] > newsize) in bspatch()
198 lenread = BZ2_bzRead(&dbz2err, dpfbz2, new_buf + newpos, ctrl[0]); in bspatch()
199 if ((lenread < ctrl[0]) || in bspatch()
213 if ((old_file_pos = oldpos + ctrl[0]) > oldsize) in bspatch()
232 newpos += ctrl[0]; in bspatch()
233 oldpos += ctrl[0]; in bspatch()
236 if (newpos + ctrl[1] > newsize) in bspatch()
240 lenread = BZ2_bzRead(&ebz2err, epfbz2, new_buf + newpos, ctrl[1]); in bspatch()
241 if ((lenread < ctrl[1]) || in bspatch()
246 newpos += ctrl[1]; in bspatch()
247 oldpos += ctrl[2]; in bspatch()