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

1
vote
0answers
20 views

entity framework, oracle, guid endianness

I use EF 4 with oracle. I have a table with a RAW column containing guids. These guids are imported from a sql server db by some process I cannot control. My issue is that if I simply use EF to ...
0
votes
0answers
11 views

Wave file structure endianness

As you can see in the wave file structure (RIFF), there's diferente endianness for each item of the header. Why? In what does it helps? Thanks! http://i.stack.imgur.com/YPYW8.gif
0
votes
0answers
27 views

Why is the BMP file format stored in big endian

I have two BMP files, a windows screenshot and a linux generated file using GIMP. What I noticed is that all the data in the headers is stored in big endian format. The biWidth, biHeight and biPlanes ...
2
votes
1answer
62 views

difference between two multi-byte integers, big endian and little endian

if I have 4 multi-byte integers, A, B, C, D in a big endian system and A-B = C-D if they are in a little endian system, does the equality still hold? Note: I want to get the difference between ...
3
votes
3answers
67 views

Can endianness refer to bits order in a byte?

I'm reading "Learning Core Audio: A Hands-On Guide to Audio Programming for Mac and iOS" by Chris Adamson and at one point the author describes big-endian as: the high bits of a byte or word are ...
2
votes
2answers
75 views

Data transfer across big and small Endian machines

Assuming there are 3 strings like "cat", "bat, "rat". I need to combine them into one string and send them to another computer of different Endianess through socket programming. So, if the other ...
0
votes
0answers
26 views

Understanding Little/Big Endian and Addressing

The context... I'm trying to convert bytes received from a certain device that uses modbus register sets. In my particular case, registers on the device each have two bytes and they are represented as ...
-1
votes
2answers
54 views

c++ missing endianconvert method

I have some partial source code which I'm trying to fully reconstruct (don't ask where the rest is, its not available) and I'm currently stuck at a missing method 'endianconvert' I don't have much ...
2
votes
2answers
72 views

why endianess matters among bits inside a byte?

