Searched refs:ALLOC (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/libkern/zlib/
H A Dgzio.c70 #define ALLOC(size) malloc(size) macro
135 s = (gz_stream *)ALLOC(sizeof(gz_stream));
154 s->path = (char*)ALLOC(strlen(path)+1);
186 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
192 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
817 s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
861 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
1033 s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);

Completed in 18 milliseconds