Home | History | Annotate | Download | only in include

Lines Matching refs:_bytes

127 	uint8 *_bytes = (uint8 *)(bytes); \
128 _bytes[0] = _val & 0xff; \
129 _bytes[1] = _val >> 8; \
134 uint8 *_bytes = (uint8 *)(bytes); \
135 _bytes[0] = _val & 0xff; \
136 _bytes[1] = (_val >> 8) & 0xff; \
137 _bytes[2] = (_val >> 16) & 0xff; \
138 _bytes[3] = _val >> 24; \
143 uint8 *_bytes = (uint8 *)(bytes); \
144 _bytes[0] = _val >> 8; \
145 _bytes[1] = _val & 0xff; \
150 uint8 *_bytes = (uint8 *)(bytes); \
151 _bytes[0] = _val >> 24; \
152 _bytes[1] = (_val >> 16) & 0xff; \
153 _bytes[2] = (_val >> 8) & 0xff; \
154 _bytes[3] = _val & 0xff; \
158 const uint8 *_bytes = (const uint8 *)(bytes); \
159 _LTOH16_UA(_bytes); \
163 const uint8 *_bytes = (const uint8 *)(bytes); \
164 _LTOH32_UA(_bytes); \
168 const uint8 *_bytes = (const uint8 *)(bytes); \
169 _NTOH16_UA(_bytes); \
173 const uint8 *_bytes = (const uint8 *)(bytes); \
174 _NTOH32_UA(_bytes); \