HomeSort by relevance Sort by last modified time
    Searched refs:WINSIZE (Results 1 - 2 of 2) sorted by null

  /external/zlib/examples/
zran.c 58 #define WINSIZE 32768U /* sliding window size */
66 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */
122 memcpy(next->window, window + WINSIZE - left, left);
123 if (left < WINSIZE)
124 memcpy(next->window + left, window, WINSIZE - left);
147 unsigned char window[WINSIZE];
182 strm.avail_out = WINSIZE;
251 unsigned char discard[WINSIZE];
283 (void)inflateSetDictionary(&strm, here->window, WINSIZE);
296 if (offset > WINSIZE) { /* skip WINSIZE bytes *
    [all...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mulmod.c 28 #define WINSIZE 4
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

Completed in 654 milliseconds