the following is the IP structure from library on a linux machine struct ip { #if __BYTE_ORDER == __LITTLE_ENDIAN unsigned int ip_hl:4; /* header length */ ...
0
votes
1answer
53 views

Fast way to swap endianness using opencl

I'm reading and writing lots of FITS and DNG images which may contain data of an endianness different from my platform and/or opencl device. Currently I swap the byte order in the host's memory if ...
0
votes
1answer
23 views

DB vs. filesystems - for non-image files and endianess

I've read the many discussions about Databases vs. file systems for storing files. Most of these discussions talk about images and media files. My question is: 1) Do the same arguments apply to ...
0
votes
1answer
55 views

How to pack with variable bit order and length in python

I need to create a IP Packet in Python, but the length of the fields are different. Every time I have a field bigger than 1 byte I need to change the byte order to big endian. So what I did was to ...
1
vote
1answer
66 views

boost asio read / receive endianess

Reading data over a socket using boost asio tcp read functions or udp receive functions into a std::vector<char>, does the data fill up the vector in network byte order or receiving-host ...
0
votes
2answers
38 views

llittle endianness of a structure in a structure

Given a hypothetical structure struct OUTER { uint_16 x; struct INNER{ uint_16 y; uint_16 z; } inner_struct; } outer_struct; and a little endian machine, how would the bytes be ...
0
votes
1answer
35 views

ICU Big Endian Strings

I want to convert a UnicodeString using ICU to a UTF-16 string, encoded in big-endian, for sending through a socket. The big-endian thing is messing me up. I can't seem to find any resources relating ...
0
votes
0answers
42 views

Using Blowfish over different Endianness

I am writing an FTP program that requires Blowfish encryption between a big endian computer and a little endian computer. Here is the code I am using to do the encryption. As you can see, it takes ...
0
votes
3answers
79 views

bitwise shift operator under different platforms (windows, mac os, android)

I am debuging a function hashKey. The problem is that it generates different result for the same input under different platforms, windows/win ce, mac os, android. Here is the code: unsigned long ...
1
vote
2answers
185 views

Code to find Endianness-pointer typecasting

I was trying to search for a code to determine the endianness of the system, and this is what I found: int main() { unsigned int i= 1; char *c = (char *)&i; if (*c) { ...
2
votes
3answers
93 views

what is the benefit of detecting endian at runtime?

i've searched for macro's to determine endianess on a machine and didn't found any standard proprocessor macros for this, but a lot of solutions doing that on runtime. why should i detect endianess at ...
0
votes
1answer
102 views

Export ByteBuffer as Little Endian File in Java

I want to Export a ByteBuffer as Little Endian into a file, but when I read in the file again I have to read it as Big Endian to get the right values. How can I export a ByteBuffer in a way that I can ...
3
votes
1answer
92 views

create AudioClip from byte[]

I have problem. I use sqlite to store sounds. I get sound from it in byte[]. Then convert byte[] to float[]: private float[] ConvertByteToFloat(byte[] array) { ...
2
votes
3answers
133 views

How to convert to big endian in ruby

I have a string in little-endian order, as a hexadecimal-encoded string 000000020597ba1f0cd423b2a3abb0259a54ee5f783077a4ad45fb6200000218 ...
3
votes
3answers
155 views

How do you write (portably) reverse network byte order?

Background When designing binary file formats, it's generally recommended to write integers in network byte order. For that, there are macros like htonhl(). But for a format such as WAV, actually the ...
5
votes
3answers
119 views

Can you get a pointer to the lower byte in an endian-independent way?

I have a 16 bit variable data, ie: volatile uint16_t data; I need to populate this value based on the contents of two 8 bit registers on an external sensor. These are accessed over I2C/TWI. My ...
0
votes
4answers
43 views

If you have data with the same endianness as the system, can you simply 1-1 map bytes into an integer type?

I am writing a class which lets me convert between bytes and the various integer data types. Instead of reversing arrays and then converting data, I have opted to determine if the endianness of the ...
-1
votes
1answer
47 views

How to determine Endianess of a file

I am having a hard time making sure if the files I am using are little Endian or Big Endian. I s there any fortran code which I can run over a file to determine its Endianess? Thank you, Pradeep
-1
votes
1answer
53 views

How should I convert the endianness of a 14-bit bitfield?

If I know I am on a little-endian machine, how can I convert the endiannes of a 14-bit bitfield? struct { unsigned foo : 14, bar 2; } baz; I have a hunch that baz.foo = htons(baz.foo) will not ...
4
votes
1answer
136 views

writeShort in little Endian: hex shows big, but opening only works in le

I am a bit confused on what I have done.. As far as I know, java and especially the DataOutputStream writes values in Big endian. I am writing a little signal generator and have to store the files in ...
0
votes
2answers
171 views

How can I convert a 256-bit big endian integer to little endian in Python?

Not too complicated, or so I would hope. I've got a 256-bit hexadecimal integer encoded as big endian that I need to convert to little endian. Python's struct module would usually suffice, but the ...
2
votes
2answers
79 views

What is the behavior of an unsigned int converted to an unsigned char in the C99 standard?

For example: #include <stdio.h> int main(void){ unsigned int x = 64; x += 1023; unsigned char y = x; printf("%u\n", y); return 0; } The variable y holds the value 63 on ...
0
votes
2answers
125 views

SQL Sever Java Compatible GUID / UUID (Big Endian UniqueIdentifier)

I am trying to convert a 128 bit binary to a uniqueidentifier in sql that is the same as in .net and java. I know java uses big endians, so I would like to make that the base. I can get the correct ...
0
votes
1answer
36 views

inconsistent endianess in binary file

I wrote a program to write numbers into binary file, a snippet is as below: u_int16_t N=150; u_int16_t seed=3; FILE * outfile, *infile; outfile=fopen("tempfile","wb"); //write ...
2
votes
1answer
79 views

Conditional compiler directive based on platform or endianness?

I have some code that will one day find itself buried inside a large c# application, long forgotten and overlooked and me maybe long gone or senile. This code has a serious gotcha though. It is ...
0
votes
1answer
173 views

Qt quint32 Little-Endianness with QDataStream

I'm using QDatastream to populate a quint32 array from a QByteArray on an Little-Endian ARM machine like below: // Modify the header QByteArray header = QByteArray::fromRawData((const ...
0
votes
0answers
11 views

Example of usage of endianness conversion in 'industry'

I was wondering apart from converting packet headers where big to small and reverse, conversion of endianness is used?
1
vote
1answer
39 views

implicit declaration of function 'OSReadBigInt8' is invalid in c99

OSReadBigInt8 doesn't seem to exist like those of OSReadBigInt16 and OSReadBigInt32. I would I convert a network byte into the endianess of my platform in objective c? How can I do it?
1
vote
0answers
95 views

Passing parameters to an HTTP request from a C class

My problem is difficult to say, but I try. I have a module, ztc_config, that reads response from some sensors in my net. To read this response, I have written a C class, query.c that's this: ...
0
votes
0answers
58 views

Closed source library - endianness - negative -1 is read as 0 when deserializing

I am reading some floats from a binary xml and deserealize them into a struct containing 4 floats (32 bit floats to be exact). All the values get read correctly, except for those that are -1. Is ...
4
votes
2answers
178 views

How to manage endianess of double from network

I have a BIG problem with the answer to this question Swap bits in c++ for a double Yet, this question is more or less what I search for: I receive a double from the network and I want to encoded it ...
3
votes
1answer
189 views

Linux: ntohl does not work correctly

I have a project that needs to build on Windows, Linux, and VxWorks. The project is built on Linux and Windows but cross compiled for VxWorks. To handle endianness across multiple platforms, it uses ...
0
votes
1answer
99 views

little endian bits in python

I'm trying to make a GIF analyzer; I'm having problems with reading an arbitrary number of bits as an integer in little endian. Struct is nice for byte-sized arguments, but some of the GIF structures ...
2
votes
1answer
79 views

Equivalent of perl statement to C

What would the equivalent of this Perl line be in C? unpack('J>', pack('B*', $s)) Depending on the build of Perl, it takes the binary representation of 4 or 8 bytes ...
2
votes
1answer
65 views

Does endianess depend on processor or memory?

Endianess determines the ordering of bytes in a word. Let us consider the following memory system : so this is a byte addressable 32 bit memory. If I move a hex value 'val = 0x56789A' into the ...
2
votes
1answer
183 views

pcap files and endianness

Running the file command against a pcap file will print out something along the lines of - $ file pcap.pcap pcap.pcap: tcpdump capture file (little-endian) - version 2.4 .... I've been looking for ...
2
votes
1answer
162 views

Converting value to bytearray in javascript

I'm writing app based on WebSocket networking using binary frames. I want to send values from Python server to JS client and back. From what I know, values packed in more then 8-bits depends on ...
3
votes
6answers
329 views

How do I handle byte order differences when reading/writing floating-point types in C?

I'm devising a file format for my application, and I'd obviously like for it to work on both big-endian and little-endian systems. I've already found working solutions for managing integral types ...
0
votes
0answers
67 views

Valgrind-like tool to check Endian-correctness of C code?

Is there a Valgrind-like (dynamic) or Lint-like (static) tool out there that can check Endian-correctness of an arbitrary C code base? The code base can be compiled on various compilers on various ...
0
votes
3answers
138 views

Handling endianness when reading from a byte array in C?

I have a byte array of data, which should be consistent cross-platform. Let's say I have a pointer, unsigned char* data, which points to some location inside my array, and I want to read 4 bytes into ...
0
votes
1answer
105 views

Send DNS data: MSB or LSB first?

I'm implementing a DNS(multicast DNS in fact) in c#. I just want to know if I must encode my uint/int/ushort/... with the LSB on the left or the MSB on the left. And more globally how I could know ...
1
vote
1answer
81 views

Does endian act differently on different devices

I'm using AudioRecord.read(byte[], int, int) to record 16-bit PCM data. Using this method, I can get little endian data on my device but I don't know if it works on other devices. Although I saw API ...

1 2 3 4 5 10