Home | History | Annotate | Download | only in src

Lines Matching refs:cta

2124 	#define cta(name, assertion) char name[(assertion) ? 1 : -1]
2126 cta(char_is_1_char, (sizeof(char) == 1) && (sizeof(signed char) == 1) &&
2128 cta(char_is_8_bits, ((CHAR_BIT) == 8) && ((int)(unsigned char)0xFF == 0xFF) &&
2131 cta(short_is_2_char, sizeof(short) == 2);
2132 cta(short_size_no_matter_of_signedness, sizeof(short) == sizeof(unsigned short));
2134 cta(int_is_4_char, sizeof(int) == 4);
2135 cta(int_size_no_matter_of_signedness, sizeof(int) == sizeof(unsigned int));
2137 cta(long_ge_int, sizeof(long) >= sizeof(int));
2138 cta(long_size_no_matter_of_signedness, sizeof(long) == sizeof(unsigned long));
2142 cta(ari_is_4_char, sizeof(mksh_ari_t) == 4);
2144 cta(ari_has_31_bit, 0 < (mksh_ari_t)(((((mksh_ari_t)1 << 15) << 15) - 1) * 2 + 1));
2146 cta(uari_is_4_char, sizeof(mksh_uari_t) == 4);
2148 cta(uari_has_31_bit, 0 < (mksh_uari_t)(((((mksh_uari_t)1 << 15) << 15) - 1) * 2 + 1));
2149 cta(uari_has_32_bit, 0 < (mksh_uari_t)(((((mksh_uari_t)1 << 15) << 15) - 1) * 4 + 3));
2150 cta(uari_wrap_32_bit,
2158 cta(ari_is_signed, (mksh_ari_t)-1 < (mksh_ari_t)0);
2159 cta(uari_is_unsigned, (mksh_uari_t)-1 > (mksh_uari_t)0);
2161 cta(ari_size_no_matter_of_signedness, sizeof(mksh_ari_t) == sizeof(mksh_uari_t));
2163 cta(sizet_size_no_matter_of_signedness, sizeof(ssize_t) == sizeof(size_t));
2164 cta(ptrdifft_sizet_same_size, sizeof(ptrdiff_t) == sizeof(size_t));
2165 cta(ptrdifft_voidptr_same_size, sizeof(ptrdiff_t) == sizeof(void *));
2166 cta(ptrdifft_funcptr_same_size, sizeof(ptrdiff_t) == sizeof(void (*)(void)));
2168 cta(ptr_fits_in_long, sizeof(ptrdiff_t) <= sizeof(long));
2189 #define cta(name, assertion) char name[(assertion) ? 1 : -1]
2190 cta(char_is_8_bits, (CHAR_BIT) == 8);
2191 cta(long_is_32_bits, sizeof(long) == 4);
2203 #define cta(name, assertion) char name[(assertion) ? 1 : -1]
2204 cta(char_is_8_bits, (CHAR_BIT) == 8);
2205 cta(long_is_64_bits, sizeof(long) == 8);