/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | fseeko.c | 40 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 D | qt-faststart.c | 34 #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 D | fseek.c | 54 weak_alias(__fseeko, fseeko); 56 weak_alias(fseeko, fseeko64);
|
/third_party/ltp/testcases/kernel/fs/stream/ |
H A D | stream03.c | 226 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 D | stdio.h | 141 int fseeko(FILE *, off_t, int); 210 #define fseeko64 fseeko
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdio.h | 143 int fseeko(FILE *, off_t, int); 211 #define fseeko64 fseeko
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdio.h | 144 int fseeko(FILE *, off_t, int); 217 #define fseeko64 fseeko
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdio.h | 141 int fseeko(FILE *, off_t, int); 210 #define fseeko64 fseeko
|
/third_party/musl/include/ |
H A D | stdio.h | 144 int fseeko(FILE *, off_t, int); 217 #define fseeko64 fseeko
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | fseek.c | 48 weak_alias(__fseeko, fseeko);
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | fseek.c | 41 weak_alias(__fseeko, fseeko);
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | fseek.c | 41 weak_alias(__fseeko, fseeko);
|
/third_party/musl/libc-test/src/functional/ |
H A D | fdopen.c | 26 TEST(fseeko(f, 0, SEEK_SET)==0); in fdopen_1()
|
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | ioapi.h | 56 #define fseeko64 fseeko
|
H A D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
H A D | minizip.c | 34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | ioapi.h | 56 #define fseeko64 fseeko
|
H A D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
H A D | minizip.c | 35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
/third_party/zlib/contrib/minizip/ |
H A D | ioapi.h | 58 #define fseeko64 fseeko
|
H A D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
/third_party/backends/backend/escl/ |
H A D | escl_mupdf.c | 89 int64_t n = fseeko(state->file, offset, whence); in seek_file_escl()
|
/third_party/musl/libc-test/src/api/ |
H A D | stdio.c | 55 {int(*p)(FILE*,off_t,int) = fseeko;} in f()
|
/third_party/eudev/src/udev/ |
H A D | udevadm-hwdb.c | 375 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 D | invalid_param.c | 292 fseeko(NULL, 0L, SEEK_END); in fseeko_0100()
|