Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
789 views

Are where any difference between array and packed array in Delphi?

In C/C++ you always have SizeOf(array[N] of T) = N * SizeOf(T); In Pascal/Delphi you can use 'packed array' to be sure that the above assert is true, but does 'packed' specifier have any practical ...
6
votes
2answers
491 views

C# encoding a file in EBCDIC with packed decimals

I have to prepare a file for an outside entity, and this entity uses an IBM mainframe with COBOL and requires the file to be encoded in EBCDIC. I am creating the file in C#. I guess this is a two-part ...
6
votes
3answers
200 views

Is there a fast product operation for PackedArrays?

In Mathematica a vector (or rectangular array) containing all machine size integers or floats may be stored in a packed array. These objects take less memory, and some operations are much faster on ...
4
votes
3answers
440 views

What is a “packed” structure in C?

I am going though some C code written for the Microchip C30 compiler and I often see structs defined as follows: typedef struct __attribute__((__packed__)) { IP_ADDR MyIPAddr; ...
3
votes
3answers
199 views

Nothing but “packed” records — should I fix it?

While reviewing some code in our legacy Delphi 7 program, I noticed that everywhere there is a record it is marked with packed. This of course means that the record is stored byte-for-byte and not ...
3
votes
4answers
281 views

Writing 'packed' structs to file using C

How can I "pack" and "write" a struct to a file using C so that: struct a { uint64_t a; char* b; uint16_t c; } a; a b; b.a = 3; b.b = "Hello"; b.c = 4; gets written to the file as 00 00 ...
3
votes
3answers
299 views

min or gzip, which is better?

jquery-1.4.2.min.js is 71.8KB Same file compressed through this tool, with gzip enabled, becomes 32.9 KB Which is better? If latter, why doesn't jQuery provide a packed file too instead of just ...
2
votes
2answers
131 views

Fast list-product sign for PackedArray?

As a continuation of my previous question, Simon's method to find the list product of a PackedArray is fast, but it does not work with negative values. This can be "fixed" by Abs with minimal time ...
1
vote
1answer
91 views

SQL How to get COMP-3 Packed Decimal?

I am creating an ASCII output file contain some information and two of my fields require the date and time to be in packed decimal fields (COMP-3). I am using SQL and SSIS to generate my file. Field ...
1
vote
3answers
145 views

change bit size of packed struct in derived class

The existing code: typedef unsigned int uint; Class A { union xReg { uint allX; struct { uint x3 : 9; uint x2 : 9; uint x1 ...
1
vote
4answers
583 views

How can I have Packed decimal and normal text in a single file?

I need to generate a fixed width file with few of the columns in packed decimal format and few of the columns in normal number format. I was able to generate. I zipped the file and passed it on to the ...
1
vote
1answer
885 views

packed decimal to ascii assembly

I'm trying to convert packed decimal numbers into ascii strings. Here is my understanding thus far: The following: bcd BYTE 34h Should convert to the decimal number 34 after being "unpacked". ...
1
vote
3answers
3k views

How can I use SYNCSORT to format a Packed Decimal field with a specifc sign value?

I want to use SYNCSORT to force all Packed Decimal fields to a negative sign value. The critical requirement is the 2nd nibble must be Hex 'D'. I have a method that works but it seems much too ...
0
votes
0answers
100 views

All-to-1-Exe Portable/Packer/Compressor/Virtualization

I am not sure what the accepted term is for what I am after. Currently, I am using VMWare Thinapp and/or Cameyo to pack up a folder with 2000 files that all depend on eachother but ran by one .exe ...