Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
904 views

git svn rebase resulted in byte order is not compatible error

Following is the error I am getting when I tried 'git svn rebase': Byte order is not compatible at ../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_retrieve.al) line 380, at ...
9
votes
5answers
8k views

Difference between Big Endian and little Endian Byte order

what is the difference between Big Endian byte order and little Endian Byte order. These both are related to Unicode and UTF16 where we use this?
6
votes
2answers
278 views

read byte array from C# that is written from Java

I am trying to write an Integer from C# and read it from Java. An integer is 4 bytes in both languages. However when I write it from C#, integer 1 is written in the following bytes 1000. Meaning the ...
4
votes
7answers
2k views

How is each byte in an integer stored in CPU / memory?

i have tried this char c[4]; int i=89; memcpy(&c[0],&i,4); cout<<(int)c[0]<<endl; cout<<(int)c[1]<<endl; cout<<(int)c[2]<<endl; ...
3
votes
2answers
129 views

AES Rijndael and little/big endian?

I am using the public domain reference implementation of AES Rijndael, commonly distributed under the name "rijndael-fst-3.0.zip". I plan to use this to encrypt network data, and I am wondering ...
3
votes
2answers
468 views

Working with binary data in PHP

I'm writing a client for a binary socket protocol in PHP, and it's a pain. I'm currently using pack to convert numbers into binary strings, but it's lacking. Two options pack has are: Write a signed ...
3
votes
8answers
965 views

Any way to read big endian data with little endian program?

An external group provides me with a file written on a Big Endian machine, and they also provide a C++ parser for the file format. I only can run the parser on a little endian machine - is there any ...
3
votes
2answers
994 views

How can I use 32-bit Perl to thaw something frozen with 64-bit Storable?

I'm trying to thaw a database BLOB that was frozen using Storable on a 64-bit Solaris (production) machine. When I try to thaw on a 32-bit Windows (development) PC I receive "Byte order is not ...
3
votes
4answers
658 views

check CPU type at RUN time for C program on MAC

How does a C program determine, at RUN time (not compile time), whether it's running on Little-Endian or Big-Endian CPU? The reason why it must be "run-time" check, not "complie-time", is because I'm ...
2
votes
1answer
63 views

Is it possible (and how) to determine the endianness of an AIFF audio file?

I work on an audio Importer in JAVA (used in a drum sequencer) and I have the following problem with importing AIFF files: I have 2 AIFF files of the same type (24bit, 44100kHz, mono), one is created ...
2
votes
3answers
249 views

C++ Byte order in socket programming

In C++ we send data using socket on the network. I am aware that we need to use htons() , ntohs() function to maintain byte order big endian and little endian. support we have following data to be ...
2
votes
1answer
355 views

Linux: command-line tool to reverse byte order (change endianess)

I'm hacking around in some scripts trying to parse some data written by Javas DataOutputStream#writeLong(...). Since java always seems to write big endian, I have a problem feeding the bytes to od. ...
2
votes
2answers
214 views

Signed Integer Network and Host Conversion

I would like to convert a int32_t from host byte order to network byte order and vice versa. I know about the htonl() function and its variants, but this takes unsigned integers. Is there a standard ...
2
votes
2answers
749 views

What should I #include to use 'htonl'?

I want to use the htonl function in my ruby c extension, but don't want to use any of the other internet stuff that comes with it. What would be the most minimalistic file to #include that is still ...
2
votes
3answers
2k views

Fast sign in C++ float…are there any platform dependencies in this code?

Searching online, I have found the following routine for calculating the sign of a float in IEEE format. This could easily be extended to a double, too. // returns 1.0f for positive floats, -1.0f ...
2
votes
1answer
216 views

Byte order of DEC VAX vs IA-32

A description of the problem follows. You can skip to the bottom line if you're not interested. I am working with a data file with this description: A 109-slice MRI data set of a human head. ...
1
vote
1answer
67 views

How to fix byte ordering issue in this piece of code?

To read a index file in a specific format, I cooked the following piece of code without considering byte ordering: unit uCBI; interface uses SysUtils, Classes, Generics.Collections; type ...
1
vote
2answers
76 views

LARGE_INTEGER value gets changed while marshalling : from LARGE_INTEGER to UINT64 (C) to C#'s uint64

