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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/test/
H A Dtest.c30 stdio_seek(int64_t offset, int whence, void * file) argument
33 return fseek(fp, offset, whence);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dwebmdec.c29 static int nestegg_seek_cb(int64_t offset, int whence, void *userdata) { argument
30 switch (whence) {
32 whence = SEEK_SET;
35 whence = SEEK_CUR;
38 whence = SEEK_END;
41 return fseek(userdata, (int32_t)offset, whence) ? -1 : 0;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dwebm_video_source.h37 nestegg_seek_cb(int64_t offset, int whence, void *userdata) { argument
39 switch (whence) {
41 whence = SEEK_SET;
44 whence = SEEK_CUR;
47 whence = SEEK_END;
50 return fseek(f, (long)offset, whence) ? -1 : 0;
/hardware/ti/omap4-aah/security/tf_crypto_sst/
H A Dsst_stub.c412 SST_WHENCE whence)
419 switch(whence)
438 sOperation.params[1].value.b = (uint32_t)whence;
410 SSTSeek(SST_HANDLE hFile, int32_t nOffset, SST_WHENCE whence) argument
/hardware/ti/omap4xxx/security/tf_crypto_sst/
H A Dsst_stub.c413 SST_WHENCE whence)
420 switch(whence)
439 sOperation.params[1].value.b = (uint32_t)whence;
411 SSTSeek(SST_HANDLE hFile, int32_t nOffset, SST_WHENCE whence) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
H A Dnestegg.c520 ne_io_seek(nestegg_io * io, int64_t offset, int whence) argument
522 return io->seek(offset, whence, io->userdata);
1620 ne_buffer_seek(int64_t offset, int whence, void * user_data) argument
1625 switch(whence) {

Completed in 98 milliseconds