Searched defs:BITS (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinfback.c205 #define BITS(n) \ macro
315 state->last = BITS(1);
317 switch (BITS(2)) {
376 state->nlen = BITS(5) + 257;
378 state->ndist = BITS(5) + 1;
380 state->ncode = BITS(4) + 4;
395 state->lens[order[state->have++]] = (unsigned short)BITS(3);
416 this = state->lencode[BITS(state->lenbits)];
435 copy = 3 + BITS(2);
442 copy = 3 + BITS(
[all...]
H A Dinflate.c474 #define BITS(n) \ macro
516 the requested bits are not available. The typical use of the BITS macros
520 ... do something with BITS(n) ...
524 input left to load n bits into the accumulator, or it continues. BITS(n)
529 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
545 keep[want++] = BITS(n);
634 ((BITS(8) << 8) + (hold >> 8)) % 31) {
639 if (BITS(4) != Z_DEFLATED) {
645 len = BITS(4) + 8;
806 state->last = BITS(
[all...]
/openjdk7/jdk/test/java/lang/invoke/6998541/
H A DTest6998541.java48 private static final int BITS = 0x00000201; field in class:Test6998541
92 int D = Integer.MAX_VALUE / (N / 2) | BITS;
100 long D = Long.MAX_VALUE / ((long) (N / 2)) | BITS;

Completed in 35 milliseconds