Tagged Questions

Endianness (sometimes referred to as "byte order") refers to how multi-byte values are stored in memory, sent between devices or stored on disk. "Big-Endian" values are stored with their most-significant byte first, and "Little-Endian" values are stored with their least-significant byte first.

learn more… | top users | synonyms

128
votes
22answers
102k views

What is a good Windows hex editor / viewer? [closed]

I am in need of a hex editor / viewer (viewer is more important than editing, but a plus if it can edit) for Windows. See KHexedit Requirements: Free is best View data at cursor as: byte, short, ...
40
votes
8answers
1k views

When does Endianness become a factor?

Endianness from what I understand, is when the bytes that compose a multibyte word differ in their order, at least in the most typical case. So that an 16-bit integer may be stored as either 0xHHLL ...
40
votes
17answers
47k views

How do I convert between big-endian and little-endian values in C++?

How do I convert between big-endian and little-endian values in C++? EDIT: For clarity, I have to translate binary data (double-precision floating point values and 32-bit and 64-bit integers) from ...
27
votes
17answers
13k views

Detecting endianness programmatically in a C++ program

Is there a programmatic way to detect whether or not you are on a big-endian or little-endian architecture? I need to be able to write code that will execute on an Intel or PPC system and use exactly ...
22
votes
7answers
586 views

Testing C++ code for endian-independence

How can I test or check C++ code for endian-independence? It's already implemented, I would just like to verify that it works on both little- and big-endian platforms. I could write unit tests and ...
20
votes
4answers
3k views

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 bitwise operators and I can not make heads or tails on it and I think ...
16
votes
7answers
20k views

Are Integers in Java little endian or big endian?

I ask because I am sending a byte stream from a C process to Java. On the C side the 32 bit integer has the LSB is the first byte and MSB is the 4th byte. So my question is on the Java side when we ...
16
votes
3answers
2k views

Is there a way to do a C++ style compile-time assertion to determine machine's endianness?

I have some low level serialization code that is templated, and I need to know the system's endianness at compiletime obviously (because the templates specializes based on the system's endianness). ...
15
votes
6answers
9k views

C/C++: Force Bit Field Order and Alignment

I read that the order of bit fields within a struct is platform specific. What about if I use different compiler-specific packing options, will this guarantee data is stored in the proper order as ...
14
votes
3answers
452 views

Why are both little- and big-endian in use?

Why are both little- and big-endian still in use today, after ~40 years of binary computer-science? Are there algorithms or storage formats that work better with one and much worse with the other? ...
13
votes
9answers
11k views

64 bit ntohl() in C++?

