/external/qemu/distrib/sdl-1.2.12/src/hermes/ |
mmx_main.asm | 10 BITS 32
|
x86_main.asm | 12 BITS 32
|
mmxp2_32.asm | 21 BITS 32 71 and ecx, 0fffffffch ; clear lower two bits 286 and ecx,DWORD 0fffffff8h ; clear lower three bits
|
x86p_16.asm | 13 BITS 32
|
x86p_32.asm | 12 BITS 32
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
s_bits.h | 29 if the buffer is 32 bits instead of 16. 39 This include file defines the structure, BITS 82 * Name: BITS 88 * usedBits - number of bits read thus far from the buffer. Bit 0 is 90 * availableBits - number of bits available in the buffer. 101 } BITS;
|
/sdk/chimpchat/src/com/android/chimpchat/adb/image/ |
SixteenBitColorModel.java | 30 private static final int[] BITS = { 35 , BITS, ColorSpace.getInstance(ColorSpace.CS_sRGB),
|
ThirtyTwoBitColorModel.java | 30 private static final int[] BITS = { 47 super(32, BITS, ColorSpace.getInstance(ColorSpace.CS_sRGB),
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
BinaryCodec.java | 70 private static final int[] BITS = {BIT_0, BIT_1, BIT_2, BIT_3, BIT_4, BIT_5, BIT_6, BIT_7}; 177 for (int bits = 0; bits < BITS.length; ++bits) { 178 if (ascii[jj - bits] == '1') { 179 l_raw[ii] |= BITS[bits]; 204 for (int bits = 0; bits < BITS.length; ++bits) [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
infback.c | 83 unsigned sym, bits; local 94 bits = 9; 95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 101 bits = 5; 102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 126 bits = state->bits; \ 137 state->bits = bits; \ 144 bits = 0; 253 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
inflate.c | 30 * - Add comments on state->bits assertion in inffast.c 122 state->bits = 0; 128 int ZEXPORT inflatePrime(strm, bits, value) 130 int bits; 137 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR; 138 value &= (1L << bits) - 1; 139 state->hold += value << state->bits; 140 state->bits += bits 215 unsigned sym, bits; local 563 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
/external/zlib/ |
infback.c | 83 unsigned sym, bits; local 94 bits = 9; 95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 101 bits = 5; 102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 126 bits = state->bits; \ 137 state->bits = bits; \ 144 bits = 0; 253 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
inflate.c | 30 * - Add comments on state->bits assertion in inffast.c 122 state->bits = 0; 154 /* set number of window bits, free window if different */ 209 int ZEXPORT inflatePrime(strm, bits, value) 211 int bits; 218 if (bits < 0) { 220 state->bits = 0; 223 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR 250 unsigned sym, bits; local 598 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
/external/antlr/src/org/antlr/runtime/ |
BitSet.java | 37 protected final static int BITS = 64; // number of bits / long 45 protected final static int MOD_MASK = BITS - 1; 47 /** The actual data bits */ 48 protected long bits[]; field in class:BitSet 50 /** Construct a bitset of size one word (64 bits) */ 52 this(BITS); 57 bits = bits_; 70 * @param nbits The size of the bitset in bits 73 bits = new long[((nbits - 1) >> LOG_BITS) + 1] [all...] |
/external/dropbear/libtommath/mtest/ |
mpi.h | 188 #define BITS 1
|
/external/zlib/contrib/infback9/ |
infback9.c | 56 unsigned sym, bits, low, size; local 69 bits = 9; 70 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work); 76 bits = 5; 77 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work); 94 printf("{%u,%u,%d}", lenfix[low].op, lenfix[low].bits, 105 printf("{%u,%u,%d}", distfix[low].op, distfix[low].bits, 120 bits = 0; \ 143 hold += (unsigned long)(*next++) << bits; \ 144 bits += 8; 235 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
/external/tremolo/Tremolo/ |
bitwise.c | 38 /* We're 'LSb' endian; if we write a word but read individual bits, 73 extern long oggpack_lookARM(oggpack_buffer *b,int bits); 75 long oggpack_look(oggpack_buffer *b,int bits){ 78 //fprintf(stderr, "PreLook: buffer=(%x,%x,%x) %08x%08x (%d bits)\n", 80 // b->ptr[1], b->ptr[0], bits); 82 l = oggpack_lookARM(b,bits); 83 //fprintf(stderr, "Look: buffer=(%d,%x,%d,%d) %08x%08x (%d bits) (result=%x)\n", 85 // b->ptr[1], b->ptr[0], bits, l); 91 extern void oggpack_advARM(oggpack_buffer *b,int bits); 93 void oggpack_adv(oggpack_buffer *b,int bits){ [all...] |
/external/openssl/apps/ |
req.c | 92 #define BITS "default_bits" 419 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n"); 648 if (!NCONF_get_number(req_conf,SECTION,BITS, &newkey)) 655 BIO_printf(bio_err,"it needs to be at least %d bits, not %ld\n",MIN_KEY_LENGTH,newkey); [all...] |
/prebuilt/common/http-client/ |
commons-codec-1.4.jar | |
/cts/tools/signature-tools/lib/ |
antlr-2.7.7.jar | |
/prebuilt/common/groovy/ |
groovy-all-1.7.0.jar | |