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

/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020307-1.c2 #define BITS(N) ((1UL << ((N) - 1)) + 2) macro
4 #define FUNC(N) void f##N(long j) { if ((j & MASK(N)) >= BITS(N)) abort();}
H A Dashldi-1.c7 #define BITS 64 macro
77 #define BITS 32 macro
161 #if BITS > 32
207 for (i = 0; i < BITS; ++i)
213 for (i = 0; i < BITS; ++i)
H A Dlshrdi-1.c7 #define BITS 64 macro
77 #define BITS 32 macro
161 #if BITS > 32
207 for (i = 0; i < BITS; ++i)
213 for (i = 0; i < BITS; ++i)
H A Dashrdi-1.c7 #define BITS 64 macro
144 #define BITS 32 macro
263 #if BITS > 32
309 for (i = 0; i < BITS; ++i)
315 for (i = 0; i < BITS; ++i)
321 for (i = 0; i < BITS; ++i)
327 for (i = 0; i < BITS; ++i)
/haiku-buildtools/binutils/gas/testsuite/gas/tic54x/
H A Dstruct.s39 .bss BITS, BIT_LEN ; 000006 0000 (len = 67)
40 BITS .tag BIT_REC label
41 add BITS.BIT7,a ; 000004 0046
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/tic54x/
H A Dstruct.s39 .bss BITS, BIT_LEN ; 000006 0000 (len = 67)
40 BITS .tag BIT_REC label
41 add BITS.BIT7,a ; 000004 0046
/haiku-buildtools/gcc/libgcc/config/pa/
H A Dfptr.c47 #define SIGN_EXTEND(VAL,BITS) \
48 ((int) ((VAL) >> ((BITS) - 1) ? (-1 << (BITS)) | (VAL) : (VAL)))
/haiku-buildtools/gcc/zlib/contrib/infback9/
H A 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(
[all...]
/haiku-buildtools/binutils/zlib/contrib/infback9/
H A Dinfback9.c157 #define BITS(n) \ macro
283 lastblock = BITS(1);
285 switch (BITS(2)) {
347 state->nlen = BITS(5) + 257;
349 state->ndist = BITS(5) + 1;
351 state->ncode = BITS(4) + 4;
364 state->lens[order[state->have++]] = (unsigned short)BITS(3);
385 here = lencode[BITS(lenbits)];
404 copy = 3 + BITS(2);
411 copy = 3 + BITS(
[all...]
/haiku-buildtools/gcc/zlib/
H A 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(
[all...]
H A Dinflate.c505 #define BITS(n) \ macro
542 the requested bits are not available. The typical use of the BITS macros
546 ... do something with BITS(n) ...
550 input left to load n bits into the accumulator, or it continues. BITS(n)
555 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
571 keep[want++] = BITS(n);
660 ((BITS(8) << 8) + (hold >> 8)) % 31) {
665 if (BITS(4) != Z_DEFLATED) {
671 len = BITS(4) + 8;
834 state->last = BITS(
[all...]
/haiku-buildtools/binutils/zlib/
H A 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(
[all...]
H A Dinflate.c506 #define BITS(n) \ macro
543 the requested bits are not available. The typical use of the BITS macros
547 ... do something with BITS(n) ...
551 input left to load n bits into the accumulator, or it continues. BITS(n)
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
572 keep[want++] = BITS(n);
661 ((BITS(8) << 8) + (hold >> 8)) % 31) {
666 if (BITS(4) != Z_DEFLATED) {
672 len = BITS(4) + 8;
835 state->last = BITS(
[all...]
/haiku-buildtools/legacy/binutils/opcodes/
H A Darc-dis.c61 #define BITS(word,s,e) (((word) << (31 - e)) >> (s + (31 - e))) macro
62 #define OPCODE(word) (BITS ((word), 27, 31))
63 #define FIELDA(word) (BITS ((word), 21, 26))
64 #define FIELDB(word) (BITS ((word), 15, 20))
65 #define FIELDC(word) (BITS ((word), 9, 14))
69 #define FIELDD(word) (BITS (((signed int)word), 0, 8))
86 state->nullifyMode = BITS (state->words[0], 5, 6); \
87 cond = BITS (state->words[0], 0, 4); \
96 cond = BITS (state->words[0], 0, 4); \
579 switch (BITS (stat
[all...]
/haiku-buildtools/gcc/gcc/config/sh/
H A Ddivtab.c30 #define BITS 5 macro
31 #define N_ENTRIES (1 << BITS)
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dcheck-init.c121 #define WORDS_NEEDED(BITS) (((BITS)+(WORD_SIZE-1))/(WORD_SIZE))
/haiku-buildtools/binutils/opcodes/
H A Darc-opc.c867 #define MAKE_BIAS_INSERT_EXTRACT_FUNCS(NAME,LOWER,UPPER,BITS,BIAS,SHIFT)\
888 return ((insn >> SHIFT) & ((1 << BITS) - 1)) + BIAS; \
1025 #define MAKE_1BASED_INSERT_EXTRACT_FUNCS(NAME,SHIFT,UPPER,BITS) \
1042 int value = (insn >> SHIFT) & ((1 << BITS) - 1); \
1144 NAME CODE BITS SHIFT FAVAIL. */
1542 BITS SHIFT DEFAULT_RELOC FLAGS INSERT_FUN EXTRACT_FUN. */
H A Darc-dis.c105 #define BITS(word,s,e) (((word) << (sizeof (word) * 8 - 1 - e)) >> \ macro
107 #define OPCODE_32BIT_INSN(word) (BITS ((word), 27, 31))
H A Daarch64-opc.c4320 #define BITS(INSN,HI,LO) (((INSN) >> (LO)) & ((1 << (((HI) - (LO)) + 1)) - 1))
4326 int t = BITS (insn, 4, 0);
4327 int n = BITS (insn, 9, 5);
4328 int t2 = BITS (insn, 14, 10);
4316 #define BITS macro
/haiku-buildtools/binutils/gas/config/
H A Dtc-arc.c597 #define RELAX_TABLE_ENTRY(BITS, ISSIGNED, SIZE, NEXT) \
598 { (ISSIGNED) ? ((1 << ((BITS) - 1)) - 1) : ((1 << (BITS)) - 1), \
599 (ISSIGNED) ? -(1 << ((BITS) - 1)) : 0, \
H A Dtc-tic6x.c3769 and the least significant BITS bits taken, at position POS. */
3770 #define MODIFY_VALUE(NEWVAL, VALUE, SHIFT, POS, BITS) \
3772 (NEWVAL) &= 0xffffffffU & ~(((1U << (BITS)) - 1) << (POS)); \
3773 (NEWVAL) |= (((VALUE) >> (SHIFT)) & ((1U << (BITS)) - 1)) << (POS); \
/haiku-buildtools/cloog/
H A Dconfigure646 BITS
12865 BITS="gmp"

Completed in 208 milliseconds