Searched defs:items (Results 1 - 4 of 4) sorted by relevance

/ast/src/lib/libz/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
278 return _halloc((long)items, size);
297 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, siz
[all...]
/ast/src/lib/libbz/
H A Dbzlib.c107 void* default_bzalloc ( void* opaque, Int32 items, Int32 size ) argument
109 void* v = malloc ( items * size );
/ast/src/cmd/mailx/
H A Dimap.c1879 int items; local
1890 sfprintf(sfstdout, "dump items are:");
1895 else for (items = 0;;)
1900 if (items++)
/ast/src/cmd/INIT/
H A Dratz.c500 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
801 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
804 #define ZALLOC(strm, items, size) \
805 (*((strm)->zalloc))((strm)->opaque, (items), (size))
886 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
889 ulg bsize = (ulg)items*size;
945 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
948 return _halloc((long)items, size);
967 extern voidp calloc OF((uInt items, uInt size));
972 voidpf zcalloc (opaque, items, siz
[all...]

Completed in 39 milliseconds