Tagged Questions

little-endian is ordering of bytes in memory to represent some data by storing the least significant byte at the lowest address.

learn more… | top users | synonyms

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 ...
8
votes
3answers
1k views

(java) Writing in file little endian

I'm trying to write TIFF IFDs, and I'm looking for a simple way to do the following (this code obviously is wrong but it gets the idea across of what I want): out.writeChar(12) (bytes 0-1) ...
7
votes
7answers
6k views

Does my AMD-based machine use little endian or big endian?

I'm going though a computers system course and I'm trying to establish, for sure, if my AMD based computer is a little endian machine? I believe it is because it would be Intel-compatible. ...
6
votes
3answers
3k views

Convert big endian to little endian when reading from a binary file

Hi I'm been looking around how to convert big endian to little endians. But I didn't find any good that could solve my problem. It seem to be there's many way you can do this conversion. Anyway this ...
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 ...
4
votes
6answers
212 views

What are the use-cases for IsLittleEndian in BitConverter class?

I was so happy when I discovered IsLittleEndian field in BitConverter. I thought of course it should be there and I should be able to specify whatever endian I like. Well, my happiness didn’t last ...
4
votes
1answer
183 views

C library function to convert binary byte array to integer with various conversions

Is there a set of C library functions (or non-library functions collected somewhere) which allow conversion of byte-array data into integers with various conversions (big-endian data, little-endian ...
4
votes
2answers
253 views

x86 assembly, little endianness not being followed(or is it?) (Linux)

I am new to assembly language programming and I wrote a small program to print the integer using sys_write system call. Here's my code : section .data N: dw 216 chr: dw ,0,0,0,0x0a section .bss ...
4
votes
2answers
1k views

Finding if the system is little endian or big endian with perl

Is there an option to find if my system is little endian byte order or big endian byte order using Perl?
3
votes
2answers
795 views

Converting Int32 to 24-bit signed integer

I have a need to convert an Int32 value to a 3-byte (24-bit) integer. Endianness remains the same (little), but I cannot figure out how to move the sign appropriately. The values are already ...
3
votes
6answers
542 views

Little Endian - Big Endian Problem

Little Endian vs Big Endian Big Endian = 0x31014950 Little Endian = 0x50490131 However Using this Method inline unsigned int endian_swap(unsigned int& x) { return ( ( (x & ...
3
votes
4answers
640 views

Swap bits in c++ for a double

Im trying to change from big endian to little endian on a double. One way to go is to use double val, tmp = 5.55; ((unsigned int *)&val)[0] = ntohl(((unsigned int *)&tmp)[1]); ((unsigned int ...
3
votes
5answers
1k views

Little endian Vs Big endian

Lets say I have 4Byte integer and I want to cast it to 2Byte short integer. Am I right that in both (little and big endian) short integer will consist of 2 least significant bytes of this 4Byte ...
3
votes
2answers
771 views

Little Endian Bitmask

I need to convert an array of integers to a little endian bitmask using Ruby. Any links or hints would be appreciated. the example says [2,7,9,11] => "4205" a = [2,7,9,11] # 4205 b = [1,2,3,4] # ...
2
votes
1answer
49 views

How would I append a 64-bit Big-Endian int in ASM?

I am new to Assembly, but not new to programming and how it works in general. Because I know quite a few languages already, I decided to make my first ASM program calculate the SHA-1 hash of input ...
2
votes
5answers
154 views

Determining if A System Uses Big Endian or Little Endian using C

I'm curious if this function will determine endianness. The test is a bitmask that equals 1 if the integer someInt is stored in little endian. in the bitmask, would 0x1000 be converted to match ...
2
votes
1answer
197 views

Obtaining an integer given its 4-byte unsigned integer little-endian form? (C++)

I'm probably very wrong here so please point out any misconceptions or mistakes I may have. The input for this assignment is a string of some characters followed by a series of 4-byte unsigned ...
2
votes
3answers
662 views

How to transform phrases and words into MD5 hash?

Can anyone, please, explain to me how to transform a phrase like "I want to buy some milk" into MD5? I read Wikipedia article on MD5, but the explanation given there is beyond my comprehension: ...
2
votes
1answer
556 views

SQL Server binary(128) convert from little endian to big endian

how to convert a binary(128) from little endian to big endian in SQL Server?
2
votes
4answers
845 views

Big Endian and Little Endian for Files in C++

I am trying to write some processor independent code to write some files in big endian. I have a sample of code below and I can't understand why it doesn't work. All it is supposed to do is let byte ...
2
votes
3answers
3k views

Bitwise Not Operator (~ in C) with regards to little endian and big endian

This is in relation to a homework assignment but this is not the homework assignment. I'm having difficultly understanding if there is a difference on how the bitwise not (~ in C) would affected ...
2
votes
2answers
662 views

mmap big endian vs. little endian

If I use mmap to write uint32_t's, will I run into issues with big endian/little endian conventions? In particular, if I write some data mmap'ed on a big-endian machine, will I run into issues when I ...
1
vote
2answers
70 views

How to get little endian data from big endian in c# using bitConverter.ToInt32 method?

i am making application in c#.In that application i have byte array containing hex values. Here i am getting data as a big endian but i want it as a little endian. Here i am using ...
1
vote
1answer
120 views

Big Endian and Little Endian

Given is the snap shot of memory of a byte-addressable computer. What would be loaded into register $16 after execution of instruction lw $16, 24($17) if machine is big endian and when Little Endian. ...
1
vote
0answers
30 views

about block XTEA in C code

i want to send/receive encryption data with differnet endian systems it is possible? i heard that that is possible to same endian systems xxtea code is block xtea in internet... #define MXA ...
1
vote
4answers
157 views

how are integers stored in memory?

I'm confused when I was reading an article about Big/Little Endian. Code goes below: #include <iostream> using namespace std; int i = 12345678; int main() { char *p = (char*)&i; ...
1
vote
0answers
62 views

Big-endian vs Little-endian machines

I understand what the difference between the two are. Looking at the entry in wikipedia it seems like litte-endian format is gaining ground and this is not as much of an issue as it used to be. HP-UX ...
1
vote
3answers
103 views

how to over come Little endian to big endian problem in TFTP client and server communication.?

i am creating WRQ packet for TFTP client in cPP. the code works fine in Little endian system (PC) and have proble m with Big Endian system while creating packets. the code is #define ...
1
vote
2answers
281 views

ByteBuffer getInt() question

We are using Java ByteBuffer for socket communication with a C++ server. We know Java is Big-endian and Socket communication is also Big-endian. So whenever the byte stream received and put into a ...
1
vote
5answers
204 views

Swapping endiannes in C

I have this string c1eb044f0708015b267913fc4dff5aabe3dd4a97f10f7ba935cd360000000000 How does one swap it so it becomes 000000000036cd35a97b0ff1974adde3ab5aff4dfc1379265b0108074f04ebc1 Those two ...
1
vote
4answers
151 views

Is this program compatible on both big and little endian systems?

I wrote a small program which reverses a string and prints it to screen: void ReverseString(char *String) { char *Begin = String; char *End = String + strlen(String) - 1; char TempChar = ...
1
vote
4answers
598 views

Unpack signed little-endian in Ruby

So I'm working on some MongoDB protocol stuff. All integers are signed little-endian. Using Ruby's standard Array#pack method, I can convert from an integer to the binary string I want just fine: ...
1
vote
2answers
347 views

How to find out endianness of a file?

How can I figure out whether it's a big-endian or little-endian file? I just tried to write a big-endian file with matlab but probably it didn't work. Now I want to learn if it is possible to learn ...
1
vote
1answer
174 views

How do you convert little Endian to big Endian with bitwise operations?

I get that you'd want to do something like take the first four bits put them on a stack (reading from left to right) then do you just put them in a register and shift them x times to put them at the ...
1
vote
1answer
51 views

FTP: Downloaded a file to Mac OS and transferred to a Windows Server VM - but wouldn't work

I took an MS SQL database file from an FTP location to a Mac OS, then copied from MAC OS to my Windows Server VM. However, the restore process for the database failed to work. When I FTP from the ...
1
vote
2answers
49 views

receive string with chars

i am quite new in python. I am receiving (through pyserial) string with data values. How can I parse these data to particular data structure? I know that 0-1 byte : id 2-5 byte : time1 =>but ...
1
vote
2answers
886 views

Converting big-endian into little-endian and vice-versa in VBA

My machine is little-endian (Intel byte order). I need to read a binary file containing 16-bit signed integer data in Motorola/IEEE byte order ("big-endian"), then do some calculations, and finally ...
1
vote
3answers
1k views

Confusion in htons- little endian/ big endian

When I send a integer variable from one process to other through socket, and then printing the value at received end, the value is still the same without using ntohl/htonl, then where do I need to use ...
0
votes
1answer
93 views

Record little endian PCM with AudioQueue on iOS

Im trying to record a little endian PCM file with AudioQueue. According to the docs I should clear the kAudioFormatFlagIsBigEndian bit in the AudioStreamBasicDescripton.mFormatFlags. The docs says: ...
0
votes
1answer
92 views

[C]Convert Decimal IP To Dotted Decimal Notation

I got the following Decimal IP: "3232235876" it represents "192.168.1.100" I got it in the following way: //GET IP if (gethostname(hostname, sizeof(hostname)) == SOCKET_ERROR) { ...
0
votes
3answers
127 views

little endian to big endian

see i have already written one library (on little endian machine)it works fine in little endian machine now i when i run in in big endian platform it doesn't works .error are very hard to ...
0
votes
1answer
37 views

Using dword value as an operand to ASM jmp

I'm playing with some runtime function patching but I have a problem with the endiannes when writing memory address values. So what I have: char buf[] = \xE9\xDE\xAD\xBE\xEF At runtime I have to ...
0
votes
1answer
2k views

Expandable ByteBuffer equivalent supporting little endian write/reads?

I'm currently using a ByteBuffer to store a chain of primitives before sending it all over the wire. I'm using data.order(ByteOrder.LITTLE_ENDIAN); because that's how data should be sent. Is there a ...
0
votes
4answers
48 views

array of bytes to num

I have for example tab = [0x51, 0x3c, 0xb8, 0x15] then I want to convert this table to integer 0x15b83c51 = 363323840 any ideas?
0
votes
1answer
106 views

CRC in python, little Endian

I need to calc CRC checksumme of binary file. This file content CRC too and by comparing I find out when file was corrupted. Bin file is something like long hex string 00200020 595A0008 ...... But ...
0
votes
1answer
202 views

How to change endianness of a file?

I used MATLAB to change endiannness of a file. It works but endianness does not change. What's wrong with this code? f = fopen('139o.wav','r+'); litEndFile=fread(f); ...
0
votes
3answers
821 views

Convert byte array from small to big endian or vice versa

How would I convert a byte array, Byte[] from small to big endian. I'm thinking of porting this program to Mono and was wondering the best approach. Any help would be appreciated. EDIT: I'm ...
0
votes
3answers
329 views

Endianness inside CPU registers

I need help understanding endianness inside CPU registers of x86 processors. I wrote this small assembly program: section .data section .bss section .text global _start _start: nop mov ...
0
votes
1answer
225 views

Can one assign 4 little-endian-ordered bytes of an unsigned integer to a Java primitive using just bitwise operators?

I want to read 4 bytes which are a little-endian encoding of an unsigned 32-bit integer, and assign the value to a Java int (Yes, in reality I will use a 'long', but in this case I 'know' that the ...

1 2