Searched refs:SET_WORD_SIZE (Results 1 - 18 of 18) sorted by relevance

/haiku-buildtools/legacy/gcc/libchill/
H A Dcopyps.c84 tmp = GET_BIT_IN_WORD (sps[src / SET_WORD_SIZE], src % SET_WORD_SIZE);
93 SET_BIT_IN_WORD (dps[dst / SET_WORD_SIZE], dst % SET_WORD_SIZE);
102 CLEAR_BIT_IN_WORD (dps[dst / SET_WORD_SIZE], dst % SET_WORD_SIZE);
115 MASK_UNUSED_WORD_BITS ((SET_WORD *)(dps + (dbl/SET_WORD_SIZE)),
116 dbl % SET_WORD_SIZE);
H A Dffsetclrps.c77 unsigned int words_to_skip = (unsigned) first_bit / SET_WORD_SIZE;
78 unsigned long cnt = words_to_skip * SET_WORD_SIZE;
82 first_bit = (unsigned) first_bit % (unsigned) SET_WORD_SIZE;
87 for (bitno = first_bit; bitno < SET_WORD_SIZE; bitno++)
91 cnt += SET_WORD_SIZE;
98 for (bitno = 0; bitno < SET_WORD_SIZE; bitno++)
102 cnt += SET_WORD_SIZE;
H A Deqps.c71 else if (bitlength <= SET_WORD_SIZE)
74 MASK_UNUSED_WORD_BITS (&c, bitlength % SET_WORD_SIZE);
82 unsigned long len = bitlength / SET_WORD_SIZE;
88 bitlength %= SET_WORD_SIZE;
H A Dinps.c70 return GET_BIT_IN_WORD (powerset[bitno / SET_WORD_SIZE],
71 bitno % SET_WORD_SIZE);
H A Dflsetclrps.c82 p = &ps[(unsigned) bitno / SET_WORD_SIZE];
84 if (((unsigned) bitlength % SET_WORD_SIZE) != 0)
85 MASK_UNUSED_WORD_BITS(&c, (unsigned) bitlength % SET_WORD_SIZE);
89 bitno -= ((unsigned) bitno % SET_WORD_SIZE) + 1;
95 bitno -= SET_WORD_SIZE;
101 if (GET_BIT_IN_WORD (c, (unsigned) bitno % SET_WORD_SIZE))
H A Dinbitstr.c79 return GET_BIT_IN_WORD (powerset[bitno / SET_WORD_SIZE],
80 bitno % SET_WORD_SIZE);
H A Dflsetps.c98 for (cnt = ((bitlength - 1) / SET_WORD_SIZE) * SET_WORD_SIZE;
99 p >= endp; p--, cnt -= SET_WORD_SIZE)
105 for (bitno = SET_WORD_SIZE; bitno >= 1; bitno--)
H A Dpowerset.h49 #define SET_WORD_SIZE (sizeof (char) * sizeof (SET_WORD)) macro
66 #define GET_BIT_IN_WORD(w,b) (((w) >> (SET_WORD_SIZE - 1 - (b))) & 1)
70 #define SET_BIT_IN_WORD(w,b) ((w) |= 1 << ((SET_WORD_SIZE) - 1 - (b)))
74 #define CLEAR_BIT_IN_WORD(w,b) ((w) &= ~(1 << ((SET_WORD_SIZE) - 1 - (b))))
78 { if (b) *(p) &= (~0) << (SET_WORD_SIZE - (b)); }
110 (((BITLENGTH) + (SET_WORD_SIZE-1)) / SET_WORD_SIZE)
H A Dsetbitps.c89 powerset += (bitno/SET_WORD_SIZE);
90 bitno %= SET_WORD_SIZE;
H A Dsetbits.c87 p = out + (i / SET_WORD_SIZE);
88 bitnr = i % SET_WORD_SIZE;
H A Dffsetps.c99 for (cnt = 0; p < endp; p++, cnt += SET_WORD_SIZE)
106 for (bitno = 0; bitno < SET_WORD_SIZE; bitno++)
H A Dandps.c81 bitlength % SET_WORD_SIZE);
H A Ddiffps.c79 MASK_UNUSED_WORD_BITS ((out + len - 1), bitlength % SET_WORD_SIZE);
H A Dnotps.c86 MASK_UNUSED_WORD_BITS((out + len - 1), bitlength % SET_WORD_SIZE);
H A Dorps.c80 MASK_UNUSED_WORD_BITS ((out + len - 1), bitlength % SET_WORD_SIZE);
H A Dxorps.c81 bitlength % SET_WORD_SIZE);
/haiku-buildtools/legacy/gcc/gcc/
H A Dstor-layout.c1049 #ifndef SET_WORD_SIZE
1050 #define SET_WORD_SIZE BITS_PER_WORD
1052 int alignment = set_alignment ? set_alignment : SET_WORD_SIZE;
1044 #define SET_WORD_SIZE macro
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Dch-tree.h1165 #ifndef SET_WORD_SIZE
1166 #define SET_WORD_SIZE BITS_PER_WORD
1162 #define SET_WORD_SIZE macro

Completed in 58 milliseconds