Searched refs:nmemb (Results 76 - 100 of 137) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/libtest/
H A Dlib1507.c38 static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *userp) argument
42 (void)nmemb;
H A Dlib555.c42 size_t nmemb,
54 if(size * nmemb > strlen(UPLOADTHIS)) {
40 readcallback(void *ptr, size_t size, size_t nmemb, void *clientp) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Danyauthput.c96 static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream) argument
103 retcode = read(fd, ptr, size * nmemb);
H A Dchkspeed.c50 static size_t WriteCallback(void *ptr, size_t size, size_t nmemb, void *data) argument
56 return (size_t)(size * nmemb);
H A Dexternalsocket.c54 static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream) argument
56 int written = fwrite(ptr, size, nmemb, (FILE *)stream);
H A Dhtmltidy.c37 uint write_cb(char *in, uint size, uint nmemb, TidyBuffer *out) argument
40 r = size * nmemb;
H A Dxmlstream.c89 static size_t parseStreamCallback(void *contents, size_t length, size_t nmemb, void *userp) argument
92 size_t real_size = length * nmemb;
H A Dsmooth-gtk-thread.c58 size_t write_file(void *ptr, size_t size, size_t nmemb, FILE *stream) argument
61 return fwrite(ptr, size, nmemb, stream);
H A Dfopen.c82 size_t url_fread(void *ptr, size_t size, size_t nmemb, URL_FILE *file);
314 size_t url_fread(void *ptr, size_t size, size_t nmemb, URL_FILE *file) argument
320 want=fread(ptr,size,nmemb,file->handle.file);
324 want = nmemb * size;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/shared/
H A Dshutils.h88 * @param nmemb number of elements
92 extern int safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
98 * @param nmemb number of elements
102 extern int safe_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-common/
H A Dmalloc.h81 void* (*calloc)(size_t nmemb, size_t size) AVAHI_GCC_ALLOC_SIZE2(1,2); /**< May be NULL */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-common/
H A Dmalloc.h81 void* (*calloc)(size_t nmemb, size_t size) AVAHI_GCC_ALLOC_SIZE2(1,2); /**< May be NULL */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dfifo.h46 * @param nmemb number of elements
50 AVFifoBuffer *av_fifo_alloc_array(size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/
H A Dtool_metalink.h125 size_t metalink_write_cb(void *buffer, size_t sz, size_t nmemb,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/api/lzma/
H A Dbase.h350 * \param nmemb Number of elements like in calloc(). liblzma
351 * will always set nmemb to 1, so it is safe to
352 * ignore nmemb in a custom allocator if you like.
353 * The nmemb argument exists only for
376 void *(LZMA_API_CALL *alloc)(void *opaque, size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/api/lzma/
H A Dbase.h350 * \param nmemb Number of elements like in calloc(). liblzma
351 * will always set nmemb to 1, so it is safe to
352 * ignore nmemb in a custom allocator if you like.
353 * The nmemb argument exists only for
376 void *(LZMA_API_CALL *alloc)(void *opaque, size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pcmcia/
H A Dm32r_pcc.c85 void pcc_iorw(int sock, unsigned long port, void *buf, size_t size, size_t nmemb, int wr, int flag) argument
159 while (nmemb--) {
164 while (nmemb--) {
179 while (nmemb--) {
193 while (nmemb--) {
228 void pcc_ioread(int sock, unsigned long port, void *buf, size_t size, size_t nmemb, int flag) { argument
229 pcc_iorw(sock, port, buf, size, nmemb, 0, flag);
232 void pcc_iowrite(int sock, unsigned long port, void *buf, size_t size, size_t nmemb, int flag) { argument
233 pcc_iorw(sock, port, buf, size, nmemb, 1, flag);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dmisc.c204 void *mycalloc(size_t nmemb, size_t size)
206 void *ptr = mymalloc(nmemb * size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_libs_common/
H A Dfile_utils_flac.c38 static size_t local__fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream) argument
40 size_t ret = fwrite(ptr, size, nmemb, stream);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dstdlib.in.h91 extern void * calloc (size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dstdlib.in.h91 extern void * calloc (size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lsync/source/
H A Dlsyncd.h69 extern void * s_calloc(size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dstdlib.in.h91 extern void * calloc (size_t nmemb, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_tile.c48 multiply(TIFF* tif, size_t nmemb, size_t elem_size, const char* where) argument
50 uint32 bytes = nmemb * elem_size;
52 if (elem_size && bytes / elem_size != nmemb) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/lib/
H A Dxmalloc.c274 xcalloc_impl(size_t nmemb, size_t size, const char *file, int line,
299 ptr = calloc(nmemb, size);
301 hash_table_add(xmalloc_table, ptr, (int)(nmemb * size), file, line, func);
272 xcalloc_impl(size_t nmemb, size_t size, const char *file, int line, const char *func) argument

Completed in 776 milliseconds

123456