Searched refs:whence (Results 26 - 50 of 53) sorted by relevance

123

/external/libvpx/
H A Dvpxdec.c492 nestegg_seek_cb(int64_t offset, int whence, void * userdata) argument
494 switch(whence) {
495 case NESTEGG_SEEK_SET: whence = SEEK_SET; break;
496 case NESTEGG_SEEK_CUR: whence = SEEK_CUR; break;
497 case NESTEGG_SEEK_END: whence = SEEK_END; break;
499 return fseek(userdata, offset, whence)? -1 : 0;
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c767 z_off_t ZEXPORT gzseek (file, offset, whence)
770 int whence;
774 if (s == NULL || whence == SEEK_END ||
783 if (whence == SEEK_SET) {
809 if (whence == SEEK_CUR) {
H A Dzlib.h1184 z_off_t offset, int whence));
1188 uncompressed data stream. The whence parameter is defined as in lseek(2);
/external/strace/
H A Ddesc.c225 static const struct xlat whence[] = { variable in typeref:struct:xlat
275 tprintf(", whence=");
276 printxval(whence, fl.l_whence, "SEEK_???");
298 tprintf(", whence=");
299 printxval(whence, fl.l_whence, "SEEK_???");
H A Dfile.c587 static const struct xlat whence[] = { variable in typeref:struct:xlat
611 printxval(whence, _whence, "SEEK_???");
631 printxval(whence, _whence, "SEEK_???");
664 printxval(whence, tcp->u_arg[4], "SEEK_???");
695 printxval(whence, tcp->u_arg[argn], "SEEK_???");
2751 printxval(whence, tcp->u_arg[4], "L_???");
2771 printxval(whence, tcp->u_arg[4], "L_???");
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dast.py910 if token.whence == tokenize.WHENCE_STREAM:
911 token.whence = tokenize.WHENCE_QUEUE
914 assert token.whence == tokenize.WHENCE_QUEUE, token
919 if tokens[-1].whence == tokenize.WHENCE_STREAM:
921 token.whence = tokenize.WHENCE_QUEUE
924 assert tokens[-1].whence == tokenize.WHENCE_QUEUE, tokens
1563 internal_token.whence = token.whence
H A Dtokenize.py79 self.whence = WHENCE_STREAM
/external/qemu/hw/
H A Dhw.h249 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence);
H A Dgoldfish_nand.c181 static int do_lseek(int fd, off_t offset, int whence) argument
185 ret = lseek(fd, offset, whence);
/external/valgrind/main/coregrind/
H A Dm_libcfile.c213 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence )
220 (UWord)&result, whence);
223 SysRes res = VG_(do_syscall3)(__NR_lseek, fd, offset, whence);
229 offset & 0xffffffff, offset >> 32, whence);
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.c650 off_t yaffs_lseek(int fd, off_t offset, int whence) argument
666 else if(whence == SEEK_SET)
673 else if(whence == SEEK_CUR)
680 else if(whence == SEEK_END)
/external/zlib/src/as400/
H A Dzlib.inc208 D whence 10i 0 value Origin
214 D whence 10i 0 value Origin
220 D whence 10i 0 value Origin
/external/chromium/sdch/open-vcdiff/src/
H A Dzlib.h1187 z_off_t offset, int whence));
1191 uncompressed data stream. The whence parameter is defined as in lseek(2);
/external/qemu/
H A Dsavevm.c606 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence) argument
608 if (whence == SEEK_SET) {
610 } else if (whence == SEEK_CUR) {
/external/linux-tools-perf/util/ui/browsers/
H A Dhists.c638 off_t offset, int whence)
647 switch (whence) {
637 ui_browser__hists_seek(struct ui_browser *self, off_t offset, int whence) argument
/external/e2fsprogs/lib/ext2fs/
H A Dext2fs.h891 int whence, __u64 *ret_pos);
893 int whence, ext2_off_t *ret_pos);
/external/tremolo/Tremolo/
H A Dvorbisfile.c715 static int _fseek64_wrap(FILE *f,ogg_int64_t off,int whence){ argument
717 return fseek(f,(long)off,whence);
/external/libvorbis/lib/
H A Dvorbisfile.c867 static int _fseek64_wrap(FILE *f,ogg_int64_t off,int whence){ argument
869 return fseek(f,off,whence);
/external/libvpx/nestegg/src/
H A Dnestegg.c503 ne_io_seek(nestegg_io * io, int64_t offset, int whence) argument
505 return io->seek(offset, whence, io->userdata);
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-aix5.c1533 long, fd, long, offset, long, whence, void*, arg4);
1702 PRE_REG_READ3(long, "lseek", long, fd, long, offset, long, whence);
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm528 ;;; Restore the stack and return from whence we came.
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm447 ;;; Restore the stack and return from whence we came.
/external/flac/libFLAC/
H A Dmetadata_iterators.c142 static int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence);
3323 int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence) argument
3325 return fseeko((FILE*)handle, (off_t)offset, whence);
/external/quake/quake/src/QW/scitech/include/
H A Dmgraph.h882 int (*fseek)(FILE *f,long offset,int whence);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGRAPH.H882 int (*fseek)(FILE *f,long offset,int whence);

Completed in 497 milliseconds

123