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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d778a4f52acd9d43 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.189.194 with SMTP id gk2mr9480534pbc.3.1324604038470; Thu, 22 Dec 2011 17:33:58 -0800 (PST) MIME-Version: 1.0 Path: lh20ni53619pbb.0!nntp.google.com!news1.google.com!goblin2!goblin1!goblin.stu.neva.ru!news.tornevall.net!news.jacob-sparre.dk!pnx.dk!jacob-sparre.dk!ada-dk.org!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Representation clauses for base-64 encoding Date: Thu, 22 Dec 2011 19:33:55 -0600 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1324604037 5378 69.95.181.76 (23 Dec 2011 01:33:57 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Fri, 23 Dec 2011 01:33:57 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2011-12-22T19:33:55-06:00 List-Id: "Natasha Kerensikova" wrote in message news:slrnjf5uol.1lme.lithiumcat@sigil.instinctive.eu... > type Octet is mod 256; > -- or Character or Storage_Element or Stream_Element > -- or whatever 8-bit type relevant for the appliication > > for Octet'Size use 8; > for Octet'Component_Size use 8; Component_Size is only for array types, put it on the array type. > for Octet'Bit_Order use System.Low_Order_First; Bit_Order is only for record types, put that on the record type. Randy.