Searched refs:BITS (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/test/sun/security/mscapi/
H A DShortRSAKey1024.sh61 BITS=$1
71 -alias 7106773.$BITS
78 -alias 7106773.$BITS \
79 -keysize $BITS \
95 ${TESTVMOPTS} ShortRSAKeyWithinTLS 7106773.$BITS $BITS \
106 -alias 7106773.$BITS
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-set-private.hh315 for (unsigned int j = 0; j < BITS; j++)
317 return i * BITS + j;
324 for (unsigned int j = BITS; j; j--)
326 return (i - 1) * BITS + (j - 1);
333 static const unsigned int BITS = (1 << SHIFT);
334 static const unsigned int MASK = BITS - 1;
335 static const unsigned int ELTS = (MAX_G + 1 + (BITS - 1)) / BITS;
344 ASSERT_STATIC (sizeof (elt_t) * 8 == BITS);
351 static const unsigned int BITS
[all...]
/openjdk9/jdk/src/java.base/share/native/libzip/zlib/
H A Dinfback.c214 #define BITS(n) \ macro
324 state->last = BITS(1);
326 switch (BITS(2)) {
385 state->nlen = BITS(5) + 257;
387 state->ndist = BITS(5) + 1;
389 state->ncode = BITS(4) + 4;
404 state->lens[order[state->have++]] = (unsigned short)BITS(3);
425 here = state->lencode[BITS(state->lenbits)];
443 copy = 3 + BITS(2);
450 copy = 3 + BITS(
[all...]
H A Dinflate.c547 #define BITS(n) \ macro
584 the requested bits are not available. The typical use of the BITS macros
588 ... do something with BITS(n) ...
592 input left to load n bits into the accumulator, or it continues. BITS(n)
597 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
613 keep[want++] = BITS(n);
704 ((BITS(8) << 8) + (hold >> 8)) % 31) {
709 if (BITS(4) != Z_DEFLATED) {
715 len = BITS(4) + 8;
882 state->last = BITS(
[all...]
/openjdk9/jdk/test/javax/sound/sampled/Recording/
H A DTargetDataLineFlush.java43 int BITS = 16; field in class:TargetDataLineFlush
56 format = new AudioFormat( (float) SAMPLE_RATE, BITS, CHANNELS, true, false);
/openjdk9/jdk/test/java/lang/invoke/6998541/
H A DTest6998541.java47 private static final int BITS = 0x00000201; field in class:Test6998541
91 int D = Integer.MAX_VALUE / (N / 2) | BITS;
99 long D = Long.MAX_VALUE / ((long) (N / 2)) | BITS;

Completed in 75 milliseconds