Searched defs:nmemb (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DBsearch.c5 unspecified type. Where an argument declared as size_t nmemb specifies the
6 length of the array for a function, nmemb can have the value zero on a call
84 size_t nmemb,
94 for (lim = nmemb; lim != 0; lim >>= 1) {
81 bsearch( const void *key, const void *base0, size_t nmemb, size_t size, int (*compar)(const void *, const void *) ) argument
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dstdlib.h69 * @v nmemb Number of members
76 * function in zalloc(), since in most cases @c nmemb will be 1 and
79 static inline void * __malloc calloc ( size_t nmemb, size_t size ) { argument
80 return zalloc ( nmemb * size );
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/
H A Dmac_memory.cpp120 void* calloc(size_t nmemb, size_t size) argument
122 size *= nmemb;
/vbox/src/VBox/Devices/Audio/
H A Daudio.c282 void *audio_calloc (const char *funcname, int nmemb, size_t size) argument
287 len = nmemb * size;
288 cond = !nmemb || !size;
289 cond |= nmemb < 0;
295 AUD_log (NULL, "nmemb=%d size=%" FMTZ "u (len=%" FMTZ "u)\n",
296 nmemb, size, len);

Completed in 285 milliseconds