Searched refs:nbytes (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/unistd/ |
D | pread.c | 28 extern int __pread64(int fd, void *buf, size_t nbytes, loff_t offset); 30 ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset) in pread() argument 32 return __pread64(fd, buf, nbytes, offset); in pread()
|
D | pwrite.c | 31 extern int __pwrite64(int fd, void *buf, size_t nbytes, loff_t offset); 33 ssize_t pwrite(int fd, void *buf, size_t nbytes, off_t offset) in pwrite() argument 35 return __pwrite64(fd, buf, nbytes, offset); in pwrite()
|
/bionic/libc/regex/ |
D | regcomp.c | 1026 size_t nbytes; in allocset() local 1037 nbytes = nc / CHAR_BIT * css; in allocset() 1044 ptr = (uch *)realloc((char *)p->g->setbits, nbytes); in allocset() 1052 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css); in allocset()
|