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

1 2 3 4 5 6 7 8 91011>>

  /hardware/qcom/audio/hal/
edid.c 66 fread(&header, 1, sizeof(header), file);
71 fread(&block, header.length, 1, file);
  /external/compiler-rt/lib/tsan/lit_tests/
user_fopen.cc 27 fread(&buf, 1, 1, f);
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 66 if(!(fread(file_hdr, 1, IVF_FILE_HDR_SZ, infile) == IVF_FILE_HDR_SZ
75 while(fread(frame_hdr, 1, IVF_FRAME_HDR_SZ, infile) == IVF_FRAME_HDR_SZ) {
84 if(fread(frame, 1, frame_sz, infile) != frame_sz)
  /external/libvpx/libvpx/test/
ivf_video_source.h 60 ASSERT_EQ(kIvfFileHdrSize, fread(file_hdr, 1, kIvfFileHdrSize, input_file_))
77 if (fread(frame_hdr, 1, kIvfFrameHdrSize, input_file_)
87 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 38 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/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/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/compiler-rt/SDKs/darwin/usr/include/
stdio.h 74 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
  /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 466 milliseconds

1 2 3 4 5 6 7 8 91011>>