Tagged Questions
The bit-packing tag has no wiki summary.
8
votes
6answers
1k views
Bit packing of array of integers
I have an array of integers, lets assume they are of type int64_t. Now, I know that only every first n bits of every integer are meaningful (that is, I know that they are limited by some bounds).
...
6
votes
8answers
1k views
C++ Data Member Alignment and Array Packing
During a code review I've come across some code that defines a simple structure as follows:
class foo {
unsigned char a;
unsigned char b;
unsigned char c;
}
Elsewhere, an array of these ...
3
votes
5answers
545 views
What is a better method for packing 4 bytes into 3 than this?
I have an array of values all well within the range 0 - 63, and decided I could pack every 4 bytes into 3 because the values only require 6 bits and I could use the extra 2bits to store the first 2 ...
3
votes
2answers
1k views
Managing bit packed data using C#
I'm working on a TCP based application that processes bitpacked messages, meaning: The messages transmitted/received are not byte aligned. For instance 3 bits represent field 1, where 19 bits may ...
2
votes
1answer
169 views
Packing two shorts into one int, dealing with negative and positive
I'm making a class PackedUnsigned1616 which stores two unsigned shorts in one int, and a class PackedSigned1616 which stores two signed shorts in one int. I've read up on bitwise operations, but I'm ...
2
votes
2answers
402 views
Array inside a bit-packed struct
I'd like to have an array inside of a bit-packed struct. I statically know the size of the array (32), and I'd like each element in the array to be a single bit. For example, I would like to be able ...
2
votes
1answer
756 views
C# equivalent of python's struct.pack
Is there a library for C# that allows similar functionality to python's struct from the standard library?
One can emulate the struct library quite closely with real aligned structs. But I didn't find ...
0
votes
1answer
47 views
Problems with bit-packing and dynamically allocating
Im having trouble with this piece of code.
Im building an image encoder. Basically I built an encoding array using values from the image. The array is called 'codes', and stores char* ...
0
votes
5answers
337 views
What is VC++ doing when packing bitfields?
To clarify my question, let's start off with an example program:
#include <stdio.h>
#pragma pack(push,1)
struct cc {
unsigned int a : 3;
unsigned int b : 16;
unsigned int c ...
0
votes
3answers
235 views
How to pack the required bits of a structure in a char*?
Language : C++
I am working on Bit Packing (Extracting the required bits from the given data and packing them in a char*) . My code currently supports :
- Integers
- Characters
- Strings
Now if I ...
0
votes
1answer
559 views
Client-Server Data Encryption and Protocol Design
I'm writing a client-server application to be used in a computer lab and act as a service (without running as a service). I have a console application calling the native function "ShowWindow"/SW_HIDE ...