Lines Matching refs:to
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
27 * These prototypes exist to catch bugs in the code generating macros below.
209 /* we read a LE int as BE, so we always have to byte swap */ \
215 /* we'll be writing in BE, so we always have to byte swap */ \
241 #define ___GEN(from, size, to, bswap) \
242 static inline uint##size##_t from##size##_to_##to(uint##size##_t x) \
248 #define __GEN(from, size, to, be, le) ___GEN(from, size, to, be)
250 #define __GEN(from, size, to, be, le) ___GEN(from, size, to, le)