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

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/bio/
bio_lcl.h 10 #define UP_fread fread
  /external/clearsilver/man/man3/
cgiwrap_read.3 32 wraps the part of fread(stdin).
cgiwrap_init_emu.3 29 read_cb - a cb to replace fread(stdin)
  /external/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/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/zlib/contrib/minizip/
mztools.c 49 while ( fread(header, 1, 30, fpZip) == 30 ) {
76 if (fread(filename, 1, fnsize, fpZip) == fnsize) {
94 if (fread(extra, 1, extsize, fpZip) == extsize) {
116 if ((int)fread(data, 1, dataSize, fpZip) == dataSize) {
251 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
  /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)
  /packages/inputmethods/PinyinIME/jni/share/
utf16reader.cpp 63 if (fread(&header, sizeof(header), 1, fp_) != 1 || header != 0xfeff) {
81 buffer_valid_len_ = fread(buffer_, sizeof(char16),
dictlist.cpp 417 if (fread(&scis_num_, sizeof(size_t), 1, fp) != 1)
420 if (fread(start_pos_, sizeof(size_t), kMaxLemmaSize + 1, fp) !=
424 if (fread(start_id_, sizeof(size_t), kMaxLemmaSize + 1, fp) !=
433 if (fread(scis_hz_, sizeof(char16), scis_num_, fp) != scis_num_)
436 if (fread(scis_splid_, sizeof(SpellingId), scis_num_, fp) != scis_num_)
439 if (fread(buf_, sizeof(char16), start_pos_[kMaxLemmaSize], fp) !=
  /build/tools/bin2asm/
data 38 amt = fread(buf, 1, sizeof(buf), stdin);
icudata.c 49 amt = fread(buf, 1, sizeof(buf), stdin);
  /external/clearsilver/cgi/
cgiwrap.c 231 * regarding fread() on a tty stream. glibc's fread() seems to return
233 * uClibc's fread() continues reading until all requested or eof or error.
243 *read_len = fread (buf, sizeof(char), buf_len, stdin);
  /external/expat/examples/
elements.c 53 int len = (int)fread(buf, 1, sizeof(buf), stdin);
  /external/icu4c/samples/csdet/
csdet.c 47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
  /sdk/emulator/qtools/
read_elf.cpp 117 int rval = fread(hdr, sizeof(Elf32_Ehdr), 1, fobj);
143 if (fread(shdr, sz, 1, f) != 1)
163 fread(string_table, shdr->sh_size, 1, f);
172 if (fread(buffer, shdr->sh_size, 1, f) != 1)
  /frameworks/base/libs/rs/
rsFileA3D.cpp 46 len = fread(magicString, 1, 12, f);
53 len = fread(&mMajorVersion, 1, sizeof(mMajorVersion), f);
59 len = fread(&mMinorVersion, 1, sizeof(mMinorVersion), f);
66 len = fread(&flags, 1, sizeof(flags), f);
75 len = fread(&mDataSize, 1, sizeof(mDataSize), f);
81 len = fread(&tmp, 1, sizeof(tmp), f);
97 len = fread(mAlloc, 1, mDataSize, f);
  /external/srec/srec/EventLog/src/
riff.c 355 if (fread(form, 1, 4, f) != 4) break;
356 if (fread(&len, sizeof(int), 1, f) != 1)
371 if (fread(tag, 1, 4, f) != 4) break;
386 if (fread(tag, 1, 4, f) != 4) break;
387 if (fread(&len, sizeof(int), 1, f) != 1)
412 if (fread(form, 1, 4, f) != 4) break;
413 if (fread(&len, sizeof(int), 1, f) != 1)
428 if (fread(tag, 1, 4, f) != 4) break;
472 fread(&swichunk->segs.num_tuples, 1, sizeof(int), f);
484 else if (fread(swichunk->segs.tuples, 1, sub_length, f) != (size_t)sub_length
    [all...]
  /external/icu4c/samples/layout/
UnicodeReader.cpp 50 fread(startBytes, sizeof(char), 4, f);
92 fread(byteBuffer, sizeof(char), fileSize, f);
  /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)))
  /bionic/libc/bionic/
pututline.c 42 while (fread(&u, sizeof(struct utmp), 1, f) == 1)
  /external/blktrace/
blkrawverify.c 174 while ((n = fread(bit, sizeof(struct blk_io_trace), 1, ifp)) == 1) {
177 perror("fread");
199 n = fread(pdu_buf, bit->pdu_len, 1, ifp);
247 fprintf(stderr,"%s: fread failed %d/%s\n",
  /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/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);

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 91011>>