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

/external/zlib/src/examples/
H A Dzran.c63 #define WINSIZE 32768U /* sliding window size */ macro
71 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */
127 memcpy(next->window, window + WINSIZE - left, left);
128 if (left < WINSIZE)
129 memcpy(next->window + left, window, WINSIZE - left);
152 unsigned char window[WINSIZE];
187 strm.avail_out = WINSIZE;
256 unsigned char discard[WINSIZE];
288 (void)inflateSetDictionary(&strm, here->window, WINSIZE);
301 if (offset > WINSIZE) { /* ski
[all...]
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_mulmod.c28 #define WINSIZE 4 macro
143 bitbuf |= (i << (WINSIZE - ++bitcpy));
146 if (bitcpy == WINSIZE) {
158 for (j = 0; j < WINSIZE; j++) {
162 /* then add, bitbuf will be 8..15 [8..2^WINSIZE] guaranteed */
181 if ((bitbuf & (1 << WINSIZE)) != 0) {
216 #undef WINSIZE macro

Completed in 2910 milliseconds