HomeSort by relevance Sort by last modified time
    Searched full:nmemb (Results 226 - 250 of 322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/
stdlib.h 94 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/
stdlib.h 94 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/
stdlib.h 101 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
stdlib.h 101 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
stdlib.h 101 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
stdlib.h 102 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
stdlib.h 102 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
stdlib.h 102 size_t nmemb, size_t size,
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
stdlib.h 102 size_t nmemb, size_t size,
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.h 144 void *grep_calloc(size_t nmemb, size_t size);
util.c 406 grep_calloc(size_t nmemb, size_t size)
410 if ((ptr = calloc(nmemb, size)) == NULL)
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 104 INTERCEPTOR(SIZE_T, fread, void *ptr, SIZE_T size, SIZE_T nmemb, void *file) {
106 SIZE_T res = REAL(fread)(ptr, size, nmemb, file);
113 INTERCEPTOR(SIZE_T, fread_unlocked, void *ptr, SIZE_T size, SIZE_T nmemb,
116 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file);
980 INTERCEPTOR(void *, calloc, SIZE_T nmemb, SIZE_T size) {
987 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
993 return MsanCalloc(&stack, nmemb, size);
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_dir.c 44 setByteArray(void** vpp, void* vp, size_t nmemb, size_t elem_size)
49 tmsize_t bytes = (tmsize_t)(nmemb * elem_size);
50 if (elem_size && bytes / elem_size == nmemb)
74 setDoubleArrayOneValue(double** vpp, double value, size_t nmemb)
78 *vpp = _TIFFmalloc(nmemb*sizeof(double));
81 while (nmemb--)
82 ((double*)*vpp)[nmemb] = value;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dir.c 44 setByteArray(void** vpp, void* vp, size_t nmemb, size_t elem_size)
49 tmsize_t bytes = (tmsize_t)(nmemb * elem_size);
50 if (elem_size && bytes / elem_size == nmemb)
74 setDoubleArrayOneValue(double** vpp, double value, size_t nmemb)
78 *vpp = _TIFFmalloc(nmemb*sizeof(double));
81 while (nmemb--)
82 ((double*)*vpp)[nmemb] = value;
    [all...]
  /external/wpa_supplicant_8/src/utils/
http_curl.c 153 static size_t curl_cb_write(void *ptr, size_t size, size_t nmemb,
158 n = os_realloc(ctx->curl_buf, ctx->curl_buf_len + size * nmemb + 1);
162 os_memcpy(n + ctx->curl_buf_len, ptr, size * nmemb);
163 n[ctx->curl_buf_len + size * nmemb] = '\0';
164 ctx->curl_buf_len += size * nmemb;
165 return size * nmemb;
    [all...]
  /external/curl/docs/examples/
asiohiper.cpp 312 static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data)
315 size_t written = size * nmemb;
evhiperfifo.c 295 static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data)
297 size_t realsize = size * nmemb;
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_stdinc.h 241 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
248 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, const void *));
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_stdinc.h 241 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
248 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, const void *));
  /prebuilts/misc/windows/sdl2/include/
SDL_stdinc.h 231 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
238 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, const void *));
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_stdinc.h 241 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
248 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const void *, const void *));
  /external/clang/test/Analysis/
MismatchedDeallocator-checker-test.mm 9 void *calloc(size_t nmemb, size_t size);
malloc-annotations.c 6 void *calloc(size_t nmemb, size_t size);
taint-generic.c 29 void *calloc(size_t nmemb, size_t size);
uninit-vals.m 7 void *calloc(size_t nmemb, size_t size);

Completed in 2563 milliseconds

1 2 3 4 5 6 7 8 91011>>