Searched refs:INT_TYPE_SIZE (Results 1 - 25 of 102) sorted by relevance

12345

/haiku-buildtools/gcc/gcc/config/avr/
H A Davr-stdint.h37 #define INT16_TYPE (INT_TYPE_SIZE == 16 ? "int" : "long int")
38 #define INT32_TYPE (INT_TYPE_SIZE == 16 ? "long int" : "long long int")
39 #define INT64_TYPE (INT_TYPE_SIZE == 16 ? "long long int" : 0)
41 #define UINT16_TYPE (INT_TYPE_SIZE == 16 ? "unsigned int" : "long unsigned int")
42 #define UINT32_TYPE (INT_TYPE_SIZE == 16 ? "long unsigned int" : "long long unsigned int")
43 #define UINT64_TYPE (INT_TYPE_SIZE == 16 ? "long long unsigned int" : 0)
55 #define INT_FAST16_TYPE (INT_TYPE_SIZE == 16 ? "int" : INT16_TYPE)
59 #define UINT_FAST16_TYPE (INT_TYPE_SIZE == 16 ? "unsigned int" : UINT16_TYPE)
H A Davr.h136 #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16) macro
137 #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
138 #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
139 #define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64)
147 #define SIZE_TYPE (INT_TYPE_SIZE == 8 ? "long unsigned int" : "unsigned int")
148 #define PTRDIFF_TYPE (INT_TYPE_SIZE == 8 ? "long int" :"int")
H A Davr-c.c430 INT_TYPE_SIZE == 8 ? "LL" : "L");
433 INT_TYPE_SIZE == 8 ? "ULL" : "UL");
/haiku-buildtools/gcc/gcc/config/
H A Dnewlib-stdint.h37 #define INT16_TYPE (SHORT_TYPE_SIZE == 16 ? "short int" : INT_TYPE_SIZE == 16 ? "int" : CHAR_TYPE_SIZE == 16 ? "signed char" : 0)
38 #define INT32_TYPE (STDINT_LONG32 ? "long int" : INT_TYPE_SIZE == 32 ? "int" : SHORT_TYPE_SIZE == 32 ? "short int" : CHAR_TYPE_SIZE == 32 ? "signed char" : 0)
39 #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : LONG_LONG_TYPE_SIZE == 64 ? "long long int" : INT_TYPE_SIZE == 64 ? "int" : 0)
41 #define UINT16_TYPE (SHORT_TYPE_SIZE == 16 ? "short unsigned int" : INT_TYPE_SIZE == 16 ? "unsigned int" : CHAR_TYPE_SIZE == 16 ? "unsigned char" : 0)
42 #define UINT32_TYPE (STDINT_LONG32 ? "long unsigned int" : INT_TYPE_SIZE == 32 ? "unsigned int" : SHORT_TYPE_SIZE == 32 ? "short unsigned int" : CHAR_TYPE_SIZE == 32 ? "unsigned char" : 0)
43 #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : LONG_LONG_TYPE_SIZE == 64 ? "long long unsigned int" : INT_TYPE_SIZE == 64 ? "unsigned int" : 0)
54 #define INT_FAST8_TYPE (INT_TYPE_SIZE >= 8 ? "int" : INT_LEAST8_TYPE)
55 #define INT_FAST16_TYPE (INT_TYPE_SIZE >= 16 ? "int" : INT_LEAST16_TYPE)
56 #define INT_FAST32_TYPE (INT_TYPE_SIZE >= 32 ? "int" : INT_LEAST32_TYPE)
57 #define INT_FAST64_TYPE (INT_TYPE_SIZE >
[all...]
/haiku-buildtools/gcc/gcc/config/pa/
H A Dpa-64.h55 #undef INT_TYPE_SIZE macro
56 #define INT_TYPE_SIZE 32 macro
/haiku-buildtools/legacy/gcc/gcc/
H A Dcppexp.c39 #ifndef INT_TYPE_SIZE
40 #define INT_TYPE_SIZE BITS_PER_WORD macro
48 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
56 #define MAX_INT_TYPE_SIZE INT_TYPE_SIZE
H A Dcexp.y88 #ifndef INT_TYPE_SIZE
89 #define INT_TYPE_SIZE BITS_PER_WORD
97 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
105 #define MAX_INT_TYPE_SIZE INT_TYPE_SIZE
H A Dcexp.c84 #ifndef INT_TYPE_SIZE
85 #define INT_TYPE_SIZE BITS_PER_WORD macro
93 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
101 #define MAX_INT_TYPE_SIZE INT_TYPE_SIZE
/haiku-buildtools/gcc/gcc/ada/gcc-interface/
H A Dtargtyps.c104 return INT_TYPE_SIZE;
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dcom.h102 #ifndef INT_TYPE_SIZE
103 #define INT_TYPE_SIZE BITS_PER_WORD macro
133 #elif INT_TYPE_SIZE == FLOAT_TYPE_SIZE
/haiku-buildtools/gcc/gcc/go/
H A Dgo-lang.c120 go_create_gogo (INT_TYPE_SIZE, POINTER_SIZE, go_pkgpath, go_prefix,
321 if (bits == INT_TYPE_SIZE)
336 if (bits == INT_TYPE_SIZE)
/haiku-buildtools/gcc/gcc/
H A Ddefaults.h506 #ifndef INT_TYPE_SIZE
507 #define INT_TYPE_SIZE BITS_PER_WORD macro
519 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
631 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
639 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
/haiku-buildtools/gcc/gcc/config/rs6000/
H A Ddarwin.h366 #define BOOL_TYPE_SIZE (darwin_one_byte_bool ? CHAR_TYPE_SIZE : INT_TYPE_SIZE)
/haiku-buildtools/gcc/gcc/config/pdp11/
H A Dpdp11.h55 #define INT_TYPE_SIZE (TARGET_INT16 ? 16 : 32)
54 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/fr30/
H A Dfr30.h106 #define INT_TYPE_SIZE 32
103 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/stormy16/
H A Dstormy16.h104 #define INT_TYPE_SIZE 16
100 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/m32c/
H A Dm32c.h178 #define INT_TYPE_SIZE 16 macro
/haiku-buildtools/gcc/gcc/config/msp430/
H A Dmsp430.h108 #define INT_TYPE_SIZE 16
106 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/nios2/
H A Dnios2.h93 #define INT_TYPE_SIZE 32 macro
/haiku-buildtools/gcc/gcc/config/nvptx/
H A Dnvptx.h64 #define INT_TYPE_SIZE 32 macro
/haiku-buildtools/gcc/gcc/config/spu/
H A Dspu.h130 #define INT_TYPE_SIZE 32
127 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/tilegx/
H A Dtilegx.h85 #define INT_TYPE_SIZE 32
84 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/moxie/
H A Dmoxie.h53 #define INT_TYPE_SIZE 32 macro
/haiku-buildtools/gcc/gcc/config/rl78/
H A Drl78.h95 #define INT_TYPE_SIZE 16
93 #define INT_TYPE_SIZE macro
/haiku-buildtools/gcc/gcc/config/visium/
H A Dvisium.h307 /* `INT_TYPE_SIZE'
311 #define INT_TYPE_SIZE 32 macro

Completed in 387 milliseconds

12345