HomeSort by relevance Sort by last modified time
    Searched refs:fread (Results 1 - 25 of 683) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/tsan/lit_tests/
user_fopen.cc 27 fread(&buf, 1, 1, f);
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 67 if(!(fread(file_hdr, 1, IVF_FILE_HDR_SZ, infile) == IVF_FILE_HDR_SZ
76 while(fread(frame_hdr, 1, IVF_FRAME_HDR_SZ, infile) == IVF_FRAME_HDR_SZ) {
85 if(fread(frame, 1, frame_sz, infile) != frame_sz)
  /external/libvpx/libvpx/test/
ivf_video_source.h 61 ASSERT_EQ(kIvfFileHdrSize, fread(file_hdr, 1, kIvfFileHdrSize, input_file_))
79 if (fread(frame_hdr, 1, kIvfFrameHdrSize, input_file_)
89 fread(compressed_frame_buf_, 1, frame_sz_, input_file_))
  /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)
  /device/asus/flo/conn_init/
conn_init.c 41 n = fread(macAddress, 12, 1, fp);
  /device/lge/mako/conn_init/
conn_init.c 41 n = fread(macAddress, 12, 1, fp);
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 39 extern size_t fread(void * restrict, size_t, size_t, FILE * restrict);
  /external/llvm/utils/count/
count.c 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/Win32/
esUtil_TGA.c 79 fread ( &Header, sizeof(TGA_HEADER), 1, fp );
96 fread(Buffer24, sizeof(RGBTRIPLE), (*width) * (*height), fp);
  /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}}
  /external/libyuv/files/util/
compare.cc 41 amt1 = fread(buf1, 1, kBlockSize, fin1);
44 amt2 = fread(buf2, 1, kBlockSize, fin2);
  /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 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/chromium_org/third_party/libpng/
pngrio.c 57 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
58 * instead of an int, which is what fread() actually returns.
64 check = (png_size_t)fread(data, (png_size_t)1, length,
99 check = fread(n_data, 1, length, io_ptr);
115 err = fread(buf, (png_size_t)1, read, io_ptr);
  /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);
  /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/chromium_org/third_party/openssl/openssl/crypto/bio/
bio_lcl.h 10 #define UP_fread fread
  /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);

Completed in 1500 milliseconds

1 2 3 4 5 6 7 8 91011>>