Home | History | Annotate | Download | only in libprop

Lines Matching defs:TEMPLATE

79 #define	TEMPLATE(name, typ)						\
88 TEMPLATE(schar, signed char)
89 TEMPLATE(short, short)
90 TEMPLATE(int, int)
91 TEMPLATE(long, long)
92 TEMPLATE(longlong, long long)
93 TEMPLATE(intptr, intptr_t)
94 TEMPLATE(int8, int8_t)
95 TEMPLATE(int16, int16_t)
96 TEMPLATE(int32, int32_t)
97 TEMPLATE(int64, int64_t)
99 TEMPLATE(uchar, unsigned char)
100 TEMPLATE(ushort, unsigned short)
101 TEMPLATE(uint, unsigned int)
102 TEMPLATE(ulong, unsigned long)
103 TEMPLATE(ulonglong, unsigned long long)
104 TEMPLATE(uintptr, uintptr_t)
105 TEMPLATE(uint8, uint8_t)
106 TEMPLATE(uint16, uint16_t)
107 TEMPLATE(uint32, uint32_t)
108 TEMPLATE(uint64, uint64_t)
110 #undef TEMPLATE
129 #define TEMPLATE(name, which, typ) \
139 #define STEMPLATE(name, typ) TEMPLATE(name, signed, typ)
140 #define UTEMPLATE(name, typ) TEMPLATE(name, unsigned, typ)
166 #undef TEMPLATE