Searched refs:strm (Results 1 - 5 of 5) sorted by path

/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/bcmsb/src/
H A Dsbmemc.S93 * t2: - wr/strm off wr/strm
530 #define strm t2 define
545 and strm,t0,0x2000 # Test for internal clock (Using strm as a temp)
546 beqz strm,strmloop
551 move strm,zero # strm loop
587 /* If no passing values, skip to next strm */
599 move strmmax,strm
[all...]
/broadcom-cfe-1.4.2/cfe/zlib/
H A Ddeflate.c82 local void flush_pending OF((z_streamp strm));
83 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
190 int ZEXPORT deflateInit_(strm, level, version, stream_size)
191 z_streamp strm;
196 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
198 /* To do: ignore strm->next_in if we use it as window */
202 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
204 z_streamp strm;
226 if (strm == Z_NULL) return Z_STREAM_ERROR;
228 strm
[all...]
H A Ddeflate.h83 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
H A Dzlib.h179 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
201 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
262 deflate() sets strm->adler to the adler32 checksum of all input read
279 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
294 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
314 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
361 below), inflate sets strm-adler to the adler32 checksum of the
363 it sets strm->adler to the adler32 checksum of all output produced
383 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
401 ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
[all...]
H A Dzutil.h45 #define ERR_RETURN(strm,err) \
46 return (strm->msg = (char*)ERR_MSG(err), (err))
215 #define ZALLOC(strm, items, size) \
216 (*((strm)->zalloc))((strm)->opaque, (items), (size))
217 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))

Completed in 125 milliseconds