Searched refs:cpy (Results 1 – 1 of 1) sorted by relevance
/fs/ |
D | file.c | 65 unsigned int cpy, set; in copy_fdtable() local 69 cpy = ofdt->max_fds * sizeof(struct file *); in copy_fdtable() 71 memcpy(nfdt->fd, ofdt->fd, cpy); in copy_fdtable() 72 memset((char *)(nfdt->fd) + cpy, 0, set); in copy_fdtable() 74 cpy = ofdt->max_fds / BITS_PER_BYTE; in copy_fdtable() 76 memcpy(nfdt->open_fds, ofdt->open_fds, cpy); in copy_fdtable() 77 memset((char *)(nfdt->open_fds) + cpy, 0, set); in copy_fdtable() 78 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy); in copy_fdtable() 79 memset((char *)(nfdt->close_on_exec) + cpy, 0, set); in copy_fdtable()
|