/external/libvpx/examples/ |
decoder_tmpl.c | 64 if(!(fread(file_hdr, 1, IVF_FILE_HDR_SZ, infile) == IVF_FILE_HDR_SZ 73 while(fread(frame_hdr, 1, IVF_FRAME_HDR_SZ, infile) == IVF_FRAME_HDR_SZ) { 82 if(fread(frame, 1, frame_sz, infile) != frame_sz)
|
/external/llvm/lib/Analysis/ |
ProfileInfoLoader.cpp | 46 if (fread(&NumEntries, sizeof(unsigned), 1, F) != 1) { 57 if (fread(&TempSpace[0], sizeof(unsigned)*NumEntries, 1, F) != 1) { 97 while (fread(&PacketType, sizeof(unsigned), 1, F) == 1) { 107 if (fread(&ArgLength, sizeof(unsigned), 1, F) != 1) { 118 if (fread(&Chars[0], (ArgLength+3) & ~3, 1, F) != 1) {
|
/bionic/libc/bionic/ |
pututline.c | 42 while (fread(&u, sizeof(struct utmp), 1, f) == 1)
|
utmp.c | 64 if (fread(&utmp, sizeof(utmp), 1, ut) == 1)
|
/external/llvm/utils/count/ |
count.c | 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
|
/external/valgrind/tsan/ |
common_util.h | 41 #define read(fd, buf, size) fread(buf, 1, size, fd)
|
/build/tools/bin2asm/ |
data | 38 amt = fread(buf, 1, sizeof(buf), stdin);
|
icudata.c | 49 amt = fread(buf, 1, sizeof(buf), stdin);
|
/external/clang/test/Analysis/ |
stream.c | 11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream); 19 fread(buf, 1, 1, p); // expected-warning {{Stream pointer might be NULL}}
|
/ndk/sources/host-tools/toolbox/ |
cmp_win.c | 72 n1 = fread(buf1, 1, BUFSIZE, f1); 73 n2 = fread(buf2, 1, BUFSIZE, f2);
|
/external/bison/lib/ |
unlocked-io.h | 87 # undef fread macro 88 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) macro 90 # define fread_unlocked(w,x,y,z) fread (w,x,y,z)
|
/external/libpng/ |
pngrio.c | 72 /* fread() returns 0 on error, so it is OK to store this in a png_size_t 73 * instead of an int, which is what fread() actually returns. 79 check = (png_size_t)fread(data, (png_size_t)1, length, 114 check = fread(n_data, 1, length, io_ptr); 130 err = fread(buf, (png_size_t)1, read, io_ptr);
|
/external/libvorbis/examples/ |
encoder_example.c | 86 fread(readbuffer,1,2,stdin); 90 fread(readbuffer,1,6,stdin); 182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */
|
/external/qemu/distrib/libpng-1.2.19/ |
pngrio.c | 50 /* fread() returns 0 on error, so it is OK to store this in a png_size_t 51 * instead of an int, which is what fread() actually returns. 57 check = (png_size_t)fread(data, (png_size_t)1, length, 90 check = fread(n_data, 1, length, io_ptr); 106 err = fread(buf, (png_size_t)1, read, io_ptr);
|
/external/webkit/Source/WebCore/platform/network/win/ |
DownloadBundleWin.cpp | 135 if (fread(&footerMagicNumber, 4, 1, bundle) != 1) { 156 if (fread(&footerLength, 4, 1, bundle) != 1) { 170 if (fread(footerBuffer.data(), 1, footerLength, bundle) != footerLength) {
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
unlocked-io.h | 86 # undef fread macro 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)
|
/external/dropbear/libtomcrypt/src/hashes/helper/ |
hash_filehandle.c | 54 x = fread(buf, 1, sizeof(buf), in);
|
/external/dropbear/libtomcrypt/src/mac/f9/ |
f9_file.c | 59 x = fread(buf, 1, sizeof(buf), in);
|
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_file.c | 63 x = fread(buf, 1, sizeof(buf), in);
|
/external/dropbear/libtomcrypt/src/mac/omac/ |
omac_file.c | 59 x = fread(buf, 1, sizeof(buf), in);
|
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_file.c | 60 x = fread(buf, 1, sizeof(buf), in);
|
/external/dropbear/libtomcrypt/src/mac/xcbc/ |
xcbc_file.c | 59 x = fread(buf, 1, sizeof(buf), in);
|
/external/expat/examples/ |
elements.c | 53 int len = (int)fread(buf, 1, sizeof(buf), stdin);
|
/external/jpeg/ |
jinclude.h | 83 * The modules that use fread() and fwrite() always invoke them through 89 ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
|
/external/libvorbis/include/vorbis/ |
vorbisfile.h | 30 * the stdio functions fread, fseek, fclose, ftell. 76 (size_t (*)(void *, size_t, size_t, void *)) fread, 83 (size_t (*)(void *, size_t, size_t, void *)) fread, 90 (size_t (*)(void *, size_t, size_t, void *)) fread, 97 (size_t (*)(void *, size_t, size_t, void *)) fread,
|