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

learn more… | top users | synonyms

0
votes
1answer
45 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 ...
2
votes
3answers
84 views

Perl: How to convert big endian to little endian

This problem is solved. Thank you so much guys^^ My problem and the solution I am using is stated below. Original problem: --- Edited 20130508 I know that I can do this task by C++ like this: ...
0
votes
1answer
37 views

Convert little endian to big endian including 0 (zero)

Im trying to convert little endian to big endian and having trouble. I have an array that has 2 bytes of unsigned char which is hex values. and i would like to make it big endian by the zeros are gone ...
2
votes
3answers
82 views

How to convert to big endian in ruby

I have a string in little-endian order, as a hexadecimal-encoded string 000000020597ba1f0cd423b2a3abb0259a54ee5f783077a4ad45fb6200000218 ...
0
votes
1answer
57 views

PHP interpret a 4 byte binary string as an unsigned big endian integer

I am trying to interpret a binary string as an unsigned big endian integer, as her instructions here: http://mimesniff.spec.whatwg.org/#matches-the-signature-for-mp4 (point 4) I'm not quite sure what ...
0
votes
0answers
39 views

Writing Java Signature byte to little endian

I need to write signatures in little endian format. Signature rsa= Signature.getInstance("SHA1withRSA","SunMSCAPI"); rsa.initSign(privateKey); //assuming privKey as private key .. //buffer is ...
-1
votes
1answer
44 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
0
votes
2answers
109 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 ...
0
votes
1answer
78 views

PHP Convert Big Endian to Hex

I am trying to write a PHP script where I can take a big endian packet and convert it over to hex. I understand you can use unpack if anyone can explain the steps I greatly appreciate it. I was told I ...
0
votes
0answers
40 views

big endian to little endian bool

i am trying to convert bool and double from big endian to little endian in C#.NET. Actually i got this code for converting int from big endian to little endian byte[] byteArray int index= 0; ...
2
votes
2answers
89 views

Does bit-shifting always take the Endian architecture into consideration?

Suppose I'm porting code from C++ and need to emulate the same Bit-shifting techniques in C#: Whenever I perform bitshifting, do I ever have to consider the Endain-ness of the architecture?
1
vote
0answers
91 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: ...
1
vote
1answer
174 views

How to convert bytes to long in java

Here i have one String and i converted this string to long and than this long value converted into bytes. This byte array length is 6. final byte[] tagBytes = ...
0
votes
0answers
51 views

Python 3 - upon writing to UTF16 BE file, becomes converted to LE

Using Python 3.3 (Windows 8), I am reading from an UTF-16-BE file: a hex editor shows BOM present, 0xFEFF when inspecting in Big Endian mode. Notepad++ reports encoding as UCS-2 Big Endian. After ...
1
vote
1answer
148 views

Test big endian [duplicate]

Possible Duplicate: Little vs Big Endianess: How to interpret the test Is there an easy method to test code with gcc or any online compiler like ideone for big endian? I don't want to use ...
1
vote
3answers
139 views

Big-endian arithmetic in C

Is there a convenient way of doing arithmetic with big-endian data? Here's what I've been doing (in pseudocode): main: unsigned int big_endian_number = 0x12345678; int multiplier = 7; ...
1
vote
0answers
14 views

load mat file unicode depending on big or little endian

I am trying to convert a matlab structure from a .mat file to a python dict. I use scipy.io module to do this. actually I have some trouble. for the same data containing in the mat file, the loadmat ...
1
vote
1answer
229 views

How write big endian ByteBuffer to little endian in Java

I currently have a Java ByteBuffer that already has the data in Big Endian format. I then want to write to a binary file as Little Endian. Here's the code which just writes the file still in Big ...
4
votes
2answers
167 views

Efficient way to read big endian data in C#

I use the following code to read BigEndian information using BinaryReader but I'm not sure if it is the efficient way of doing it. Is there any better solution? Here is my code: // some code to ...
6
votes
2answers
169 views

The reason behind endianness?

So, I was wondering, why some architectures use little-endian and others big-endian. I remember I read somewhere that it has to do with performance, however, I don't understand how can endianness ...
2
votes
0answers
80 views

How can I use .NET4's BigInteger with GPUs or FPGAs? Do I handle big-endian math?

