Lines Matching defs:position
1983 off_t position;
2000 position = offset;
2004 position = offset + filep->f_pos;
2008 position = offset + np->n_size;
2016 /* Attempts to set the position beyound the end of file will
2020 if ((position > (off_t)np->n_size) && ((np->n_oflags & O_WRONLY) == 0) &&
2023 position = np->n_size;
2026 /* position less than 0 should be reset to 0 */
2028 if (position < 0)
2030 position = 0;
2033 np->n_fpos = (loff_t)position;
2035 if (position > (off_t)np->n_size)
2037 np->n_size = (loff_t)position;