Home
last modified time | relevance | path

Searched refs:BZALLOC (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/lib/bzip2/
H A Dbzlib_decompress.c255 s->ll16 = BZALLOC( s->blockSize100k * 100000 * sizeof(UInt16) ); in BZ2_decompress()
256 s->ll4 = BZALLOC( in BZ2_decompress()
261 s->tt = BZALLOC( s->blockSize100k * 100000 * sizeof(Int32) ); in BZ2_decompress()
H A Dbzlib.c219 s = BZALLOC( sizeof(EState) ); in BZ_API()
228 s->arr1 = BZALLOC( n * sizeof(UInt32) ); in BZ_API()
229 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API()
230 s->ftab = BZALLOC( 65537 * sizeof(UInt32) ); in BZ_API()
559 s = BZALLOC( sizeof(DState) ); in BZ_API()
H A Dbzlib_private.h139 #define BZALLOC(nnn) (strm->bzalloc)(strm->opaque,(nnn),1) macro