HomeSort by relevance Sort by last modified time
    Searched refs:nmemb (Results 126 - 150 of 175) sorted by null

1 2 3 4 56 7

  /external/chromium_org/base/process/
memory_linux.cc 61 void* __libc_calloc(size_t nmemb, size_t size);
  /external/clang/test/Analysis/
malloc-annotations.c 6 void *calloc(size_t nmemb, size_t size);
taint-generic.c 29 void *calloc(size_t nmemb, size_t size);
  /external/compiler-rt/lib/asan/
asan_allocator.h 147 void *asan_calloc(uptr nmemb, uptr size, StackTrace *stack);
asan_allocator2.cc 605 void *asan_calloc(uptr nmemb, uptr size, StackTrace *stack) {
606 if (CallocShouldReturnNullDueToOverflow(size, nmemb))
608 void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC, false);
612 REAL(memset)(ptr, 0, nmemb * size);
  /external/libvorbis/include/vorbis/
vorbisfile.h 40 size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource);
  /frameworks/av/include/media/stagefright/
MPEG4Writer.h 59 inline size_t write(const void *ptr, size_t size, size_t nmemb);
  /external/bison/darwin-lib/
stdlib.h 491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
    [all...]
  /external/bison/linux-lib/
stdlib.h 491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
    [all...]
  /external/bison/lib/
stdlib.in.h 169 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
170 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
172 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 94 INTERCEPTOR(SIZE_T, fread, void *ptr, SIZE_T size, SIZE_T nmemb, void *file) {
96 SIZE_T res = REAL(fread)(ptr, size, nmemb, file);
102 INTERCEPTOR(SIZE_T, fread_unlocked, void *ptr, SIZE_T size, SIZE_T nmemb,
105 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file);
813 INTERCEPTOR(void *, calloc, SIZE_T nmemb, SIZE_T size) {
814 if (CallocShouldReturnNullDueToOverflow(size, nmemb))
822 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
828 return MsanReallocate(&stack, 0, nmemb * size, sizeof(u64), true);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_stdinc.h 170 extern DECLSPEC void * SDLCALL SDL_calloc(size_t nmemb, size_t size);
230 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
  /external/valgrind/main/exp-sgcheck/
h_main.c 374 void* h_replace_calloc ( ThreadId tid, SizeT nmemb, SizeT size1 )
376 return alloc_and_new_mem_heap ( tid, nmemb*size1, VG_(clo_alignment),
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdlib.in.h 123 extern void * calloc (size_t nmemb, size_t size);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 170 extern DECLSPEC void * SDLCALL SDL_calloc(size_t nmemb, size_t size);
230 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 170 extern DECLSPEC void * SDLCALL SDL_calloc(size_t nmemb, size_t size);
230 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_stdinc.h 170 extern DECLSPEC void * SDLCALL SDL_calloc(size_t nmemb, size_t size);
230 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 406 grep_calloc(size_t nmemb, size_t size)
410 if ((ptr = calloc(nmemb, size)) == NULL)
  /external/qemu/audio/
audio_int.h 230 void *audio_calloc (const char *funcname, int nmemb, size_t size);
audio.c 272 void *audio_calloc (const char *funcname, int nmemb, size_t size)
277 len = nmemb * size;
278 cond = !nmemb || !size;
279 cond |= nmemb < 0;
285 AUD_log (NULL, "nmemb=%d size=%zu (len=%zu)\n", nmemb, size, len);
    [all...]
  /external/valgrind/main/include/
pub_tool_libcbase.h 213 extern void VG_(ssort)( void* base, SizeT nmemb, SizeT size,
  /external/wpa_supplicant_8/src/utils/
http_curl.c 150 static size_t curl_cb_write(void *ptr, size_t size, size_t nmemb,
155 n = os_realloc(ctx->curl_buf, ctx->curl_buf_len + size * nmemb + 1);
159 os_memcpy(n + ctx->curl_buf_len, ptr, size * nmemb);
160 n[ctx->curl_buf_len + size * nmemb] = '\0';
161 ctx->curl_buf_len += size * nmemb;
162 return size * nmemb;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc     [all...]
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 191 SANITIZER_INTERFACE_ATTRIBUTE void *__dfsw_calloc(size_t nmemb, size_t size,
195 void *p = calloc(nmemb, size);
196 dfsan_set_label(0, p, nmemb * size);
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 447 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 )
449 if (complain_about_silly_args2(nmemb, size1)) {
452 return MC_(new_block) ( tid, 0, nmemb*size1, VG_(clo_alignment),
    [all...]

Completed in 1651 milliseconds

1 2 3 4 56 7