Home | History | Annotate | Download | only in zlib

Lines Matching refs:items

218 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
221 ulg bsize = (ulg)items*size;
277 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
280 return _halloc((long)items, size);
298 extern voidp calloc OF((uInt items, uInt size));
302 voidpf zcalloc (opaque, items, size)
304 unsigned items;
307 if (opaque) items += size - size; /* make compiler happy */
308 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
309 (voidpf)calloc(items, size);