Lines Matching defs:addr
94 cf_free(void *opaque, void *addr)
264 * Seek to the location specified by addr
267 cf_seek(fileid_t *filep, off_t addr, int whence)
273 dprintf("to %lx\n", addr);
276 addr += zsp->total_out;
280 if (addr < zsp->total_out) {
284 addr -= zsp->total_out;
286 while (addr > 0) {
287 readsz = MIN(addr, SEEKBUFSIZE);
289 addr -= readsz;