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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c5f68ab74d5099ee X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.75.170 with SMTP id d10mr5923844pbw.6.1323782145120; Tue, 13 Dec 2011 05:15:45 -0800 (PST) Path: lh20ni17816pbb.0!nntp.google.com!news2.google.com!postnews.google.com!l19g2000yqc.googlegroups.com!not-for-mail From: awdorrin Newsgroups: comp.lang.ada Subject: Re: Interfaces.Shift_Left Date: Tue, 13 Dec 2011 05:15:42 -0800 (PST) Organization: http://groups.google.com Message-ID: <5f989095-5c1c-4b23-a538-d70f4718b4b1@l19g2000yqc.googlegroups.com> References: <18214312-82f5-45c4-b20d-cb530b500929@h3g2000yqa.googlegroups.com> NNTP-Posting-Host: 192.91.173.42 Mime-Version: 1.0 X-Trace: posting.google.com 1323782144 6443 127.0.0.1 (13 Dec 2011 13:15:44 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 13 Dec 2011 13:15:44 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: l19g2000yqc.googlegroups.com; posting-host=192.91.173.42; posting-account=YkFdLgoAAADpWnfCBA6ZXMWTz2zHNd0j User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HUALESRCNK X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0,gzip(gfe) Content-Type: text/plain; charset=ISO-8859-1 Date: 2011-12-13T05:15:42-08:00 List-Id: The data being manipulated does start out as signed 32-bit integers - its the Logical Shift operations in the Interfaces package that are expecting Unsigned_32 types as input parameters. After a good night's sleep - the Unchecked_Conversion seems like the best choice here, if I want to stick with using the Interfaces package.