Searched refs:off (Results 1 - 25 of 39) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/src/stdio/
H A Dfgetpos.c5 off_t off = __ftello(f); local
6 if (off < 0) return -1;
7 *(off_t *)pos = off;
H A D__stdio_seek.c3 off_t __stdio_seek(FILE *f, off_t off, int whence) argument
7 if (syscall(SYS__llseek, f->fd, off>>32, off, &ret, whence)<0)
10 ret = syscall(SYS_lseek, f->fd, off, whence);
H A Dfseek.c3 int __fseeko_unlocked(FILE *f, off_t off, int whence) argument
6 if (whence == SEEK_CUR) off -= f->rend - f->rpos;
18 if (f->seek(f, off, whence) < 0) return -1;
27 int __fseeko(FILE *f, off_t off, int whence) argument
31 result = __fseeko_unlocked(f, off, whence);
36 int fseek(FILE *f, long off, int whence) argument
38 return __fseeko(f, off, whence);
H A Dopen_memstream.c15 static off_t ms_seek(FILE *f, off_t off, int whence) argument
25 if (off < -base || off > SSIZE_MAX-base) goto fail;
26 return c->pos = base+off;
H A Dopen_wmemstream.c17 static off_t wms_seek(FILE *f, off_t off, int whence) argument
27 if (off < -base || off > SSIZE_MAX/4-base) goto fail;
29 return c->pos = base+off;
H A Dfmemopen.c12 static off_t mseek(FILE *f, off_t off, int whence) argument
22 if (off < -base || off > (ssize_t)c->size-base) goto fail;
23 return c->pos = base+off;
/seL4-refos-master/libs/libmuslc/src/dirent/
H A Dseekdir.c6 void seekdir(DIR *dir, long off) argument
9 dir->tell = lseek(dir->fd, off, SEEK_SET);
/seL4-refos-master/libs/libmuslc/src/mman/
H A Dmmap.c15 void *__mmap(void *start, size_t len, int prot, int flags, int fd, off_t off) argument
17 if (off & OFF_MASK) {
29 return (void *)syscall(SYS_mmap2, start, len, prot, flags, fd, off/UNIT);
31 return (void *)syscall(SYS_mmap, start, len, prot, flags, fd, off);
/seL4-refos-master/libs/libmuslc/src/process/
H A Dfork.c28 self->robust_list.off = 0;
/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_mutex_trylock.c20 if (!self->robust_list.off) {
21 self->robust_list.off = (char*)&m->_m_lock-(char *)&m->_m_next;
/seL4-refos-master/libs/libplatsupport/src/plat/am335x/
H A Dserial.c27 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/bcm2837/
H A Dserial.c19 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/fvp/
H A Dserial.c29 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/hikey/
H A Dserial.c26 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/odroidc2/
H A Dserial.c25 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/am335x/
H A Dserial.c27 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/bcm2837/
H A Dserial.c19 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/fvp/
H A Dserial.c29 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/hikey/
H A Dserial.c26 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/odroidc2/
H A Dserial.c25 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/rockpro64/
H A Dserial.c27 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/rockpro64/
H A Dserial.c27 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/qemu-arm-virt/
H A Dserial.c29 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/libs/libplatsupport/src/plat/qemu-arm-virt/
H A Dserial.c29 #define REG_PTR(base, off) ((volatile uint32_t *)((base) + (off)))
/seL4-refos-master/kernel/include/drivers/irq/
H A Dam335x.h18 #define CMPER_REG(base, off) ((volatile uint32_t *)((base) + (off)))

Completed in 83 milliseconds

12