HomeSort by relevance Sort by last modified time
    Searched defs:BITS (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/elfutils/0.153/backends/
ppc64_corenote.c 1 #define BITS 64
sparc64_corenote.c 1 #define BITS 64
ppc_corenote.c 36 #ifndef BITS
37 # define BITS 32
40 # define BITS 64
48 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
65 #define PRSTATUS_REGS_SIZE (BITS / 8 * 48)
69 { .offset = 0, .regno = 32, .count = 32, .bits = 64 }, /* f0-f31 */
70 { .offset = 32 * 8 + 4, .regno = 65, .count = 1, .bits = 32 } /* fpscr */
77 { .offset = 0, .regno = 1124, .count = 32, .bits = 128 }
    [all...]
sparc_corenote.c 36 #ifndef BITS
37 # define BITS 32
40 # define BITS 64
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 == 3
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBitSet.h 33 #define BITS (sizeof(NSUInteger) * 8)
49 * @param nbits The size of the ANTLRBitSet in bits
  /external/qemu/distrib/sdl-1.2.15/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
  /external/ltrace/sysdeps/linux-gnu/arm/
regs.h 23 #define BITS(obj,st,fn) (((obj) >> (st)) & SUBMASK((fn) - (st)))
25 ((long) (BITS(obj,st,fn) | ((long) BIT(obj,fn) * ~ SUBMASK(fn - st))))
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 50 private const int BITS = 64; // number of bits / long
60 private const int MOD_MASK = BITS - 1;
62 /** <summary>The actual data bits</summary> */
65 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
67 : this(BITS) {
71 public BitSet(ulong[] bits) {
72 _bits = bits;
83 * <param name="nbits">The size of the bitset in bits</param>
138 /** <summary>Grows the set to a larger number of bits.</summary
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 52 private const int BITS = 64; // number of bits / long
62 private const int MOD_MASK = BITS - 1;
64 /** <summary>The actual data bits</summary> */
67 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
69 : this( BITS )
75 public BitSet( ulong[] bits )
77 _bits = bits;
89 * <param name="nbits">The size of the bitset in bits</param>
153 /** <summary>Grows the set to a larger number of bits.</summary
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 14 # number of bits / long
15 Readonly my $BITS => 64;
16 sub BITS { return $BITS }
26 Readonly my $MOD_MASK => BITS - 1;
30 has 'bits' => (
46 my $bits;
48 # Construct a bitset of size one word (64 bits)
49 $bits = '0' x BITS;
    [all...]
  /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/chromium_org/third_party/libwebp/utils/
bit_reader.h 29 // However, since range_ is only 8bit, we only need an active window of 8 bits
30 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls
31 // below 128, range_ is updated, and fresh bits read from the bitstream are
32 // brought in as LSB. To avoid reading the fresh bits one by one (slow), we
33 // cache BITS of them ahead. The total of (BITS + 8) bits must fit into a
34 // natural register (with type bit_t). To fetch BITS bits from bitstream we
37 // BITS can be any multiple of 8 from 8 to 56 (inclusive)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-dataref.asm 0 BITS 64
  /external/webp/src/utils/
bit_reader.h 29 // However, since range_ is only 8bit, we only need an active window of 8 bits
30 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls
31 // below 128, range_ is updated, and fresh bits read from the bitstream are
32 // brought in as LSB. To avoid reading the fresh bits one by one (slow), we
33 // cache BITS of them ahead. The total of (BITS + 8) bits must fit into a
34 // natural register (with type bit_t). To fetch BITS bits from bitstream we
37 // BITS can be any multiple of 8 from 8 to 56 (inclusive)
    [all...]
  /external/chromium_org/third_party/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...]
  /external/chromium_org/tools/traceline/traceline/
stubs.asm 7 BITS 32
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_infback.c 92 unsigned sym, bits; local
103 bits = 9;
104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
110 bits = 5;
111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
135 bits = state->bits; \
146 state->bits = bits; \
153 bits = 0;
262 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
infback.c 92 unsigned sym, bits; local
103 bits = 9;
104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
110 bits = 5;
111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
135 bits = state->bits; \
146 state->bits = bits; \
153 bits = 0;
262 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]

Completed in 594 milliseconds

1 2 3