Home
last modified time | relevance | path

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

/bionic/libc/unistd/
Dpwrite.c31 ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset) in pwrite() argument
33 return pwrite64(fd, buf, nbytes, (off64_t)offset); in pwrite()
Dpread.c31 ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset) in pread() argument
33 return pread64(fd, buf, nbytes, (off64_t)offset); in pread()
/bionic/libc/tools/zoneinfo/
DZoneCompactor.java59 int nbytes = in.read(buf); in copyFile() local
60 if (nbytes == -1) { in copyFile()
63 out.write(buf, 0, nbytes); in copyFile()
65 byte[] nret = new byte[ret.length + nbytes]; in copyFile()
67 System.arraycopy(buf, 0, nret, ret.length, nbytes); in copyFile()
/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()