Tagged Questions

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
157 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?
3
votes
6answers
537 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
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
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
841 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
661 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
114 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
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
2answers
346 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
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
882 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
126 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
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
814 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
1answer
65 views

When processor endian awareness is required?

I am in Mac. With Cocoa, I know with normal files we can directly read or write without worrying about the endianness. When processor endian awareness is required? Regards, Dhana.
0
votes
2answers
647 views

Please verify: this converter reads the byte array as Big-Endian?

Im am porting some stuff from C# to JAVA and I need a class that can convert bytes to primitives, just lite BitConverter in .NET can. As I just posted here, I noted that my computer uses ...
0
votes
2answers
287 views

How fast is the procedure to convert from using big endian to little endian?

How fast is the procedure to convert from using big endian to little endian?
-1
votes
2answers
269 views

Little endian Vs Big endian convention in x86 chips

I realised that though intel chips are little endian when it comes to storing data in data segment, but same chips are big endians when it comes to store machine code in code segment. An opcode for ...