I try to marshal NdisGetCurrentSystemTime result to a C# program via ioctl. LARGE_INTEGER data; NdisGetCurrentSystemTime (&data ); marshal_data->time = (UINT64)(data.QuadPart / 10^6); ...
1
vote
3answers
47 views

istream and ostream across platforms

Suppose I would want to write this on my big-endian machine an_ostream_impl my_output_on_BE; my_output_on_BE << __int32(0x1234); And this on my little-endian machine an_istream_impl ...
1
vote
2answers
81 views

Using ntohl on Struct or Union

ntohl takes a uint32_t. I have messages with many different members (of type uint32_t or uint16_t). Is it possible to properly pass in the entire received struct or union and have it converted to say ...
1
vote
1answer
38 views

Does network byte order matter for proprietary protocols?

So I've got a custom binary protocol that runs over UDP. My source is a little-endian embedded device, with the transmit basically being send(packed struct) . My destination devices are ...
1
vote
2answers
277 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
3answers
115 views

What happens if ntohl() is called with an integer that is already in host byte order?

If I use ntohl() on an integer which is already in host byte order will that cause any problems? If not, how does the ntohl() function know its argument is already in host byte order?
1
vote
1answer
300 views

How can I change the byte order (from network to host, and vice versa) of an IPV6 address?

I am aware of ntoh{s,l} and hton{s,l}, which work on integers of 2 and 4 bytes. Now, I am facing the problem to translate an IPv6 address, which is 16 bytes long. Is there a ready-made function for ...
1
vote
2answers
657 views

Fast reading of little endian integers from file

I need to read a binary file consisting of 4 byte integers (little endian) into a 2D array for my Android application. My current solution is the following: DataInputStream inp = null; try { inp ...
1
vote
1answer
148 views

C and Python code to Java help

I'm trying to read in some bytes from a file in Java and then create bitmasks from some of the data and lengths and offsets from others. I'm so close to getting my program working but I keep getting ...
1
vote
1answer
383 views

Android OpenGL ES Color Byte Order

I'm having the problem that my textures are rendering incorrect colors and based on this it seems like Android's reading the colors in reverse order. I tried solving the problem as the reference says ...
1
vote
2answers
437 views

Java Implementing htonl

I am communicating with a server, each message sent to the server has to be padded with the length of the message, unsigned int len = htonl(msg.size()); In C running the length through htonl and ...
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 ...
0
votes
1answer
42 views

Converting uint32_t to network byte order

i'm doing stuff for my studies, so yeah, it's homework. First: I got a working Java Server Application, i also had this client application i'm writing in c now working in java. Simple as is, i fail ...
0
votes
0answers
37 views

How can I use Mysql's INET_NTOA through an EntityManager in Java, or simply do this conversion through Java code?

I am trying to manage a network Database through a GUI form in Java. I am running into a problem where the ip addresses are stored in the database in Network-Byte-Order, and I need to have users able ...
0
votes
1answer
189 views

Create a 16 Bit TIFF image from a Python string

I need to use scanner in 16 bit depth and color mode, so i modified python-imaging-sane (that doesn't support RGB tiff with 16 bit depth) to receive from a scanner (epson v500) an image in a Python ...
0
votes
1answer
100 views

python struct, Byte order and Alignment for Network application and difference between unsigned int and unsigned long

I have 2 questions about struct in the python documentation: Byte Order, Size, and Alignment : For Network communication should i use ! instead of = ? eg: struct.pack("!BBH", 1, 12, 512) or ...
0
votes
2answers
310 views

glReadPixels returns wrong values

I try to get rendered pixels color. gl.glColor3f(1f, 0, 0); //draw gl.glReadPixels(lastX - pw / 2, MyCanvas.this.getHeight() - (lastY - ph / 2), pw, ph, GL.GL_RED, GL.GL_FLOAT, ...
0
votes
1answer
100 views

Raw sockets: How should I define TCP flags(keeping byte order in mind) and when to use hton function?

I read a tutorial(http://mixter.void.ru/rawip.html) about how to create your own IP and TCP headers and send them using raw sockets. I am having two doubts which are related to the OS byte order. I am ...
0
votes
4answers
299 views

Deserialization of structure data sent by Big Endian system in Little Endian system

I have a C program that receives data from a mainframe in a UDP packet over sockets. The host of the C program is changing from Unix (big endian) to Linux (little endian) and the program no longer ...