Lines Matching refs:d
159 #define eacopy(s, d) \ argument
161 ((uint16 *)(d))[0] = ((const uint16 *)(s))[0]; \
162 ((uint16 *)(d))[1] = ((const uint16 *)(s))[1]; \
163 ((uint16 *)(d))[2] = ((const uint16 *)(s))[2]; \
166 #define ether_copy(s, d) eacopy(s, d) argument
169 #define ether_rcopy(s, d) \ argument
171 ((uint16 *)(d))[2] = ((uint16 *)(s))[2]; \
172 ((uint16 *)(d))[1] = ((uint16 *)(s))[1]; \
173 ((uint16 *)(d))[0] = ((uint16 *)(s))[0]; \
200 #define ETHER_MOVE_HDR(d, s) \ argument
204 *(struct ether_header *)(d) = t; \