Home
last modified time | relevance | path

Searched refs:fHostEndianess (Results 1 – 5 of 5) sorted by relevance

/haiku/headers/private/storage/
H A DResourceFile.h112 bool fHostEndianess; variable
120 return fHostEndianess ? value : (int16)B_SWAP_INT16((uint16)value); in _GetInt()
127 return fHostEndianess ? value : B_SWAP_INT16(value); in _GetInt()
134 return fHostEndianess ? value : (int32)B_SWAP_INT32((uint32)value); in _GetInt()
141 return fHostEndianess ? value : B_SWAP_INT32(value); in _GetInt()
148 return fHostEndianess ? value : (int64)B_SWAP_INT64((uint64)value); in _GetInt()
155 return fHostEndianess ? value : B_SWAP_INT64(value); in _GetInt()
/haiku/src/tools/restest/
H A DResourceFile.h69 bool fHostEndianess; variable
77 return (fHostEndianess ? value : B_SWAP_INT16(value)); in _GetInt16()
85 return (fHostEndianess ? value : B_SWAP_INT16(value)); in _GetUInt16()
93 return (fHostEndianess ? value : B_SWAP_INT32(value)); in _GetInt32()
101 return (fHostEndianess ? value : B_SWAP_INT32(value)); in _GetUInt32()
H A DResourceFile.cpp193 fHostEndianess(true) in ResourceFile()
236 fHostEndianess = true; in Unset()
536 (fHostEndianess == (bool)B_HOST_IS_LENDIAN) ? "little" : "big"); in PrintToStream()
576 fHostEndianess = B_HOST_IS_LENDIAN; in _InitFile()
585 fHostEndianess = B_HOST_IS_BENDIAN; in _InitFile()
604 fHostEndianess = B_HOST_IS_LENDIAN; in _InitFile()
636 fHostEndianess = B_HOST_IS_LENDIAN; in _InitELFFile()
639 fHostEndianess = B_HOST_IS_BENDIAN; in _InitELFFile()
792 fHostEndianess = B_HOST_IS_BENDIAN; in _InitPEFFile()
840 = (fHostEndianess == ((bool)B_HOST_IS_LENDIAN ? 0 : 1)); in _ReadHeader()
[all …]
/haiku/src/tools/
H A Dset_haiku_revision.cpp481 bool fHostEndianess; member in ELFObject
495 return (fHostEndianess ? value : _SwapUInt16(value)); in GetValue()
502 return (fHostEndianess ? value : _SwapUInt16(value)); in GetValue()
509 return (fHostEndianess ? value : _SwapUInt32(value)); in GetValue()
516 return (fHostEndianess ? value : _SwapUInt32(value)); in GetValue()
523 return (fHostEndianess ? value : _SwapUInt64(value)); in GetValue()
530 return (fHostEndianess ? value : _SwapUInt64(value)); in GetValue()
544 fHostEndianess = (htonl(1) != 1); in _ParseELFHeader()
547 fHostEndianess = (htonl(1) == 1); in _ParseELFHeader()
/haiku/src/kits/storage/
H A DResourceFile.cpp227 fHostEndianess(true), in ResourceFile()
264 fHostEndianess = true; in Unset()
329 if (!fHostEndianess) { in ReadResource()
395 fHostEndianess = true; in _InitFile()
401 fHostEndianess = B_HOST_IS_LENDIAN; in _InitFile()
411 fHostEndianess = B_HOST_IS_BENDIAN; in _InitFile()
431 fHostEndianess = B_HOST_IS_LENDIAN; in _InitFile()
438 fHostEndianess = true; in _InitFile()
479 fHostEndianess = B_HOST_IS_LENDIAN; in _InitELFFile()
482 fHostEndianess = B_HOST_IS_BENDIAN; in _InitELFFile()
[all …]