Home
last modified time | relevance | path

Searched refs:BITS (Results 1 – 25 of 40) sorted by relevance

12

/external/elfutils/backends/
Dsparc_corenote.c36 #ifndef BITS
37 # define BITS 32 macro
40 # define BITS 64 macro
46 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
51 #if BITS == 32
62 #define PRSTATUS_REGS_SIZE (BITS / 8 * (32 + (BITS == 32 ? 6 : 4)))
66 #if BITS == 32
81 #if BITS == 32
Dppc_corenote.c36 #ifndef BITS
37 # define BITS 32 macro
40 # define BITS 64 macro
48 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
65 #define PRSTATUS_REGS_SIZE (BITS / 8 * 48)
98 #if BITS == 32
Dsparc64_corenote.c1 #define BITS 64 macro
Dppc64_corenote.c1 #define BITS 64 macro
/external/webp/src/utils/
Dbit_reader.h27 #define BITS 32 // can be 32, 16 or 8 macro
28 #define MASK ((((bit_t)1) << (BITS)) - 1)
29 #if (BITS == 32)
32 #elif (BITS == 16)
81 br->buf_ += (BITS) >> 3; in VP8LoadNewBytes()
83 #if (BITS == 32) in VP8LoadNewBytes()
93 #elif (BITS == 16) in VP8LoadNewBytes()
101 br->missing_ -= (BITS); in VP8LoadNewBytes()
124 const int idx = br->range_ >> (BITS); in VP8Shift()
135 (bit_t)((uint32_t)(br->range_ >> (BITS)) * prob) << ((BITS) - 8); in VP8GetBit()
[all …]
Dbit_reader.c18 #define MK(X) (((bit_t)(X) << (BITS)) | (MASK))
74 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 + br->missing_); in VP8LoadFinalBytes()
/external/apache-http/src/org/apache/commons/codec/binary/
DBinaryCodec.java70 private static final int[] BITS = {BIT_0, BIT_1, BIT_2, BIT_3, BIT_4, BIT_5, BIT_6, BIT_7}; field in BinaryCodec
177 for (int bits = 0; bits < BITS.length; ++bits) { in fromAscii()
179 l_raw[ii] |= BITS[bits]; in fromAscii()
204 for (int bits = 0; bits < BITS.length; ++bits) { in fromAscii()
206 l_raw[ii] |= BITS[bits]; in fromAscii()
233 for (int bits = 0; bits < BITS.length; ++bits) { in toAsciiBytes()
234 if ((raw[ii] & BITS[bits]) == 0) { in toAsciiBytes()
263 for (int bits = 0; bits < BITS.length; ++bits) { in toAsciiChars()
264 if ((raw[ii] & BITS[bits]) == 0) { in toAsciiChars()
/external/webkit/Source/JavaScriptCore/wtf/
DTCPageMap.h60 template <int BITS>
69 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS)); in init()
70 memset(array_, 0, sizeof(void*) << BITS); in init()
101 template <int BITS>
108 static const int LEAF_BITS = BITS - ROOT_BITS;
128 ASSERT(k >> BITS == 0); in get()
135 ASSERT(k >> BITS == 0); in set()
161 Ensure(0, 1 << BITS); in PreallocateMoreMemory()
189 template <int BITS>
193 static const int INTERIOR_BITS = (BITS + 2) / 3; // Round-up
[all …]
/external/openssl/crypto/bn/asm/
Dppc.pl106 $BITS= 32;
107 $BNSZ= $BITS/8;
129 $BITS= 64;
130 $BNSZ= $BITS/8;
1635 li r8,$BITS
1654 $SHRI r9,r5,`$BITS/2` # r9 = dh
1660 $SHRI r8,r3,`$BITS/2` #r8 = (h>>BN_BITS4)
1661 $SHRI r11,r4,`$BITS/2` #r11= (l&BN_MASK2h)>>BN_BITS4
1667 $CLRU r8,r8,`$BITS/2` #q = BN_MASK2l
1673 $CLRU r10,r5,`$BITS/2` #r10=dl
[all …]
Dppc-mont.pl30 $BITS= 32;
31 $BNSZ= $BITS/8;
49 $BITS= 64;
50 $BNSZ= $BITS/8;
/external/openssl/crypto/sha/asm/
Dsha512-ia64.pl69 $BITS=8*$SZ;
83 $BITS=8*$SZ;
169 $code.=<<___ if ($BITS==64);
197 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
224 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
507 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
524 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
595 if ($BITS==64) {
605 print<<___ if ($BITS==32);
627 print<<___ if ($BITS==64);
/external/zlib/src/contrib/infback9/
Dinfback9.c157 #define BITS(n) \ macro
285 lastblock = BITS(1);
287 switch (BITS(2)) {
349 state->nlen = BITS(5) + 257;
351 state->ndist = BITS(5) + 1;
353 state->ncode = BITS(4) + 4;
366 state->lens[order[state->have++]] = (unsigned short)BITS(3);
387 here = lencode[BITS(lenbits)];
406 copy = 3 + BITS(2);
413 copy = 3 + BITS(3);
[all …]
/external/zlib/src/
Dinfback.c190 #define BITS(n) \ macro
300 state->last = BITS(1);
302 switch (BITS(2)) {
361 state->nlen = BITS(5) + 257;
363 state->ndist = BITS(5) + 1;
365 state->ncode = BITS(4) + 4;
380 state->lens[order[state->have++]] = (unsigned short)BITS(3);
401 here = state->lencode[BITS(state->lenbits)];
419 copy = 3 + BITS(2);
426 copy = 3 + BITS(3);
[all …]
Dinflate.c505 #define BITS(n) \ macro
660 ((BITS(8) << 8) + (hold >> 8)) % 31) {
665 if (BITS(4) != Z_DEFLATED) {
671 len = BITS(4) + 8;
834 state->last = BITS(1);
836 switch (BITS(2)) {
898 state->nlen = BITS(5) + 257;
900 state->ndist = BITS(5) + 1;
902 state->ncode = BITS(4) + 4;
917 state->lens[order[state->have++]] = (unsigned short)BITS(3);
[all …]
/external/qemu/distrib/zlib-1.2.3/
Dinfback.c181 #define BITS(n) \ macro
291 state->last = BITS(1);
293 switch (BITS(2)) {
352 state->nlen = BITS(5) + 257;
354 state->ndist = BITS(5) + 1;
356 state->ncode = BITS(4) + 4;
371 state->lens[order[state->have++]] = (unsigned short)BITS(3);
392 this = state->lencode[BITS(state->lenbits)];
411 copy = 3 + BITS(2);
418 copy = 3 + BITS(3);
[all …]
Dinflate.c450 #define BITS(n) \ macro
610 ((BITS(8) << 8) + (hold >> 8)) % 31) {
615 if (BITS(4) != Z_DEFLATED) {
621 len = BITS(4) + 8;
782 state->last = BITS(1);
784 switch (BITS(2)) {
839 state->nlen = BITS(5) + 257;
841 state->ndist = BITS(5) + 1;
843 state->ncode = BITS(4) + 4;
858 state->lens[order[state->have++]] = (unsigned short)BITS(3);
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DBitSet.pm15 Readonly my $BITS => 64;
16 sub BITS { return $BITS } method in ANTLR::Runtime::BitSet
26 Readonly my $MOD_MASK => BITS - 1;
49 $bits = '0' x BITS;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBitSet.cs50 private const int BITS = 64; // number of bits / long field in Antlr.Runtime.BitSet
60 private const int MOD_MASK = BITS - 1;
67 : this(BITS) { in BitSet()
181 for (int bit = BITS - 1; bit >= 0; bit--) { in Size()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBitSet.cs52 private const int BITS = 64; // number of bits / long field in Antlr.Runtime.BitSet
62 private const int MOD_MASK = BITS - 1;
69 : this( BITS ) in BitSet()
207 for ( int bit = BITS - 1; bit >= 0; bit-- ) in Size()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBitSet.java37 protected final static int BITS = 64; // number of bits / long field in BitSet
45 protected final static int MOD_MASK = BITS - 1;
52 this(BITS); in BitSet()
184 for (int bit = BITS - 1; bit >= 0; bit--) { in size()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DBitSet.as35 protected static const BITS:uint = 32; // number of bits / int constant in org.antlr.runtime.BitSet
43 protected static const MOD_MASK:uint = BITS - 1;
120 var bitPosition:int = bitNumber & MOD_MASK; // bitNumber mod BITS
134 for (var bit:int = BITS - 1; bit >= 0; bit--) {
235 return bit >> LOG_BITS; // bit / BITS
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
DBitSet.java54 protected final static int BITS = 64; // number of bits / long field in BitSet
62 protected final static int MOD_MASK = BITS - 1;
69 this(BITS); in BitSet()
205 for (int bit = BITS - 1; bit >= 0; bit--) { in size()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DBitSet.js16 bits = org.antlr.runtime.BitSet.BITS;
36 BITS: 32, property
287 for (bit = org.antlr.runtime.BitSet.BITS - 1; bit >= 0; bit--) {
/external/qemu/distrib/sdl-1.2.15/src/hermes/
Dmmx_main.asm10 BITS 32 label
Dx86_main.asm12 BITS 32 label

12