HomeSort by relevance Sort by last modified time
    Searched defs:fwrite (Results 1 - 13 of 13) sorted by null

  /external/syslinux/com32/lib/
fwrite2.c 4 * The actual fwrite() function as a non-inline
10 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE * f) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fwrite.c 2 Implementation of fwrite as declared in <stdio.h>.
43 NetBSD: fwrite.c,v 1.16 2005/11/29 03:12:00 christos Exp
44 fwrite.c 8.1 (Berkeley) 6/4/93
60 fwrite(const void *buf, size_t size, size_t count, FILE *fp) function
  /bionic/libc/include/bits/fortify/
stdio.h 111 size_t fwrite(const void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
114 "in call to 'fwrite', size * count overflows")
116 "in call to 'fwrite', size * count is too large for the given buffer") {
120 return __call_bypassing_fortify(fwrite)(buf, size, count, stream);
154 size_t __fwrite_real(const void*, size_t, size_t, FILE*) __RENAME(fwrite); variable
155 __errordecl(__fwrite_too_big_error, "fwrite called with size * count bigger than buffer");
156 __errordecl(__fwrite_overflow, "fwrite called with overflowing size * count");
197 size_t fwrite(const void* buf, size_t size, size_t count, FILE* stream) { function
  /external/syslinux/com32/include/
stdio.h 74 __extern size_t fwrite(const void *, size_t, size_t, FILE *);
82 #define fwrite(__p, __s, __n, __f) \ macro
85 : fwrite(__p,__s,__n,__f) )
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 287 size_t fwrite (const void *buffer, size_t size, size_t count, FILE *stream) function
  /external/libvpx/libvpx/build/make/
configure.sh 50 fwrite () { function
439 fwrite config.mk "ALL_TARGETS += ${t}-${toolchain}"
441 fwrite config.mk "ALL_TARGETS += ${t}"
    [all...]
  /system/core/adb/
sysdeps.h 269 #define fwrite adb_fwrite macro
sysdeps_win32.cpp 2523 #undef fwrite macro
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ip2k/
allinsn.s 777 .global fwrite
778 fwrite: label
779 fwrite
  /bionic/libc/stdio/
stdio.cpp 1097 size_t fwrite(const void* buf, size_t size, size_t count, FILE* fp) { function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 164 # undef fwrite macro
165 # define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream) macro
186 /* ??? Glibc's fwrite/fread_unlocked macros cause
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 53 /* Swallow warnings about unused results of fread/fwrite */
61 return fwrite(ptr, size, nmemb, stream);
63 #define fwrite wrap_fwrite macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 543 #define fwrite(...) (pthread_testcancel(), fwrite(__VA_ARGS__)) macro
    [all...]

Completed in 950 milliseconds