Searched refs:ftell (Results 1 - 25 of 61) sorted by relevance

123

/haiku-fatelf/src/bin/network/tcpdump/
H A Dpcap_dump_ftell.c35 return (ftell((FILE *)p));
/haiku-fatelf/src/bin/coreutils/lib/
H A Dftello.c27 # undef ftell macro
28 # define ftello ftell
H A Dstdio.in.h301 # undef ftell
304 # undef ftell
305 # define ftell rpl_ftell
306 extern long ftell (FILE *fp) _GL_ARG_NONNULL ((1));
313 # undef ftell
320 # undef ftell
321 # define ftell rpl_ftell
331 # undef ftell
341 /* Here, either ftell is undefined (but C89 guarantees that it is
343 _GL_WARN_ON_USE (ftell, "ftel
[all...]
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dftello.c27 # undef ftell macro
28 # define ftello ftell
H A Dstdio.h312 # define ftell(fp) ftello (fp)
324 # undef ftell
326 # define ftell(f) \
327 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
332 # define ftell rpl_ftell
335 # ifndef ftell
336 # define ftell(f) \ macro
337 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
340 ftell (f))
H A Dstdio.in.h283 # define ftell(fp) ftello (fp) macro
295 # undef ftell macro
297 # define ftell(f) \ macro
298 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
303 # define ftell rpl_ftell macro
306 # ifndef ftell
307 # define ftell(f) \ macro
308 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
311 ftell (f))
/haiku-fatelf/src/tests/system/libroot/posix/
H A Dfseek_test.cpp8 /* gnulib_test_fseek() is inspired by gnulib's test-fseek.c and test-ftell.c:
389 ASSERT(ftell(fp) == 2);
391 ASSERT(ftell(fp) == 2);
393 ASSERT(ftell(fp) == 0);
395 ASSERT(ftell(fp) == 10);
400 ASSERT(ftell(fp) == 2);
405 ASSERT(ftell(fp) == 3);
407 ASSERT(ftell(fp) == 2);
410 ASSERT(ftell(fp) == 2);
412 ASSERT(ftell(f
[all...]
H A Dtst-ungetwc2.c49 pos = ftell(fp);
60 pos = ftell(fp);
67 pos = ftell(fp);
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DStdIOCallback.cpp138 mCurrentPosition = ftell(File);
148 mCurrentPosition = ftell(File);
170 long Result=ftell(File);
/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Dioftell.c69 weak_alias (_IO_ftell, ftell)
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dwrite_entry.c467 TRACE_OUT(("Header of %s @%ld", namelist, ftell(fp)));
483 TRACE_OUT(("Numerics begin at %04lx", ftell(fp)));
490 TRACE_OUT(("String offsets begin at %04lx", ftell(fp)));
497 TRACE_OUT(("String table begins at %04lx", ftell(fp)));
526 TRACE_OUT(("WRITE extended-header @%ld", ftell(fp)));
530 TRACE_OUT(("WRITE %d booleans @%ld", tp->ext_Booleans, ftell(fp)));
539 TRACE_OUT(("WRITE %d numbers @%ld", tp->ext_Numbers, ftell(fp)));
551 TRACE_OUT(("WRITE offsets @%ld", ftell(fp)));
/haiku-fatelf/src/tests/kits/midi/synth_file_reader/
H A DSynthFileReader.h54 uint32 Tell() { return ftell(fFile); }
H A DSynthFileReader.cpp125 nextChunk = ftell(fFile);
228 long start = ftell(fFile);
234 printf("%6.6lx(%3.3lx) ", ftell(fFile)-1, ftell(fFile)-start-1);
262 cur = ftell(fFile);
309 long pos = ftell(fFile);
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstdio.in.h358 # define ftell(fp) ftello (fp)
370 # undef ftell
372 # define ftell(f) \
373 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
378 # define ftell rpl_ftell
381 # ifndef ftell
382 # define ftell(f) \
383 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
386 ftell (f))
/haiku-fatelf/headers/cpp/
H A Diostdio.h79 #define ftell _IO_ftell macro
/haiku-fatelf/src/bin/sharutils/src/
H A Dunshar.c151 position = ftell (file);
206 position = ftell (file);
286 current_position = ftell (file);
/haiku-fatelf/src/bin/sharutils/lib/
H A Dsystem.h161 long ftell ();
/haiku-fatelf/src/bin/unzip/
H A Dcrypt.c229 if ((n = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
279 if ((offset = (ulg)ftell(source)) == (ulg)-1L ||
320 if ((offset = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
H A Dcryptf.c232 if ((n = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
282 if ((offset = (ulg)ftell(source)) == (ulg)-1L ||
323 if ((offset = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
/haiku-fatelf/src/bin/zip/
H A Dcrypt.c230 if ((n = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
287 if ((offset = (ulg)ftell(source)) == (ulg)-1L ||
329 if ((offset = (ulg)ftell(dest)) == (ulg)-1L) return ZE_TEMP;
H A Dzipcloak.c365 if ((start_offset = (ulg)ftell(outzip)) == (ulg)-1L)
373 if ((length = (ulg)ftell(outzip)) == (ulg)-1L)
H A Dzipnote.c494 if ((c = ftell(y)) == (ulg)(-1L)) /* get start of central */
499 if ((s = ftell(y)) == (ulg)-1L) /* get end of central */
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsistream.c51 long pp=ftell(file);
/haiku-fatelf/src/libs/print/libprint/
H A DPackBits.cpp177 long size = ftell(input);
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_file.c226 filelen = (size_t) ftell(fp);
310 long pos = ftell(sfp->fp);
378 return ftell(sfp->fp);

Completed in 212 milliseconds

123