From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d9fa52ca55dcef0e X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: Packed array size question.... Date: 1997/03/15 Message-ID: #1/1 X-Deja-AN: 225803204 References: <01bc2b36$b64477a0$f5093e9f@lsm8-pc.linkabit.titan.com> <01bc300c$247f6200$0e096dce@my-pc.neosoft.com> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-03-15T00:00:00+00:00 List-Id: Regarding Size_In_Storage_Elements ... as is clear from the RM quote, this is the size that will be requested from the storage allocator, and may include control words, padding, alignment bytes etc. It may NOT correspond to the stored size of the object in memory. In particular, if you use 'Address and assume that it points to a block of this length that contains data, you may be surprised, there is no guarantee that this would work, and in general it will not!