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

1 2 34 5 6 7 8 91011>>

  /external/wpa_supplicant/
os_win32.c 187 fread(buf, 1, *len, f);
os_internal.c 110 rc = fread(buf, 1, len, f);
209 fread(buf, 1, *len, f);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_win32.c 187 fread(buf, 1, *len, f);
os_internal.c 110 rc = fread(buf, 1, len, f);
209 fread(buf, 1, *len, f);
  /system/core/libctest/
ctest.c 80 while ((read = fread(buffer, sizeof(char), 512, suite->out)) > 0) {
  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 117 using std::fread;
  /build/tools/zipalign/
ZipFile.cpp 245 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
327 if (fread(checkBuf, 1, 4, mZipFp) != 4) {
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
717 count = fread(tmpBuf, 1, readSize, srcFp);
719 LOGD("fread %d bytes failed\n", (int) readSize);
809 getSize = fread(inBuf, 1, kBufSize, srcFp);
1068 if (fread(readBuf, 1, getSize, fp) != getSize) {
    [all...]
  /external/bsdiff/
bspatch.c 94 if (fread(header, 1, 32, f) < 32) {
97 err(1, "fread(%s)", argv[3]);
  /external/dropbear/libtommath/mtest/
mtest.c 51 fread(buf+1, 1, size, rng);
63 fread(buf+1, 1, size, rng);
  /external/elfutils/src/
ldlex.l 39 #undef fread
40 #define fread(b, m, n, s) fread_unlocked (b, m, n, s)
  /external/jpeg/
jdatasrc.c 12 * IMPORTANT: we assume that fread() will correctly transcribe an array of
35 #define INPUT_BUF_SIZE 4096 /* choose an efficiently fread'able size */
rdppm.c 60 * efficient than buffering a row at a time with fread(). On PCs, we must
62 * memory model, wherein fread() can't reach far memory. If you need to
64 * model, or else replace fread() with a getc() loop --- which will be much
  /frameworks/base/tools/aapt/
ZipFile.cpp 245 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
327 if (fread(checkBuf, 1, 4, mZipFp) != 4) {
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
717 count = fread(tmpBuf, 1, readSize, srcFp);
719 LOGD("fread %d bytes failed\n", (int) readSize);
809 getSize = fread(inBuf, 1, kBufSize, srcFp);
1068 if (fread(readBuf, 1, getSize, fp) != getSize) {
    [all...]
  /system/extras/tests/bionic/libc/other/
test_zlib.c 63 strm.avail_in = fread(in, 1, CHUNK, source);
113 strm.avail_in = fread(in, 1, CHUNK, source);
  /external/sonivox/arm-fm-22k/host_src/
eas_wave.c 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
345 if (fread(&tag, sizeof(tag), 1, wFile->file) != 1)
358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
374 if (fread(&wFile->wh.fc, sizeof(FMT_CHUNK), 1, wFile->file) != 1)
385 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
  /external/sonivox/arm-hybrid-22k/host_src/
eas_wave.c 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
345 if (fread(&tag, sizeof(tag), 1, wFile->file) != 1)
358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
374 if (fread(&wFile->wh.fc, sizeof(FMT_CHUNK), 1, wFile->file) != 1)
385 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.c 332 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
345 if (fread(&tag, sizeof(tag), 1, wFile->file) != 1)
358 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
374 if (fread(&wFile->wh.fc, sizeof(FMT_CHUNK), 1, wFile->file) != 1)
385 if (fread(&chunk, sizeof(chunk), 1, wFile->file) != 1)
  /packages/inputmethods/PinyinIME/jni/share/
spellingtrie.cpp 666 if (fread(&spelling_size_, sizeof(size_t), 1, fp) != 1)
669 if (fread(&spelling_num_, sizeof(size_t), 1, fp) != 1)
672 if (fread(&score_amplifier_, sizeof(float), 1, fp) != 1)
675 if (fread(&average_score_, sizeof(unsigned char), 1, fp) != 1)
685 if (fread(spelling_buf_, sizeof(char) * spelling_size_,
  /development/tools/etc1tool/
etc1tool.cpp 157 if (fread(pngHeader, 1, PNG_HEADER_SIZE, pIn) != PNG_HEADER_SIZE) {
253 if (fread(header, sizeof(header), 1, pIn) != 1) {
274 if (fread(pEncodedData, encodedSize, 1, pIn) != 1) {
  /external/bluetooth/glib/gio/xdgmime/
xdgmimemagic.c 406 bytes_read = fread (matchlet->value, 1, matchlet->value_length, magic_file);
426 bytes_read = fread (matchlet->mask, 1, matchlet->value_length, magic_file);
806 if (fread (header, 1, 12, magic_file) == 12)
  /external/zlib/contrib/minizip/
minizip.c 164 size_read = (int)fread(buf,1,size_buf,fin);
375 size_read = (int)fread(buf,1,size_buf,fin);
  /frameworks/base/libs/utils/
ZipUtils.cpp 213 int cc = fread(readBuf, 1, getSize, fp);
333 if (fread(buf, 1, 8, fp) != 8)
  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
osapi.c 484 DESCRIPTION: wrapper to the OS fread fucntion
490 return fread (ptr, size, nmemb, stream);
  /system/wlan/ti/wilink_6_1/CUDK/os/linux/src/
osapi.c 484 DESCRIPTION: wrapper to the OS fread fucntion
490 return fread (ptr, size, nmemb, stream);
  /bootable/recovery/edify/
main.c 190 int size = fread(buffer, 1, 8191, f);

Completed in 78 milliseconds

1 2 34 5 6 7 8 91011>>