B_SWAP_INT64
{ return B_SWAP_INT64(value); }
{ return (uint64)B_SWAP_INT64(value); }
return fHostEndianess ? value : (int64)B_SWAP_INT64((uint64)value);
return fHostEndianess ? value : B_SWAP_INT64(value);
position = B_SWAP_INT64(position) >> (8 * (8 - size));
*ino = B_SWAP_INT64(*ino);
*ino = B_SWAP_INT64(*ino);
return (Type)B_SWAP_INT64((int64)value);
{ return (int64)B_SWAP_INT64((uint64)value); }
inline uint64 SwapUInt64(uint64 value) { return B_SWAP_INT64(value); }