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

1 2 3 4 5 6

  /external/elfutils/backends/
ppc64_corenote.c 1 #define BITS 64
s390x_corenote.c 1 #define BITS 64
sparc64_corenote.c 1 #define BITS 64
x32_corenote.c 1 #define BITS 32
sparc_corenote.c 40 #ifndef BITS
41 # define BITS 32
44 # define BITS 64
50 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
55 #if BITS == 32
66 #define PRSTATUS_REGS_SIZE (BITS / 8 * (32 + (BITS == 32 ? 6 : 4)))
70 #if BITS == 3
    [all...]
s390_corenote.c 39 #ifndef BITS
40 # define BITS 32
43 # define BITS 64
51 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = b }
53 GR ( 0, 1, 64, BITS), /* pswm */
54 GR ( 1, 1, 65, BITS, .pc_register = true ), /* pswa */
55 GR ( 2, 16, 0, BITS), /* r0-r15 */
61 /* orig_r2 is at offset (BITS == 32 ? 34 * 4 : 26 * 8). */
62 #define PRSTATUS_REGS_SIZE (BITS / 8 * (BITS == 32 ? 35 : 27)
    [all...]
ppc_corenote.c 39 #ifndef BITS
40 # define BITS 32
43 # define BITS 64
51 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
68 #define PRSTATUS_REGS_SIZE (BITS / 8 * 48)
72 { .offset = 0, .regno = 32, .count = 32, .bits = 64 }, /* f0-f31 */
73 { .offset = 32 * 8 + 4, .regno = 65, .count = 1, .bits = 32 } /* fpscr */
80 { .offset = 0, .regno = 1124, .count = 32, .bits = 128 }
    [all...]
