Lines Matching defs:to
50 #define DECODE_SHORT(from, to) *((short *)(to)) = *((short *)(from)) argument
51 #define DECODE_LONG(from, to) *((long *)(to)) = *((long *)(from)) argument
52 #define DECODE_FLOAT(from, to) *((float *)(to)) = *((float *)(from)) argument
53 #define DECODE_DOUBLE(from, to) *((double *)(to)) = *((double *)(from)) argument
57 #define DECODE_SHORT(from, to) \ argument
60 #define DECODE_LONG(from, to) \ argument
66 #define DECODE_FLOAT(from, to) DECODE_LONG((to), (from)) argument
68 #define DECODE_DOUBLE(from, to) \ argument
82 #define ENCODE_SHORT(from, to) DECODE_SHORT((from), (to)) argument
83 #define ENCODE_LONG(from, to) DECODE_LONG((from), (to)) argument
84 #define ENCODE_FLOAT(from, to) DECODE_FLOAT((from), (to)) argument
85 #define ENCODE_DOUBLE(from, to) DECODE_DOUBLE((from), (to)) argument