Lines Matching refs:off
77 lseek32_common(file_t *fp, int stype, offset_t off, offset_t max, in lseek32_common() argument
94 noff = (u_offset_t)off; in lseek32_common()
102 if (reg && off > (max - curoff)) { in lseek32_common()
106 noff = (u_offset_t)(off + curoff); in lseek32_common()
118 if (reg && (off > (max - (offset_t)vattr.va_size))) { in lseek32_common()
122 noff = (u_offset_t)(off + (offset_t)vattr.va_size); in lseek32_common()
134 noff = (u_offset_t)off; in lseek32_common()
163 noff = (u_offset_t)off; in lseek32_common()
177 if (off < (offset_t)vattr.va_size) in lseek32_common()
206 lseek32(int32_t fdes, off32_t off, int32_t stype) in lseek32() argument
228 error = lseek32_common(fp, stype, (offset_t)off, in lseek32()
231 error = lseek32_common(fp, stype, (offset_t)(uint_t)off, in lseek32()
250 offset_t off = ((u_offset_t)off2 << 32) | (u_offset_t)off1; in llseek32() local
252 offset_t off = ((u_offset_t)off1 << 32) | (u_offset_t)off2; in llseek32() local
258 error = lseek32_common(fp, stype, off, MAXOFFSET_T, &retoff); in llseek32()
274 lseek64(int fdes, off_t off, int stype) in lseek64() argument
287 new_off = off; in lseek64()
309 new_off = (offset_t)off; in lseek64()
338 new_off = off; in lseek64()
352 if (off < (offset_t)vattr.va_size) { in lseek64()