Searched refs:uLong (Results 1 – 12 of 12) sorted by relevance
/linux-2.4.37.9/arch/ppc64/boot/ |
D | zlib.h | 122 typedef unsigned long uLong; /* 32 bits or more */ typedef 128 typedef uLong FAR uLongf; 169 uLong total_in; /* total nb of input bytes read so far */ 173 uLong total_out; /* total nb of bytes output so far */ 411 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
|
D | zlib.c | 131 typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len)); typedef 310 uLong was; /* computed check value */ 311 uLong need; /* stream check value */ 328 uLong c; 344 uLong c; 482 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 486 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 490 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 494 z->state->sub.check.need += (uLong)NEXTBYTE; 545 uLong r, w; /* temporaries to save total_in and total_out */ [all …]
|
/linux-2.4.37.9/arch/ppc/boot/include/ |
D | zlib.h | 120 typedef unsigned long uLong; /* 32 bits or more */ typedef 126 typedef uLong FAR uLongf; 167 uLong total_in; /* total nb of input bytes read so far */ 171 uLong total_out; /* total nb of bytes output so far */ 409 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
|
/linux-2.4.37.9/include/linux/ |
D | zutil.h | 67 typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf, typedef 98 static inline uLong zlib_adler32(uLong adler, in zlib_adler32()
|
D | zlib.h | 71 uLong total_in; /* total nb of input bytes read so far */ 75 uLong total_out; /* total nb of bytes output so far */ 83 uLong adler; /* adler32 value of the uncompressed data */ 84 uLong reserved; /* reserved for future use */
|
D | zconf.h | 75 typedef unsigned long uLong; /* 32 bits or more */ typedef 81 typedef uLong FAR uLongf;
|
/linux-2.4.37.9/lib/zlib_inflate/ |
D | inflate.c | 164 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 168 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 172 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 176 z->state->sub.check.need += (uLong)NEXTBYTE; 209 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 213 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 217 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 221 z->state->sub.check.need += (uLong)NEXTBYTE; 254 uLong r, w; /* temporaries to save total_in and total_out */ 325 uLong b; /* bit buffer */ /* NOT USED HERE */ in zlib_inflate_addhistory()
|
D | infutil.h | 56 uLong bitb; /* bit buffer */ 63 uLong check; /* check on output */ 79 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}} 127 uLong was; /* computed check value */ 128 uLong need; /* stream check value */
|
D | inffast.c | 20 #define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}} 37 uLong b; /* bit buffer */
|
D | infcodes.c | 45 uLong b; /* bit buffer */
|
D | infblock.c | 109 uLong b; /* bit buffer */
|
/linux-2.4.37.9/arch/ppc/boot/lib/ |
D | zlib.c | 108 typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len)); typedef 287 uLong was; /* computed check value */ 288 uLong need; /* stream check value */ 305 uLong c; 321 uLong c; 459 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 463 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 467 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 471 z->state->sub.check.need += (uLong)NEXTBYTE; 522 uLong r, w; /* temporaries to save total_in and total_out */ [all …]
|