x86_64_corenote.c 40 #ifndef BITS
41 # define BITS 64
44 # define BITS 32
53 { .offset = at * 8, .regno = dwreg, .count = n, .bits = 64 }
55 { .offset = at * 8, .regno = dwreg, .count = n, .bits = 16, .pad = 6 }
87 #if BITS == 32
129 { .offset = 0, .regno = 65, .count = 2, .bits = 16 }, /* fcw-fsw */
130 { .offset = 24, .regno = 64, .count = 1, .bits = 32 }, /* mxcsr */
131 { .offset = 32, .regno = 33, .count = 8, .bits = 80, .pad = 6 }, /* stN */
132 { .offset = 32 + 128, .regno = 17, .count = 16, .bits = 128 }, /* xmm *
    [all...]
  /external/squashfs-tools/squashfs-tools/
swap.c 100 #define SWAP_LE_NUM(BITS) \
101 void swap_le##BITS##_num(void *s, void *d, int n) \
104 for(i = 0; i < n; i++, s += BITS / 8, d += BITS / 8)\
105 swap_le##BITS(s, d);\
112 #define INSWAP_LE_NUM(BITS, TYPE) \
113 void inswap_le##BITS##_num(TYPE *s, int n) \
117 s[i] = inswap_le##BITS(s[i]);\
  /external/opencv3/3rdparty/libwebp/utils/
bit_reader.h 30 // However, since range_ is only 8bit, we only need an active window of 8 bits
31 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls
32 // below 128, range_ is updated, and fresh bits read from the bitstream are
34 // To avoid reading the fresh bits one by one (slow), we cache a few of them
35 // ahead (actually, we cache BITS of them ahead. See below). There's two
36 // strategies regarding how to shift these looked-ahead fresh bits into the
39 // bits at a fixed, right-justified, position.
41 // Example, for BITS=16: here is the content of value_ for both strategies:
45 // <- 8b -><- 8b -><- BITS bits -> || <- 8b+3b -><- 8b -><- 13 bits -
157 bit_t bits; local
    [all...]
  /external/mesa3d/src/mesa/math/
m_copy_tmp.h 31 #define COPY_FUNC( BITS ) \
32 static void TAG2(copy, BITS)( GLvector4f *to, const GLvector4f *f ) \
40 if (BITS) \
42 if (BITS&1) t[i][0] = from[0]; \
43 if (BITS&2) t[i][1] = from[1]; \
44 if (BITS&4) t[i][2] = from[2]; \
45 if (BITS&8) t[i][3] = from[3]; \
  /external/webp/src/utils/
bit_reader_inl.h 38 #if (BITS > 32)
40 #elif (BITS > 16)
42 #elif (BITS > 8)
57 // makes sure br->value_ has at least BITS bits worth of data
60 // Read 'BITS' bits at a time if possible.
63 bit_t bits; local
84 br->buf_ += BITS >> 3;
86 #if (BITS > 32
    [all...]
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/mesa3d/src/gallium/drivers/i915/
i915_debug.c 226 BITS(
285 unsigned bits = (ptr[0] >> 4) & 0xff; local
288 PRINTF(stream, "%s (%d dwords, flags: %x):\n", name, len, bits);
291 if (bits & (1<<0)) {
294 BITS(stream, ptr[j], 0, 0, "vb invalidate disable");
297 if (bits & (1<<1)) {
299 BITS(stream, ptr[j], 29, 24, "vb dword width");
300 BITS(stream, ptr[j], 21, 16, "vb dword pitch");
301 BITS(stream, ptr[j], 15, 0, "vb max index");
304 if (bits & (1<<2))
392 unsigned bits = (ptr[0] >> 8) & 0x3f; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug.c 180 #define BITS( dw, hi, lo, ... ) \
209 GLuint bits = (ptr[0] >> 4) & 0xff; local
212 printf("%s (%d dwords, flags: %x):\n", name, len, bits);
215 if (bits & (1<<0)) {
218 BITS(ptr[j], 0, 0, "vb invalidate disable");
221 if (bits & (1<<1)) {
223 BITS(ptr[j], 29, 24, "vb dword width");
224 BITS(ptr[j], 21, 16, "vb dword pitch");
225 BITS(ptr[j], 15, 0, "vb max index");
228 if (bits & (1<<2))
315 GLuint bits = (ptr[0] >> 8) & 0x3f; local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/arm/
trace.c 32 #include "bits.h"
115 /* Bits 0-23 are signed immediate value. */
143 * breakpoints at all. If the conditional bits of the
155 const unsigned cond = BITS(this_instr, 28, 31);
156 const unsigned opcode = BITS(this_instr, 24, 27);
178 if (BITS(this_instr, 12, 15) != ARM_REG_PC)
181 if (BITS(this_instr, 22, 25) == 0
182 && BITS(this_instr, 4, 7) == 9) { /* multiply */
190 if (BITS(this_instr, 4, 27) == 0x12fff1
191 || BITS(this_instr, 4, 27) == 0x12fff3)
    [all...]
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))))
regs.c 75 enum arm_register rm = BITS(inst, 0, 3);
76 unsigned long shifttype = BITS(inst, 5, 6);
80 if (arm_get_register_offpc(proc, BITS(inst, 8, 11), &shift) < 0)
84 shift = BITS(inst, 7, 11);
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 75 private static final int[] BITS = {BIT_0, BIT_1, BIT_2, BIT_3, BIT_4, BIT_5, BIT_6, BIT_7};
182 for (int bits = 0; bits < BITS.length; ++bits) {
183 if (ascii[jj - bits] == '1') {
184 l_raw[ii] |= BITS[bits];
209 for (int bits = 0; bits < BITS.length; ++bits)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
struct.s 39 .bss BITS, BIT_LEN ; 000006 0000 (len = 67)
40 BITS .tag BIT_REC
41 add BITS.BIT7,a ; 000004 0046
  /external/harfbuzz_ng/src/
hb-set-private.hh 315 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 = hb_set_t::BITS
    [all...]
  /external/zlib/src/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;
234 unsigned bits; \/* bits in bit buffer *\/ local
    [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/webrtc/webrtc/modules/video_coding/utility/
vp8_header_parser.cc 27 // Only read 8bits at a time.
39 int BITS = 24;
40 // Read 'BITS' bits at a time.
42 uint32_t bits; local
44 br->buf_ += BITS >> 3;
46 bits = static_cast<uint32_t>(in_bits);
47 if (BITS != 8 * sizeof(uint32_t))
48 bits >>= (8 * sizeof(uint32_t) - BITS);
168 const uint32_t bits = buf[0] | (buf[1] << 8) | (buf[2] << 16); local
    [all...]
  /external/deqp/modules/egl/
teglColorClearTests.cpp 74 template <deUint32 Bits>
77 return (c.renderableType() & Bits) == Bits;
82 #define CASE(NAME, DESC, BITS, NUMCFG) { NAME, DESC, BITS, renderable<BITS>, NUMCFG }

Completed in 830 milliseconds

1 2 3 4 5 6