/reactos/sdk/lib/3rdparty/freetype/src/gxvalid/ |
H A D | gxvcommn.c | 73 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 D | gxvcommn.h | 491 FT_UInt nmemb, 499 FT_UInt nmemb,
|
/reactos/dll/3rdparty/libtiff/ |
H A D | tif_aux.c | 98 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 D | tif_unix.c | 317 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 D | tif_win32.c | 365 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 D | tif_dir.c | 43 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 D | tif_dirinfo.c | 291 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 D | platform.c | 89 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 D | wtsapi32.c | 291 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 D | compat.h | 275 size_t unintr_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
|
/reactos/base/setup/usetup/spapisup/ |
H A D | cabinet.c | 157 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 D | tiffio.h | 294 extern void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz);
|
/reactos/sdk/lib/crt/stdio/ |
H A D | file.c | 3077 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()
|