Lines Matching defs:size
58 size_t size; /* requested size of allocation */
71 local void *mem_alloc(void *mem, unsigned count, unsigned size)
76 size_t len = count * (size_t)size;
96 item->size = len;
103 zone->total += item->size;
144 zone->total -= next->size;
278 parameter to inflateInit2(), len is the size of the output buffer, and err
371 inf("", "bad window size", 0, 1, 0, Z_STREAM_ERROR);
402 inf("8 99", "set window size from header", 0, 0, 0, Z_OK);
403 inf("78 9c", "bad zlib window size", 0, 8, 0, Z_DATA_ERROR);
511 unsigned len, size;
521 size = len << 3;
522 out = malloc(size);
540 strm.avail_out = size;