Lines Matching refs:from
10 #define DEFINE_CAST(from, to) \ argument
11 static to from##2##to(from x) { \
15 #define DEFINE_CASTS(from) \ argument
16 DEFINE_CAST(from, bool) \
17 DEFINE_CAST(from, char) \
18 DEFINE_CAST(from, schar) \
19 DEFINE_CAST(from, uchar) \
20 DEFINE_CAST(from, short) \
21 DEFINE_CAST(from, ushort) \
22 DEFINE_CAST(from, int) \
23 DEFINE_CAST(from, uint) \
24 DEFINE_CAST(from, long) \
25 DEFINE_CAST(from, ulong) \
26 DEFINE_CAST(from, longlong) \
27 DEFINE_CAST(from, ulonglong) \
28 DEFINE_CAST(from, float) \
29 DEFINE_CAST(from, double)