6
votes
8answers
201 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, …
0
votes
2answers
25 views
How to generate simple Packing List with MySQL ?
Hi,
I need help on how to create a packing list of a shipment with MySQL.
Let's say i have 32 boxes of keyboard ready to ship, the master carton can contain 12 boxes.
I only hav …
-2
votes
3answers
198 views
How to pack and unpack a string with each character taking 7 bits only?
Storing 7-bit ASCII characters as chars wastes 1 bit of space per character. Write a function to pack a char string containing 7-bit ASCII characters into the smallest possible cha …
7
votes
5answers
297 views
Any tools available for packing 32bit/64bit executables together?
I really like the way the SysInternals utilities (e.g. Process Explorer) handle 64bit compatibility. It looks like the 32bit executable has the 64bit version embedded in it, and ex …
8
votes
5answers
264 views
Algorithm needed for packing rectangles in a fairly optimal way
Ive got a bunch of rectangular objects which I need to pack into the smallest space possible (the dimensions of this space should be powers of two).
I'm aware of various packing a …
2
votes
2answers
63 views
Does the concept of coupling two different items of data by storing them in a single variable have a name?
For example, if I have a 64-bit variable and store two 32-bit items of data in it, perhaps for the purposes of SIMD processing, is there a name to describe the logical coupling of …
1
vote
1answer
471 views
circle packing - java
I have a task to draw a circle and then fill in with the most amount of circles without touching the sides. I can draw the circle, and I can make loops to pack the circle in a hexa …
3
votes
4answers
238 views
Union and struct packing problem
Hi, I'm writing some software where each bit must be exact(it's for the CPU) so __packed is very important.
typedef union{
uint32_t raw;
struct{
unsigned int present:1;
unsigne …
4
votes
6answers
1k views
Piece together several images into one big image
I'm trying to put several images together into one big image, and am looking for an algorithm which determines the placing most optimally. The images can't be rotated or resized, b …
5
votes
8answers
258 views
Text packing algorithm
I bet somebody has solved this before, but my searches have come up empty.
I want to pack a list of words into a buffer, keeping track of the starting position and length of each …
1
vote
1answer
172 views
Packing enums using the MSVC++ compiler
With GCC, I could do packing of enums using attribute((packed)), but it seems the closest thing in MSVC, #pragma pack, does not work on enums. Does anyone know of a way to pack en …
4
votes
3answers
146 views
How is the organization of the 12 Bit RGB color format?
Hello,
I know that the 12 bit RGB color pallette format , has 4 bit for each color R,G,B.
But how is the structure of the raw data i.e.
1.) Does each color have a byte correspon …
2
votes
1answer
304 views
Bit packing in C
I'm trying to convert an RGB image to an ARGB image, basically just adding 255 in for the alpha channel. I was wondering if there is any pack method to do this without iteration? S …
0
votes
1answer
139 views
Can someone explain Gtk2 packing?
I need to use Gtk2 for a project. I will be using python/ruby for it. The problem is that packing seems kind of mystical to me. I tried using a VBox so that I could have the follow …
1
vote
3answers
62 views
Suggestions on creating & deploying minimized JavaScript with NAnt?
Do you have any suggestions or examples on how to deploy minimized (min) versions of JavaScript files using NAnt?
Are there any good command line applications, or scripts to assis …
