Lines Matching full:size_t
24 * We need the NULL macro and size_t typedef.
54 * NOTE: we assume the size parameters to these functions are of type size_t.
61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
73 * In ANSI C, and indeed any rational implementation, size_t is also the
76 * size_t is defined as long or unsigned long. To ensure consistent results
80 #define SIZEOF(object) ((size_t) sizeof(object))
89 ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))