| /third_party/ulib/ngunwind/include/ngunwind/private/ |
| A D | remote.h | 14 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch8() local 22 val >>= 8*off; in fetch8() 24 val >>= 8*(WSIZE - 1 - off); in fetch8() 34 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch16() local 37 assert ((off & 0x1) == 0); in fetch16() 44 val >>= 8*off; in fetch16() 46 val >>= 8*(WSIZE - 2 - off); in fetch16() 56 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch32() local 59 assert ((off & 0x3) == 0); in fetch32() 66 val >>= 8*off; in fetch32() [all …]
|
| A D | dwarf_i.h | 111 unw_word_t off = *addr - aligned_addr; in dwarf_readu8() local 117 val >>= 8*off; in dwarf_readu8() 119 val >>= 8*(sizeof (unw_word_t) - 1 - off); in dwarf_readu8()
|
| /third_party/ulib/musl/src/stdio/ |
| A D | fseek.c | 3 int __fseeko_unlocked(FILE* f, off_t off, int whence) { in __fseeko_unlocked() argument 6 off -= f->rend - f->rpos; in __fseeko_unlocked() 19 if (f->seek(f, off, whence) < 0) in __fseeko_unlocked() 29 int __fseeko(FILE* f, off_t off, int whence) { in __fseeko() argument 32 result = __fseeko_unlocked(f, off, whence); in __fseeko() 37 int fseek(FILE* f, long off, int whence) { in fseek() argument 38 return __fseeko(f, off, whence); in fseek()
|
| A D | fgetpos.c | 4 off_t off = __ftello(f); in fgetpos() local 5 if (off < 0) in fgetpos() 7 *(off_t*)pos = off; in fgetpos()
|
| A D | __stdio_seek.c | 4 off_t __stdio_seek(FILE* f, off_t off, int whence) { in __stdio_seek() argument 5 return lseek(f->fd, off, whence); in __stdio_seek()
|
| A D | open_memstream.c | 15 static off_t ms_seek(FILE* f, off_t off, int whence) { in ms_seek() argument 24 if (off < -base || off > SSIZE_MAX - base) in ms_seek() 26 return c->pos = base + off; in ms_seek()
|
| A D | open_wmemstream.c | 17 static off_t wms_seek(FILE* f, off_t off, int whence) { in wms_seek() argument 26 if (off < -base || off > SSIZE_MAX / 4 - base) in wms_seek() 29 return c->pos = base + off; in wms_seek()
|
| A D | fmemopen.c | 12 static off_t mseek(FILE* f, off_t off, int whence) { in mseek() argument 21 if (off < -base || off > (ssize_t)c->size - base) in mseek() 23 return c->pos = base + off; in mseek()
|
| /third_party/uapp/fsck-msdosfs/ |
| A D | fat.c | 61 off_t off; in checkdirty() local 69 off = boot->bpbResSectors; in checkdirty() 70 off *= boot->bpbBytesPerSec; in checkdirty() 78 if (lseek(fs, off, SEEK_SET) != off) { in checkdirty() 158 off_t off; in _readfat() local 167 off = boot->bpbResSectors + no * boot->FATsecs; in _readfat() 168 off *= boot->bpbBytesPerSec; in _readfat() 170 if (lseek(fs, off, SEEK_SET) != off) { in _readfat() 556 off_t off; in writefat() local 645 off *= boot->bpbBytesPerSec; in writefat() [all …]
|
| A D | dir.c | 309 off_t off; in delete() local 321 off *= boot->bpbBytesPerSec; in delete() 322 if (lseek(f, off, SEEK_SET) != off in delete() 331 if (lseek(f, off, SEEK_SET) != off in delete() 441 off_t off; in readDosDirSection() local 462 off = boot->bpbResSectors + boot->bpbFATs * in readDosDirSection() 466 off = cl * boot->bpbSecPerClust + boot->ClusterOffset; in readDosDirSection() 469 off *= boot->bpbBytesPerSec; in readDosDirSection() 470 if (lseek(f, off, SEEK_SET) != off in readDosDirSection() 846 if (lseek(f, off, SEEK_SET) != off in readDosDirSection() [all …]
|
| /third_party/ulib/musl/src/time/ |
| A D | __tz.c | 54 int off = 3600 * getint(p); in getoff() local 57 off += 60 * getint(p); in getoff() 60 off += getint(p); in getoff() 63 return neg ? -off : off; in getoff() 272 int off = 0; in scan_trans() local 291 off = (int32_t)zi_read32(types + 6 * idx[m - 1]); in scan_trans() 292 if (t - off < (int64_t)x) { in scan_trans() 312 off = (int32_t)zi_read32(types + 6 * idx[a - 1]); in scan_trans() 313 if (t - off < (int64_t)x) { in scan_trans()
|
| /third_party/ulib/backtrace/ |
| A D | pecoff.c | 102 unsigned char off[4]; member 275 coff_long_name_eq (const char *name, unsigned int off, in coff_long_name_eq() argument 278 if (off >= str_view->len) in coff_long_name_eq() 280 return strcmp (name, (const char *)str_view->data + off) == 0; in coff_long_name_eq() 319 uint32_t off = coff_read4 (sym->name.long_name.off); in coff_expand_symbol() local 321 if (off >= strtab_size) in coff_expand_symbol() 323 isym->name = (const char *) strtab + off; in coff_expand_symbol()
|
| /third_party/uapp/dash/src/ |
| A D | options.c | 442 int off = shellparam.optoff; in getopts() local 447 if (ind <= 1 || off < 0 || strlen(optnext[-1]) < off) in getopts() 450 p = optnext[-1] + off; in getopts()
|
| A D | var.c | 356 listvars(int on, int off, char ***end) in listvars() argument 365 mask = on | off; in listvars() 393 showvars(const char *prefix, int on, int off) in showvars() argument 398 ep = listvars(on, off, &epend); in showvars()
|
| A D | TOUR | 90 stack oriented memory allocation scheme. Allocating off a stack 104 operations, but grow the stack if you run off the end: 209 tin; otherwise it forks off a child to execute the command and 219 restored without forking off a child process. This is accom-
|
| /third_party/lib/acpica/generate/lint/ |
| A D | lint.bat | 13 @echo off
|
| /third_party/uapp/dash/src/bltin/ |
| A D | zircon.c | 26 off_t off; in zxc_dump() local 39 off = 0; in zxc_dump() 47 hexdump8_ex(buf, len, off); in zxc_dump() 48 off += len; in zxc_dump()
|
| /third_party/ulib/musl/src/internal/ |
| A D | stdio_impl.h | 45 off_t off; member
|
| /third_party/ulib/musl/ldso/ |
| A D | dynlink.c | 1202 size_t off = ph_load->p_vaddr + (ph->p_offset - ph_load->p_offset); in read_buildid() local 1211 memcpy(&hdr, (char*)p->l_map.l_addr + off, sizeof(hdr)); in read_buildid() 1214 off += header_size; in read_buildid() 1216 uint8_t* payload = (uint8_t*)p->l_map.l_addr + off; in read_buildid() 1217 off += payload_size; in read_buildid()
|
| /third_party/ulib/chromiumos-platform-ec/include/chromiumos-platform-ec/ |
| A D | ec_commands.h | 1733 } dump, off, on, init, get_seq, get_params_v0, get_params_v1, member 1809 } off, on, init, set_brightness, seq, reg, set_rgb, member
|
| /third_party/ulib/musl/ |
| A D | WHATSNEW | 239 - off-by-one error in scanf %n results 324 - siglongjmp signal mask clobbering (off-by-one pointer error) 838 - time_t/struct tm conversion off-by-one-day in december 1034 - ecvt/fcvt decimal position off-by-one 1205 - off-by-one error in confstr return value 1577 - off-by-one error in getsubopt leaving equals sign in value result
|
| /third_party/dev/ethernet/e1000/ |
| A D | README | 275 ifconfig emX -polling (to turn it off)
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 374 feature on/off during program execution. 754 - Fix an off-by-one heap profile statistics bug that could be observed in 789 - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
|
| /third_party/lib/acpica/ |
| A D | changes.txt | 2955 interrupts off, which is not going to happen in a kernel interpreter. 12626 Changed the subsystem initialization sequence to hold off 13614 Make "acpi=off" actually do what it says, and not use the ACPI 13767 Added an "optimization" message type that is optional (off by 16149 operands off of the operand stack to display information. The
|
| /third_party/lib/acpica/tests/misc/ |
| A D | grammar.asl | 6688 BYT0, 8, // Start off with a BYTE
|