Part 1 I'm interested in offloading BigInteger calculations to GPUs or FPGAs. Is it possible to do math operations (exponents, etc) on something other than a CPU with this type? (or objects that ...
1
vote
0answers
151 views

something wrong about jffs2dump change a JFFS2 file system to a little-endian file

i have a JFFS2 file system ,it's a big-endian. my computer: x86 Linux,little-endian. i used jffs2dump to changed my JFFS2 file to a little-endian. eg: (# jffs2dump -c -v -b -e B070.jffs2 B070.w). ...
0
votes
1answer
83 views

c# convert array of the bytes from big to little endian floats

I need to do converting from big to little endian in c#. I've an array of bytes (byte[]) received through UDP. How to convert the big endian's byte[] to little endian's float and then print it? Show ...
1
vote
2answers
98 views

64bit arithmetic providing wrong output in 32-bit application

I couldn't understand why the below identical operations reports two different outputs. When my num is declared to be of negative value and I add the num to the baseAddr, I see my addr going past ...
2
votes
1answer
112 views

Endianness of HMAC-SHA code

I am transmitting AES messages. My understanding is that: 1. The AES algorithm treats messages as byte-wise and is endian-neutral. 2. The Initialization Vector is endian-neutral as far as ...
0
votes
2answers
41 views

Dow same exe works on machines with different endianess?

Suppose I build an executable in little endian machine. In the application I take an input from the user and compare it with a constant. I believe the constant will be saved as little endian during ...
0
votes
3answers
512 views

How to get size in bits Java

How to get a size of String in 64 bits(not bytes)in big endian order)? I have never done this kind of operations in Java. Thanks for any help : ).
0
votes
0answers
32 views

Preparing table for SHA-1

I try to code the SHA-1 algorithm. In my book they wrote that the algorithm needs array of 32 bit values. I has to have length of multiple of 16(it is easy but what values I suppose to add at the end ...
0
votes
3answers
116 views

big-endian && little -endian?

Can any one tell me what this statement means: "Specify the endianness of the object files. This only affects disassembly. This can be useful when disassembling a file format which does not describe ...
0
votes
0answers
135 views

change .data section in the objdump to little-endian mode

can any one told me how I can change the content of .data section that exist in objdump file (file that result after disassembling binary file using objdump tool) from big-endian to little-endian ...
6
votes
4answers
268 views

Output Explanation of this program in C?

I have this program in C: int main(int argc, char *argv[]) { int i=300; char *ptr = &i; *++ptr=2; printf("%d",i); return 0; } The output is 556 on little endian. I tried to ...
0
votes
2answers
99 views

How to convert endianness- as array of bits

I'm looking to convert a value from little-endian to big-endian (and vice versa). I have the value expressed as an array of bits, rather than as a single integer. How can I implement an endianness ...
0
votes
2answers
471 views

big-endian ip address into 4 byte binary with php

I am looking to create a private torrent tracker but I have came across a problem. I found in the protocol specifications that the compact response that the most clients use now is presented as binary ...
3
votes
2answers
504 views

Porting an application from little-endian to big-endian architecture

I have a TCP server developed on x86 architecture using C under Linux using berkley socker API. The server runs fine without any problems. But now for some reasons I have to run the server on MIPS ...
0
votes
2answers
476 views

big endian vs little endian

i work on a 64 bit intel processor...i was learning about big and little endian and what i understood was that these are byte orderings within a word such that in a 64 bit data, msb will have lowest ...
5
votes
5answers
311 views

Little vs Big Endianess: How to interpret the test

So I'm writing a program to test the endianess of a machine and print it. I understand the difference between little and big endian, however, from what I've found online, I don't understand why these ...
1
vote
1answer
129 views

Can Mono DataConvert be used to read a 3-byte integer?

I'm trying to read a particular binary file, but it contains 3-byte big-endian integers. I came across Mono DataConvert recently, which should be nice for most of what I want, except for these 3-byte ...
1
vote
2answers
157 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 ...
0
votes
1answer
136 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
530 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: ...
2
votes
3answers
2k 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 ...
2
votes
1answer
194 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 ...
0
votes
1answer
396 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) { ...
2
votes
1answer
988 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. ...
0
votes
2answers
141 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
314 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 ...
1
vote
0answers
136 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 ...
0
votes
3answers
768 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 ...
2
votes
4answers
716 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; ...
3
votes
1answer
642 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 2