Lines Matching refs:inp
45 } *kbuf = (void *) buf, *outp, *inp; in __getdents() local
63 inp = kbuf; in __getdents()
66 while (&inp->b < &kbuf->b + retval) in __getdents()
72 size_t old_reclen = inp->k.d_reclen; in __getdents()
78 const uint64_t d_ino = inp->k.d_ino; in __getdents()
79 const int64_t d_off = inp->k.d_off; in __getdents()
80 const uint8_t d_type = inp->k.d_type; in __getdents()
82 memmove (outp->u.d_name, inp->k.d_name, in __getdents()
89 if ((sizeof (outp->u.d_ino) != sizeof (inp->k.d_ino) in __getdents()
91 || (sizeof (outp->u.d_off) != sizeof (inp->k.d_off) in __getdents()
108 inp = (void *) inp + old_reclen; in __getdents()