Searched defs:off (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/unistd/
H A Dlseek64.c32 off64_t lseek64(int fd, off64_t off, int whence) argument
36 if ( __llseek(fd, (unsigned long)(off >> 32),(unsigned long)(off), &result, whence ) < 0 )
/bionic/libc/stdio/
H A Dfgetln.c76 size_t off; local
103 * As a bonus, though, we can leave off the __SMOD.
111 for (len = fp->_r, off = 0;; len += fp->_r) {
121 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
122 len - off);
123 off = len;
135 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
H A Dfseek.c171 curoff += fp->_r; /* kill off ungetc */
256 off_t off = offset; local
258 return(fseeko(fp, off, whence));
/bionic/libc/tools/zoneinfo/
H A DZoneInfo.java42 private static String nullName(byte[] data, int where, int off) { argument
43 if (off < 0)
46 int end = where + off;
50 return new String(data, where + off, end - (where + off));
82 private static int read4(byte[] data, int off) { argument
83 return ((data[off ] & 0xFF) << 24) |
84 ((data[off + 1] & 0xFF) << 16) |
85 ((data[off + 2] & 0xFF) << 8) |
86 ((data[off
201 setRawOffset(int off) argument
[all...]
/bionic/libc/tzcode/
H A Dlocaltime.c476 int off = -1; local
489 off = toint((unsigned char *) buf + NAMELEN);
497 if (off < 0) {
498 XLOG(( "tzload: invalid offset (%d)\n", off ));
509 if (lseek(fid, off, SEEK_SET) < 0) {
510 XLOG(( "tzload: could not seek to %d in '%s'\n", off, DATAFILE ));
1048 sp->leapcnt = 0; /* so, we're off a little */
1302 lclptr->leapcnt = 0; /* so, we're off a little */
/bionic/libc/kernel/common/linux/
H A Dpkt_cls.h201 int off; member in struct:tc_u32_key
212 __u16 off; member in struct:tc_u32_sel

Completed in 254 milliseconds