Home
last modified time | relevance | path

Searched refs:fread (Results 1 – 14 of 14) sorted by relevance

/ndk/sources/host-tools/toolbox/
Dcmp_win.c72 n1 = fread(buf1, 1, BUFSIZE, f1); in main()
73 n2 = fread(buf2, 1, BUFSIZE, f2); in main()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h86 # undef fread
87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) macro
89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z)
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h78 using _STLP_VENDOR_CSTD::fread;
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcstdio82 size_t fread(void* restrict ptr, size_t size, size_t nmemb,
161 using ::fread;
Dfstream591 __nmemb = fread(this->eback() + __unget_sz, 1, __nmemb, __file_);
609 size_t __nr = fread((void*)__extbufnext_, 1, __nmemb, __file_);
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio57 using ::fread;
/ndk/sources/cxx-stl/system/include/
Dcstdio57 using ::fread;
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
Dstdio_h.pass.cpp125 static_assert((std::is_same<decltype(fread((void*)0,0,0,fp)), size_t>::value), ""); in main()
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_stdio.cpp318 return fread(buf, 1, n, _M_file); in _M_read()
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp126 static_assert((std::is_same<decltype(std::fread((void*)0,0,0,fp)), std::size_t>::value), ""); in main()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dutils.c259 if (size && (nmemb=fread(ptr, size, nmemb, stream)) <= 0 && ferror(stream))
Dexecute.c1301 int n = fread (buf, sizeof(char), 4096, pipe_fp);
1470 if ((n = fread (buf, sizeof(char), 4096, pipe_fp)) > 0)
/ndk/sources/host-tools/make-3.81/
Dmain.c1509 unsigned int n = fread (buf, 1, sizeof (buf), stdin); in main()
/ndk/sources/host-tools/sed-4.2.1/
DChangeLog2547 * execute.c (read_file_line, slow_getline): the fread()