Home
last modified time | relevance | path

Searched refs:fseeko (Results 1 - 25 of 42) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dfseeko.c40 int result = fseeko(fp, 0L, SEEK_SET); in fseeko_0100()
43 t_error("%s fseeko failed, result is %d\n", __func__, result); in fseeko_0100()
46 t_error("%s fseeko failed, ch is %c\n", __func__, ch); in fseeko_0100()
70 int result = fseeko(fp, 8L, SEEK_SET); in fseeko_0200()
73 t_error("%s fseeko failed, result is %d\n", __func__, result); in fseeko_0200()
76 t_error("%s fseeko failed, ch is %c\n", __func__, ch); in fseeko_0200()
100 int code = fseeko(fp, 10L, SEEK_SET); in fseeko_0300()
102 t_error("%s fseeko failed, code is %d\n", __func__, code); in fseeko_0300()
105 int data = fseeko(fp, 0L, SEEK_CUR); in fseeko_0300()
107 t_error("%s fseeko faile in fseeko_0300()
[all...]
/third_party/ffmpeg/tools/
H A Dqt-faststart.c34 #undef fseeko macro
35 #define fseeko(x, y, z) fseeko64(x, y, z) macro
39 #undef fseeko macro
40 #define fseeko(x, y, z) _fseeki64(x, y, z) macro
490 if (fseeko(infile, -ATOM_PREAMBLE_SIZE, SEEK_CUR) || in main()
504 ret = fseeko(infile, atom_size - ATOM_PREAMBLE_SIZE * 2, SEEK_CUR); in main()
506 ret = fseeko(infile, atom_size - ATOM_PREAMBLE_SIZE, SEEK_CUR); in main()
565 if (fseeko(infile, -(atom_size + free_size), SEEK_END)) { in main()
608 if (fseeko(infile, start_offset, SEEK_SET)) { in main()
/third_party/musl/src/stdio/
H A Dfseek.c54 weak_alias(__fseeko, fseeko);
56 weak_alias(fseeko, fseeko64);
/third_party/ltp/testcases/kernel/fs/stream/
H A Dstream03.c226 if (fseeko(stream, strlen(junk), 1) != 0) { in main()
227 tst_brkm(TFAIL, NULL, "fseeko failed: %s", in main()
241 if (fseeko(stream, 0, 2) != 0) { in main()
242 tst_brkm(TFAIL, NULL, "fseeko failed: %s", in main()
256 if (fseeko(stream, 0, 0) != 0) { in main()
257 tst_brkm(TFAIL, NULL, "fseeko failed: %s", in main()
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdio.h141 int fseeko(FILE *, off_t, int);
210 #define fseeko64 fseeko
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdio.h143 int fseeko(FILE *, off_t, int);
211 #define fseeko64 fseeko
/third_party/musl/porting/linux/user/include/
H A Dstdio.h144 int fseeko(FILE *, off_t, int);
217 #define fseeko64 fseeko
/third_party/musl/porting/uniproton/kernel/include/
H A Dstdio.h141 int fseeko(FILE *, off_t, int);
210 #define fseeko64 fseeko
/third_party/musl/include/
H A Dstdio.h144 int fseeko(FILE *, off_t, int);
217 #define fseeko64 fseeko
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dfseek.c48 weak_alias(__fseeko, fseeko);
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dfseek.c41 weak_alias(__fseeko, fseeko);
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dfseek.c41 weak_alias(__fseeko, fseeko);
/third_party/musl/libc-test/src/functional/
H A Dfdopen.c26 TEST(fseeko(f, 0, SEEK_SET)==0); in fdopen_1()
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/
H A Dioapi.h56 #define fseeko64 fseeko
H A Dioapi.c21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
H A Dminizip.c34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
/third_party/skia/third_party/externals/zlib/contrib/minizip/
H A Dioapi.h56 #define fseeko64 fseeko
H A Dioapi.c21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
H A Dminizip.c35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
/third_party/zlib/contrib/minizip/
H A Dioapi.h58 #define fseeko64 fseeko
H A Dioapi.c21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
/third_party/backends/backend/escl/
H A Descl_mupdf.c89 int64_t n = fseeko(state->file, offset, whence); in seek_file_escl()
/third_party/musl/libc-test/src/api/
H A Dstdio.c55 {int(*p)(FILE*,off_t,int) = fseeko;} in f()
/third_party/eudev/src/udev/
H A Dudevadm-hwdb.c375 err = fseeko(t.f, sizeof(struct trie_header_f), SEEK_SET); in trie_store()
393 err = fseeko(t.f, 0, SEEK_SET); in trie_store()
/third_party/musl/libc-test/src/functionalext/fortify/
H A Dinvalid_param.c292 fseeko(NULL, 0L, SEEK_END); in fseeko_0100()

Completed in 11 milliseconds

12