Lines Matching refs:set
57 unsigned int cpy, set;
60 set = (nfdt->max_fds - count) / BITS_PER_BYTE;
62 memset((char *)nfdt->open_fds + cpy, 0, set);
64 memset((char *)nfdt->close_on_exec + cpy, 0, set);
67 set = BITBIT_SIZE(nfdt->max_fds) - cpy;
69 memset((char *)nfdt->full_fds_bits + cpy, 0, set);
78 size_t cpy, set;
83 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *);
85 memset((char *)nfdt->fd + cpy, 0, set);
123 * had been set lower between the check in expand_files() and here. Deal
346 * Check whether we need to allocate a larger fd array and fd set.
423 unsigned long set;
427 set = fdt->open_fds[j++];
428 while (set) {
429 if (set & 1) {
437 set >>= 1;
828 unsigned long set;
833 set = fdt->close_on_exec[i];
834 if (!set)
837 for ( ; set ; fd++, set >>= 1) {
839 if (!(set & 1))