Lines Matching refs:noff
83 u_offset_t noff; in lseek32_common() local
94 noff = (u_offset_t)off; in lseek32_common()
95 if (reg && noff > max) { in lseek32_common()
106 noff = (u_offset_t)(off + curoff); in lseek32_common()
107 if (reg && noff > max) { in lseek32_common()
122 noff = (u_offset_t)(off + (offset_t)vattr.va_size); in lseek32_common()
123 if (reg && noff > max) { in lseek32_common()
134 noff = (u_offset_t)off; in lseek32_common()
135 error = VOP_IOCTL(vp, _FIO_SEEK_DATA, (intptr_t)(&noff), in lseek32_common()
148 if (noff >= (u_offset_t)vattr.va_size) in lseek32_common()
151 if (reg && (noff > max)) in lseek32_common()
154 fp->f_offset = (offset_t)noff; in lseek32_common()
155 (*retoff) = (offset_t)noff; in lseek32_common()
163 noff = (u_offset_t)off; in lseek32_common()
164 error = VOP_IOCTL(vp, _FIO_SEEK_HOLE, (intptr_t)(&noff), in lseek32_common()
178 noff = (u_offset_t)vattr.va_size; in lseek32_common()
182 if (reg && (noff > max)) in lseek32_common()
185 fp->f_offset = (offset_t)noff; in lseek32_common()
186 (*retoff) = (offset_t)noff; in lseek32_common()
194 ASSERT((reg && noff <= max) || !reg); in lseek32_common()
195 newoff = (offset_t)noff; in lseek32_common()