OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WINSIZE
(Results
1 - 2
of
2
) sorted by null
/external/zlib/src/examples/
zran.c
63
#define
WINSIZE
32768U /* sliding window size */
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
) { /* 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 2877 milliseconds