Searched refs:total (Results 1 – 4 of 4) sorted by relevance
/sysdeps/mach/hurd/ |
A D | clock.c | 32 clock_t total; in clock() local 47 total = bi.user_time.seconds * 1000000 + bi.user_time.microseconds; in clock() 48 total += tti.user_time.seconds * 1000000 + tti.user_time.microseconds; in clock() 49 total += bi.system_time.seconds * 1000000 + bi.system_time.microseconds; in clock() 50 total += tti.system_time.seconds * 1000000 + tti.system_time.microseconds; in clock() 52 return total; in clock()
|
A D | dl-sysdep.c | 412 size_t total = 0; in __writev() local 414 total += iov[i].iov_len; in __writev() 416 if (total != 0) in __writev() 418 char buf[total], *bufp = buf; in __writev() 426 err = __io_write (_hurd_init_dtable[fd], buf, total, -1, &nwrote); in __writev()
|
/sysdeps/posix/ |
A D | libc_fatal.c | 42 writev_for_fatal (int fd, const struct iovec *iov, size_t niov, size_t total) in writev_for_fatal() argument 44 return TEMP_FAILURE_RETRY (__writev (fd, iov, niov)) == total; in writev_for_fatal() 114 ssize_t total = 0; in __libc_message() local 120 total += list->len; in __libc_message() 124 WRITEV_FOR_FATAL (fd, iov, nlist, total); in __libc_message() 128 total = ((total + 1 + GLRO(dl_pagesize) - 1) in __libc_message() 130 struct abort_msg_s *buf = __mmap (NULL, total, in __libc_message() 135 buf->size = total; in __libc_message()
|
/sysdeps/unix/sysv/linux/ |
A D | libc_fatal.c | 25 writev_for_fatal (int fd, const struct iovec *iov, size_t niov, size_t total) in writev_for_fatal() argument 32 return cnt == total; in writev_for_fatal()
|
Completed in 8 milliseconds