Tagged Questions

1
vote
1answer
23 views

Endianness in Unix hexdump

The following *nix command pipes a hex representation of an IP and port (127.0.0.1:80) into the hexdump command. printf "\x7F\x00\x00\x01\x00\x50" | hexdump -e '3/1 "%u." /1 "%u:" …
0
votes
4answers
77 views

floating-point to fixed variable (i.e. integer) conversion

Hi everyone, Could someone please help me with byte ordering regarding floating point variables? Actually the code is working correctly on Solaris, but not on Windows Xp. Here is …
1
vote
5answers
74 views

Is there any possible way to exchange data in binary format between windows and solaris

Hi Everyone, Could someone please help and tell me if there is any possible way to pass a data structure (i.e. binary format) through internet sockets between a program running on …
1
vote
5answers
109 views

How to find out the endianness of a machine through a C program? [closed]

Possible Duplicate: Detecting endianness programmatically in a C++ program Is there some way to know whether the machine is big-endian or little-endian, in a C program?
12
votes
11answers
447 views

ASCII strings and endianness

An intern who works with me showed me an exam he had taken in computer science about endianness issues. There was a question that showed an ASCII string "My-Pizza", and the studen …
3
votes
4answers
86 views

Python File Slurp w/ endian conversion

It was recently asked how to do a file slurp in python: link text And it was recommended to use something like with open('x.txt') as x: f = x.read() How would I go about doing …
3
votes
3answers
136 views

Faster way to swap endianness in C# with 16bit words

There's got to be a faster and better way to swap bytes of 16bit words then this. Does anyone have an idea? public static void Swap(byte[] data) { for (int i = 0; i < d …
0
votes
5answers
198 views

C Endian Conversion : bit by bit

I have a special unsigned long (32 bits) and I need to convert the endianness of it bit by bit - my long represents several things all smooshed together into one piece of binary. …
8
votes
3answers
267 views

C++0x constexpr and endianness

A common question that comes up from time to time in the world of C++ programming is compile-time determination of endianness. Usually this is done with barely portable #ifdefs. …
1
vote
5answers
254 views

Determine endianness in C++ [closed]

Possible Duplicate: Detecting endianness programmatically in a C++ program Is there a quick way in a C++ program to tell that if the architecture it is running so is big-e …
2
votes
2answers
187 views

Fast way to swap bytes in array from big endian to little endian in C#

I'm reading from a binary stream which is big-endian. The BitConverter class does this automatically. Unfortunately, the floating point conversion I need is not the same as BitConv …
1
vote
6answers
439 views

C/C++: Force Bit Field Order and Alignment

I read that the order of bit fields within a struct is platform specific. What about if I use different compiler-specific packing options, will this guarantee data is stored in th …
5
votes
7answers
314 views

What is wrong with this C function to find the endianness of a machine at runtime?

This is what I offered at an interview today. int is_little_endian(void) { union { long l; char c; } u; u.l = 1; return u.c == 1; } My intervie …
0
votes
2answers
78 views

BinaryWriter Endian issue

I am using BinaryWriter class to write a binary file to disk. When I invoke the Write method, passing an unsigned short value, it writes it in little-endian format. For example: b …
2
votes
2answers
407 views

Fast little-endian to big-endian conversion in ASM

I have an array of uint-types in C#, After checking if the program is working on a little-endian machine, I want to convert the data to a big-endian type. Because the amount of dat …

1 2 3 4 next
15 30 50 per page