Home
last modified time | relevance | path

Searched refs:nbytes (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/unistd/
Dpread.c28 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()
Dpwrite.c31 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/
Dregcomp.c1026 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()