Lines Matching defs:items
197 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
200 ulg bsize = (ulg)items*size;
256 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
259 return _halloc((long)items, size);
277 extern voidp calloc OF((uInt items, uInt size));
281 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
283 unsigned items;
286 if (opaque) items += size - size; /* make compiler happy */
287 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
288 (voidpf)calloc(items, size);