Lines Matching refs:other_byte_order

200   (unlikely ((Dbg)->other_byte_order)					      \
204 (unlikely ((Dbg)->other_byte_order) \
211 (unlikely ((Dbg)->other_byte_order) \
215 (unlikely ((Dbg)->other_byte_order) \
222 (unlikely ((Dbg)->other_byte_order) \
226 (unlikely ((Dbg)->other_byte_order) \
244 read_2ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
246 read_2sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
248 read_4ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
250 read_4sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
252 read_8ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
254 read_8sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
257 read_2ubyte_unaligned_1 (bool other_byte_order, const void *p)
260 if (unlikely (other_byte_order))
265 read_2sbyte_unaligned_1 (bool other_byte_order, const void *p)
268 if (unlikely (other_byte_order))
280 read_4ubyte_unaligned_1 (bool other_byte_order, const void *p)
283 if (unlikely (other_byte_order))
288 read_4sbyte_unaligned_1 (bool other_byte_order, const void *p)
291 if (unlikely (other_byte_order))
303 read_8ubyte_unaligned_1 (bool other_byte_order, const void *p)
306 if (unlikely (other_byte_order))
311 read_8sbyte_unaligned_1 (bool other_byte_order, const void *p)
314 if (unlikely (other_byte_order))
355 file_byte_order (bool other_byte_order)
358 return other_byte_order ? BIG_ENDIAN : LITTLE_ENDIAN;
360 return other_byte_order ? LITTLE_ENDIAN : BIG_ENDIAN;
372 bool other_byte_order = dbg->other_byte_order;
374 if (file_byte_order (other_byte_order) == BIG_ENDIAN)
389 if (other_byte_order)