Lines Matching full:sizeof
35 ker = calloc(1, sizeof(*ker));
73 pids = malloc(INIT_PIDS * sizeof(pid_t));
85 new_pids = realloc(pids, 2 * pids_size * sizeof(pid_t));
103 new_pids = realloc(pids, pids_count * sizeof(pid_t));
122 off = lseek(ker->kpagecount_fd, pfn * sizeof(uint64_t), SEEK_SET);
125 if (read(ker->kpagecount_fd, count_out, sizeof(uint64_t)) <
126 (ssize_t)sizeof(uint64_t))
138 off = lseek(ker->kpageflags_fd, pfn * sizeof(uint64_t), SEEK_SET);
141 if (read(ker->kpageflags_fd, flags_out, sizeof(uint64_t)) <
142 (ssize_t)sizeof(uint64_t))