Tagged Questions
big-endian is ordering of bytes in memory to represent some data by storing the most significant byte at the lowest address.
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 ...
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
221 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
156 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
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
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?
4
votes
7answers
1k views
Marshalling a big-endian byte collection into a struct in order to pull out values
There is an insightful question about reading a C/C++ data structure in C# from a byte array, but I cannot get the code to work for my collection of big-endian (network byte order) bytes. (EDIT: Note ...
3
votes
6answers
536 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
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 ...
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
3answers
294 views
C# big-endian UCS-2
The project I'm currently working on needs to interface with a client system that we don't make, so we have no control over how data is sent either way. The problem is that were working in C#, which ...
2
votes
5answers
153 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
2answers
350 views
I need to write a big-endian single-precision floating point number to file in C#
I have a file format I'm trying to write to using C#. The format encodes integer-based RGB color values as a floating point. It also stores the values as big-endian. I found an example of what I'm ...
2
votes
4answers
154 views
How to write a 24 bit message after reading from a 4-byte integer on a big endian machine (C)?
I am constructing a message to send a 24-bit number over the network.
For little endian machines, the code is (ptr is the pointer to the message buffer):
*ptr++ = (num >> 16) & 0xFF;
*ptr++ ...
2
votes
3answers
1k views
C# Big-endian ulong from 4 bytes
Im trying to cast a 4 byte array to an ulong in C#. I'm currently using this code:
atomSize = BitConverter.ToUInt32(buffer, 0);
The byte[4] contians this:
0 0 0 32
However, the bytes are ...
2
votes
1answer
260 views
Perl pack use - double big endian?
According to this calculator site (link text) ,
when converting 3 from dec to double I get 4008 0000 0000 0000
When using Perl pack function, with the parameter "d>*" , I expected to see 4008 0000 ...
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
839 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
2answers
295 views
EndianBinaryReader - Contious update of the input stream?
I am trying to use the EndianBinaryReader and EndianBinaryWriter that Jon Skeet wrote as part of his misc utils lib. It works great for the two uses I have made of it.
The first reading from a ...
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
660 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
40 views
Defining UTF-16BE strings in C++
I need to define unicode string that would look like so:
const char SOME_STRING[] = { 0, 5, 0, 'M', 0, 'y', 0, 'S', 0, 't', 0, 'r' };
This is UTF-16BE string prepended with big endian short ...
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
113 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
1answer
158 views
Node.JS Big-Endian UCS-2
I'm working with Node.JS. Node's buffers support little-endian UCS-2, but not big-endian, which I need. How would I do so?
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
102 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
71 views
Retrieving 16-bit big endian value from byte array?
I have an unsigned 16-bit integer in big endian byte order: 0x01f1 but they are in a byte array as follows:
Array
[0] 0x01
[1] 0xf1
How do I "join" Array[0] with Array[1] such that I ...
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
150 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
2answers
345 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
50 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
1answer
159 views
Sending data to servlet over httpo using java DefaultHttpClient
I am sending some binary data ([byte[]) (using the java DefaultHttpclient) to the servlet running on a apache tomcat server. My question is do I need to worry about machine endianness before sending ...
1
vote
1answer
494 views
Convert a raw string to an array of big-endian words with Ruby
I would like to convert a raw string to an array of big-endian words.
As example, here is a JavaScript function that do it well (by Paul Johnston):
/*
* Convert a raw string to an array of ...
1
vote
2answers
881 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
2answers
619 views
Fixed/variable length structure in c# and big endian conversion
Struct {
byte F1[2]
SHORT F2
byte F3[512]
} BPD
CBD
{
SHORT CLENGTH
byte DATA[]
}
Above are 2 c++ structure. Here SHORT is of 2 byte signed.
What would be the best way to convert it into C#?
...
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
31 views
Big endian : moves between two registers of the same size
If a DSP has two CPU registers of the same size, say A and B, both are 16 bits ( 2 bytes)
if I do the following instruction:
move A,B
I have 2 questions:
So does the lower byte of A move into the ...
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
90 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
2answers
49 views
Reading Big Endian from Memory and Incrementing Memory
i dunno where is the problem exactly, but it seems when i pass 'Memory' by reference, it doesn't work. im trying to Read a Word From Memory in Big Endian and Increment Data by 2
here is how i do it
...
0
votes
3answers
98 views
ASCII to Binary Representation (Big Endian)
I am writing a function that converts an ascii string to its binary representation in big endian.
Here is my code:
int count = 0;
for (int i = 0; i < num_strs; i++) {
for (int j ...
0
votes
3answers
125 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
144 views
So on x86-64 it's big endian?
0x0000000000400507 <main+28>: 74 0c je 0x400515 <main+42>
0x0000000000400509 <main+30>: bf 28 06 40 00 mov $0x400628,%edi
..
0x400507 <main+28>: 0x28bf0c74
Is ...
0
votes
1answer
95 views
Big-endian architecture 101
I only know what I know through my experience through Computer Architecture course. Little-endian stores the LSB on the right and MSB on the left and on Big-endian it's vice versa.
That would mean a ...
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
813 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 ...