Home
last modified time | relevance | path

Searched refs:nmemb (Results 1 – 13 of 13) sorted by relevance

/reactos/sdk/lib/3rdparty/freetype/src/gxvalid/
H A Dgxvcommn.c73 for ( i = 0; i < nmemb; i++ ) in gxv_set_length_by_ushort_offset()
76 for ( i = 0; i < nmemb; i++ ) in gxv_set_length_by_ushort_offset()
78 buff[nmemb] = limit; in gxv_set_length_by_ushort_offset()
83 if ( buff[nmemb] > limit ) in gxv_set_length_by_ushort_offset()
86 for ( i = 0; i < nmemb; i++ ) in gxv_set_length_by_ushort_offset()
95 if ( j == nmemb ) in gxv_set_length_by_ushort_offset()
138 for ( i = 0; i < nmemb; i++ ) in gxv_set_length_by_ulong_offset()
141 for ( i = 0; i < nmemb; i++ ) in gxv_set_length_by_ulong_offset()
143 buff[nmemb] = limit; in gxv_set_length_by_ulong_offset()
148 if ( buff[nmemb] > limit ) in gxv_set_length_by_ulong_offset()
[all …]
H A Dgxvcommn.h491 FT_UInt nmemb,
499 FT_UInt nmemb,
/reactos/dll/3rdparty/libtiff/
H A Dtif_aux.c98 tmsize_t nmemb, tmsize_t elem_size, const char* what) in _TIFFCheckRealloc() argument
101 tmsize_t count = _TIFFMultiplySSize(tif, nmemb, elem_size, NULL); in _TIFFCheckRealloc()
114 what,(long) nmemb, (long) elem_size); in _TIFFCheckRealloc()
121 _TIFFCheckMalloc(TIFF* tif, tmsize_t nmemb, tmsize_t elem_size, const char* what) in _TIFFCheckMalloc() argument
123 return _TIFFCheckRealloc(tif, NULL, nmemb, elem_size, what); in _TIFFCheckMalloc()
H A Dtif_unix.c317 void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz) in _TIFFcalloc() argument
319 if( nmemb == 0 || siz == 0 ) in _TIFFcalloc()
322 return calloc((size_t) nmemb, (size_t)siz); in _TIFFcalloc()
H A Dtif_win32.c365 void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz) in _TIFFcalloc() argument
367 if( nmemb == 0 || siz == 0 ) in _TIFFcalloc()
370 return calloc((size_t) nmemb, (size_t)siz); in _TIFFcalloc()
H A Dtif_dir.c43 setByteArray(void** vpp, void* vp, size_t nmemb, size_t elem_size) in setByteArray() argument
50 tmsize_t bytes = _TIFFMultiplySSize(NULL, nmemb, elem_size, NULL); in setByteArray()
75 setDoubleArrayOneValue(double** vpp, double value, size_t nmemb) in setDoubleArrayOneValue() argument
79 *vpp = _TIFFmalloc(nmemb*sizeof(double)); in setDoubleArrayOneValue()
82 while (nmemb--) in setDoubleArrayOneValue()
83 ((double*)*vpp)[nmemb] = value; in setDoubleArrayOneValue()
H A Dtif_dirinfo.c291 td_lfind(const void *key, const void *base, size_t *nmemb, size_t size, in td_lfind() argument
296 end = (char *)base + *nmemb * size; in td_lfind()
/reactos/dll/3rdparty/mbedtls/
H A Dplatform.c89 void * mbedtls_calloc( size_t nmemb, size_t size ) in mbedtls_calloc() argument
91 return (*mbedtls_calloc_func)( nmemb, size ); in mbedtls_calloc()
/reactos/dll/win32/wtsapi32/
H A Dwtsapi32.c291 BOOL WINAPI WTSFreeMemoryExA(WTS_TYPE_CLASS type, void *ptr, ULONG nmemb) in WTSFreeMemoryExA() argument
293 TRACE("%d %p %d\n", type, ptr, nmemb); in WTSFreeMemoryExA()
301 BOOL WINAPI WTSFreeMemoryExW(WTS_TYPE_CLASS type, void *ptr, ULONG nmemb) in WTSFreeMemoryExW() argument
303 TRACE("%d %p %d\n", type, ptr, nmemb); in WTSFreeMemoryExW()
/reactos/sdk/include/reactos/libs/libmpg123/
H A Dcompat.h275 size_t unintr_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
/reactos/base/setup/usetup/spapisup/
H A Dcabinet.c157 calloc(size_t nmemb, size_t size) in calloc() argument
159 return (void *)RtlAllocateHeap(ProcessHeap, HEAP_ZERO_MEMORY, nmemb * size); in calloc()
/reactos/sdk/include/reactos/libs/libtiff/
H A Dtiffio.h294 extern void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz);
/reactos/sdk/lib/crt/stdio/
H A Dfile.c3077 size_t CDECL fwrite(const void *ptr, size_t size, size_t nmemb, FILE* file) in fwrite() argument
3079 size_t wrcnt=size * nmemb; in fwrite()
3340 size_t CDECL fread(void *ptr, size_t size, size_t nmemb, FILE* file) in fread() argument
3342 size_t rcnt=size * nmemb; in fread()