Top "Endianness" questions

Endianness refers to how multi-byte values are stored in memory, sent between devices or stored on disk.

ByteBuffer Little Endian insert not working

I have to make a two way communication between a legacy system and an android device. The legacy system uses …

java android bytebuffer endianness
Converting 32-bit unsigned integer (big endian) to long and back

I have a byte[4] which contains a 32-bit unsigned integer (in big endian order) and I need to convert it …

java type-conversion endianness unsigned-integer
ASCII strings and endianness

An intern who works with me showed me an exam he had taken in computer science about endianness issues. There …

c ascii endianness
How do I swap endian-ness (byte order) of a variable in javascript

I am receiving and sending a decimal representation of two little endian numbers. I would like to: shift one variable 8 …

javascript endianness
How can I find Endian-ness of my PC programmatically using C?

Possible Duplicate: Detecting endianness programmatically in a C++ program Is there any library function available to find the endian-ness of …

c endianness
Bitwise operators and "endianness"

Does endianness matter at all with the bitwise operations? Either logical or shifting? I'm working on homework with regard to …

c bit-manipulation endianness bit-shift
Marshal.PtrToStructure (and back again) and generic solution for endianness swapping

I have a system where a remote agent sends serialized structures (from an embedded C system) for me to read …

c# .net sockets marshalling endianness
Little Endian vs Big Endian?

I'm having troubles wrapping my head on the two. I understand how to represent something in big endian. For example …

endianness
Floating point Endianness?

I'm writing a client and a server for a realtime offshore simulator, and, as I have to send a lot …

c++ networking endianness
Java's Virtual Machine's Endianness

What endianness does Java use in its virtual machine? I remember reading somewhere that it depends on the physical machine …

java virtual-machine endianness