Searched refs:BITS_PER_WORD (Results 1 - 25 of 58) sorted by path

123

/freebsd-11-stable/contrib/byacc/
H A Dclosure.c81 k = BITS_PER_WORD;
84 if (k >= BITS_PER_WORD)
152 for (i = 0; i < BITS_PER_WORD; ++i)
165 ruleno += BITS_PER_WORD;
212 k = BITS_PER_WORD;
215 if (k >= BITS_PER_WORD)
242 k = BITS_PER_WORD;
245 if (k >= BITS_PER_WORD)
H A Ddefs.h42 /* BITS_PER_WORD is the number of bits in a C unsigned */
65 #define BITS_PER_WORD ((int) sizeof (unsigned) * CHAR_BIT) macro
66 #define WORDSIZE(n) (((n)+(BITS_PER_WORD-1))/BITS_PER_WORD)
67 #define BIT(r, n) ((((r)[(n)/BITS_PER_WORD])>>((n)&(BITS_PER_WORD-1)))&1)
68 #define SETBIT(r, n) ((r)[(n)/BITS_PER_WORD]|=((unsigned)1<<((n)&(BITS_PER_WORD-1))))
H A Dwarshall.c46 if (++i >= BITS_PER_WORD)
74 if (++i >= BITS_PER_WORD)
/freebsd-11-stable/contrib/gcc/
H A Dbuiltins.c5350 word = (GET_MODE_BITSIZE (fmode) - bitpos) / BITS_PER_WORD;
5352 word = bitpos / BITS_PER_WORD;
5354 bitpos = bitpos % BITS_PER_WORD;
H A Dcalls.c830 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
861 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
867 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
H A Dcombine.c1107 if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
2890 && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2898 && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
6040 && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
6066 of interest (in this case POS % BITS_PER_WORD must be 0). */
6089 HOST_WIDE_INT final_word = pos / BITS_PER_WORD;
9964 i = BITS_PER_WORD - 1 - i;
10430 && mode_width <= BITS_PER_WORD)
11041 && GET_MODE_BITSIZE (GET_MODE (dest)) <= BITS_PER_WORD
/freebsd-11-stable/contrib/gcc/config/arm/
H A Darm.c14964 assemble_integer (tem, 4, BITS_PER_WORD, 1);
14968 assemble_integer (XEXP (DECL_RTL (function), 0), 4, BITS_PER_WORD, 1);
H A Darm.h485 && (ALIGN) < BITS_PER_WORD * CONSTANT_ALIGNMENT_FACTOR) \
486 ? BITS_PER_WORD * CONSTANT_ALIGNMENT_FACTOR : (ALIGN))
514 #define WCHAR_TYPE_SIZE BITS_PER_WORD
2062 /* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
H A Dlinux-gas.h43 #define WCHAR_TYPE_SIZE BITS_PER_WORD
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dfreebsd.h80 #define WCHAR_TYPE_SIZE (TARGET_64BIT ? 32 : BITS_PER_WORD)
H A Di386.c4544 set_mem_align (mem, BITS_PER_WORD);
14352 && TREE_STRING_LENGTH (exp) >= 31 && align < BITS_PER_WORD)
14353 return BITS_PER_WORD;
14366 int max_align = optimize_size ? BITS_PER_WORD : 256;
H A Di386.h582 #define LONG_TYPE_SIZE BITS_PER_WORD
616 #define PARM_BOUNDARY BITS_PER_WORD
619 #define STACK_BOUNDARY BITS_PER_WORD
640 #define EMPTY_FIELD_BOUNDARY BITS_PER_WORD
H A Dlinux.h71 #define WCHAR_TYPE_SIZE BITS_PER_WORD
H A Dnetware.c122 if (nregs > total / BITS_PER_WORD)
123 nregs = total / BITS_PER_WORD;
H A Dnto.h91 #define WCHAR_TYPE_SIZE BITS_PER_WORD
H A Dopenbsdelf.h68 #define WCHAR_TYPE_SIZE BITS_PER_WORD
H A Dsco5.h102 #define WCHAR_TYPE_SIZE BITS_PER_WORD
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dia64.h223 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
232 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
/freebsd-11-stable/contrib/gcc/config/
H A Dlynx.h147 # define WCHAR_TYPE_SIZE BITS_PER_WORD
H A Dptx4.h209 #define WCHAR_TYPE_SIZE BITS_PER_WORD
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dmips.c3551 if (MEM_ALIGN (src) == BITS_PER_WORD / 2
3552 && MEM_ALIGN (dest) == BITS_PER_WORD / 2)
3553 bits = BITS_PER_WORD / 2;
3555 bits = BITS_PER_WORD;
3809 doubleword_aligned_p = FUNCTION_ARG_BOUNDARY (mode, type) > BITS_PER_WORD;
3908 && TYPE_PRECISION (TREE_TYPE (field)) == BITS_PER_WORD
3910 && int_bit_position (field) % BITS_PER_WORD == 0)
3941 && TYPE_PRECISION (TREE_TYPE (field)) == BITS_PER_WORD)
3950 bitpos += BITS_PER_WORD;
4657 || GET_MODE_BITSIZE (GET_MODE (op)) > BITS_PER_WORD)
[all...]
H A Dmips.h1093 #define PARM_BOUNDARY BITS_PER_WORD
1147 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
1163 ((((ALIGN) < BITS_PER_WORD) \
1166 || TREE_CODE (TYPE) == RECORD_TYPE)) ? BITS_PER_WORD : (ALIGN))
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Dlinux64.h487 && BITS_PER_WORD == HOST_BITS_PER_INT)))))
H A Drs6000.c4633 if (intoffset % BITS_PER_WORD != 0)
4635 mode = mode_for_size (BITS_PER_WORD - intoffset % BITS_PER_WORD,
4643 intoffset = intoffset & -BITS_PER_WORD;
4647 startbit = intoffset & -BITS_PER_WORD;
4648 endbit = (bitpos + BITS_PER_WORD - 1) & -BITS_PER_WORD;
4649 intregs = (endbit - startbit) / BITS_PER_WORD;
4783 if (TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
4982 if (intoffset % BITS_PER_WORD !
[all...]
H A Drs6000.h542 && (ALIGN) < BITS_PER_WORD \
543 ? BITS_PER_WORD \
554 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
1823 /* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD

Completed in 968 milliseconds

123