The man pages for htonl() seem to suggest that you can only use it for up to 32 bit values. (In reality, ntohl() is defined for unsigned long, which on my platform is 32 bits. I suppose if the ...
12
votes
4answers
561 views

Testing for Endianness: Why does the following code work?

While I do understand endianness, I am slightly unclear on how the code works below. I guess this question is less about endianness and more about how the char * pointer and int work i.e. type ...
12
votes
2answers
731 views

How to test your code on a machine with big-endian architecture?

Both ideone.com and codepad.org have Little-Endian architechtures. I want to test my code on some machine with Big-Endian architechture (for example - Solaris - which I don't have). Is there some ...
12
votes
4answers
751 views

Is C# Endian sensitive?

Is C# ever Endian sensitive, for example, will code such as this: int a = 1234567; short b = *(short*)&i; always assign the same value to b. If so, what value will it be? If not, what good ...
12
votes
8answers
11k views

C Macro definition to determine big endian or little endian machine?

Is there a one line macro definition to determine the endianness of the machine. I am using the following code but converting it to macro would be too long. unsigned char test_endian( void ) { ...
12
votes
11answers
1k views

ASCII strings and endianness

An intern who works with me showed me an exam he had taken in computer science about endianness issues. There was a question that showed an ASCII string "My-Pizza", and the student had to show how ...
12
votes
4answers
21k views

C# little endian or big endian?

In the documentation of hardware that allows us to control it via UDP/IP, I found the following fragment: In this communication protocol, DWORD is a 4 bytes data, WORD is a 2 bytes data, BYTE is ...
11
votes
4answers
972 views

constexpr and endianness

A common question that comes up from time to time in the world of C++ programming is compile-time determination of endianness. Usually this is done with barely portable #ifdefs. But does the C++11 ...
11
votes
5answers
2k views

Safely punning char* to double in C

In an Open Source program I wrote, I'm reading binary data (written by another program) from a file and outputting ints, doubles, and other assorted data types. One of the challenges is that it needs ...
10
votes
8answers
311 views

Is there a way to enforce specific endianness for a C or C++ struct?

I've seen a few questions and answers regarding to the endianness of structs, but they were about detecting the endianness of a system, or converting data between the two different endianness. What I ...
10
votes
3answers
1k views

Is there any “standard” htonl-like function for 64 bits integers in C++?

I'm working on an implementation of the memcache protocol which, at some points, uses 64 bits integer values. These values must be stored in "network byte order". I wish there was some uint64_t ...
9
votes
6answers
498 views

Can someone explain this “endian-ness” function for me?

Write a program to determine whether a computer is big-endian or little-endian. bool endianness() { int i = 1; char *ptr; ptr = (char*) &i; return (*ptr); } So I have the ...
9
votes
1answer
344 views

What's the most Pythonic way of determining endianness?

I'm trying to find the best way of working out whether the machine my code is running on is big-endian or little-endian. I have a solution that works (although I haven't tested it on a big-endian ...
9
votes
6answers
2k views

Why does an 8-bit field have endianness?

See the definition of TCP header in /netinet/tcp.h: struct tcphdr { u_int16_t th_sport; /* source port */ u_int16_t th_dport; /* destination port */ tcp_seq th_seq; ...
9
votes
5answers
8k views

Difference between Big Endian and little Endian Byte order

what is the difference between Big Endian byte order and little Endian Byte order. These both are related to Unicode and UTF16 where we use this?
8
votes
2answers
237 views

Details about Endian-ness and .Net?

I have a few questions about endian-ness that are related enough that I warrant putting them in as one question: 1) Is endian-ness decided by .Net or by the hardware? 2) If it's decided by the ...
8
votes
7answers
481 views

What is wrong with this C function to find the endianness of a machine at runtime?

This is what I offered at an interview today. int is_little_endian(void) { union { long l; char c; } u; u.l = 1; return u.c == 1; } My interviewer insisted that c ...
7
votes
2answers
245 views

How are the union members stored?

union test { int i; char ch; }t; int main() { t.ch=20; } Suppose sizeof(int)==2 and let the memory addresses allocated for t are 2000, 2001. Then where is 20 i.e. t.ch stored - at 2000 or 2001 or ...
7
votes
3answers
448 views

How to read integers from a file that are 24bit and little endian using Python?

Is there an easy way to read these integers in? I'd prefer a built in method, but I assume it is possible to do with some bit operations. Cheers edit I thought of another way to do it that is ...
7
votes
2answers
309 views

Endianness manipulation - is there a C library for this?

With the sort of programs I write (working with raw file data) I often need functions to convert between big and little endian. Usually I write these myself (which is covered by many other posts ...
7
votes
2answers
619 views

PNG file format endianness?

Im not sure if endian is the right word but.. I have been parsing through a PNG file and I have noticed that all of the integer values are in big endian. Is this true? For example, the width and ...
7
votes
8answers
604 views

Getting 32 bit words out of 64-bit values in C/C++ and not worrying about endianness

It's my understanding that in C/C++ bitwise operators are supposed to be endian independent and behave the way you expect. I want to make sure that I'm truly getting the most significant and least ...
6
votes
8answers
206 views

Detecting Endianess

I'm currently trying to create a C source code which properly handles I/O whatever the endianess of the target system. I've selected "little endian" as my I/O convention, which means that, for big ...
6
votes
5answers
148 views

Is using an union in place of a cast well defined?

I had a discussion this morning with a colleague regarding the correctness of a "coding trick" to detect endianness. The trick was: bool is_big_endian() { union { int i; char ...
6
votes
5answers
671 views

Building a 32bit float out of its 4 composite bytes [C++]

I'm trying to build a 32bit float out of its 4 composite bytes. Is there a better (or more portable) way to do this than with the following method? #include <iostream> typedef unsigned char ...
6
votes
3answers
588 views

Endianness in programming languages

Well, the "Endianness" theme was always a little bit confusing to me, but i have never faced any problems which required me to even think about the default behaviour of binary writers/readers that i ...
6
votes
2answers
151 views

How can I pack an int as 32 bits big endian in Perl?

Consider this snippet: use strict; use warnings; my $data = "1"; my $packed = pack("I",$data); open(my $file,">","test.bin") || die "error $!\n"; binmode $file; print $file $packed; The thing ...
6
votes
3answers
3k views

Endianness of integers in Python

I'm working on a program where I store some data in an integer and process it bitwise. For example, I might receive the number 48, which I will process bit-by-bit. In general the endianness of ...
6
votes
3answers
2k views

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 it's running on, and then other places I have read that it is always, I ...
6
votes
6answers
838 views

Why does BinaryReader.ReadUInt32() reverse the bit pattern?

I am trying to read a binary file with the BinaryReader class, and I need to read it in as blocks of UInt32, and then do some bit shifting etc. afterwords. But, for some reason bit order is reversed ...
5
votes
3answers
228 views

Does Bit Shift Depends on Endianness?

Suppose I have the number 'numb'=1025 [00000000 00000000 00000100 00000001] represented: On Little-Endian Machine: 00000001 00000100 00000000 00000000 On Big-Endian Machine: 00000000 00000000 ...
5
votes
2answers
158 views

How does JPEG endianness matter on coding?

I'm currently working on a big project that involve pictures. One of the big issues I'm having is with the endianness of the picture (jpeg to be clearer). I always though that in our modern world we ...
5
votes
6answers
182 views

Mono Endianness

with .NET things are fairly simple - it is all (including ARM ASFAIK) running little endian . The question that I have is: what is happing on Mono and (potentially) big endian systems? Do the bits ...
5
votes
3answers
383 views

Floating point Endianness?

I'm writing a client and a server for a realtime offshore simulator, and, as I have to send a lot of data through a socket, I'm using binary data to maximize the ammount of data I can send. I already ...
5
votes
5answers
1k views

Qt Sockets and Endianness

I'm writing a program that uses QUdpSocket for transmiting data over the network. This is my first socket program, and I've come across an interesting problem called Endianness. My actual question ...
5
votes
1answer
690 views

c++ library for endian-aware reading of raw file stream metadata?

I've got raw data streams from image files, like: vector<char> rawData(fileSize); ifstream inFile("image.jpg"); inFile.read(&rawData[0]); I want to parse the headers of different image ...
5
votes
10answers
15k views

convert big endian to little endian in C [without using provided func]

I need to write a function to convert big endian to little endian in C. I can not use any library function.
5
votes
5answers
710 views

What are the benefits of the different endiannesses?

Why did some processor manifacturers decide to use Little endian Big endian Middle endian Any others? ? I've heard that with big endian one can find out faster, if a number is negative or ...
5
votes
8answers
3k views

Converting Endianess on a bit field structure

I need to convert a bit-field structure from little-endian to big-endia architecture. What is the best way to do that, as there will be issues in byte boundaries, if I simply swap the structure ...
5
votes
7answers
1k views

endian-ness of new macs - are all pc platforms the same now?

Does the change of macs over to intel chips mean we're done with the bit twiddling on numbers in binary resources for cross platform data distributions? Is that the last of this problem or are there ...

1 2 3 4 5 6