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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!g31g2000yqc.googlegroups.com!not-for-mail From: Gautier write-only Newsgroups: comp.lang.ada Subject: Re: Tasking for Mandelbrot program Date: Tue, 13 Oct 2009 02:39:49 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <4abebaf4$0$31342$9b4e6d93@newsspool4.arcor-online.net> <4abfd8df$0$31337$9b4e6d93@newsspool4.arcor-online.net> <59856ad8-2434-4370-a1df-875b46b3b7bc@o41g2000yqb.googlegroups.com> <4ad36024$0$7626$9b4e6d93@newsspool1.arcor-online.net> <13d4e273-d473-4e9e-9029-61910e969108@k19g2000yqc.googlegroups.com> NNTP-Posting-Host: 206.122.158.4 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1255426789 17885 127.0.0.1 (13 Oct 2009 09:39:49 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 13 Oct 2009 09:39:49 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: g31g2000yqc.googlegroups.com; posting-host=206.122.158.4; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.24 Safari/532.0,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:8693 Date: 2009-10-13T02:39:49-07:00 List-Id: On 13 Okt., 11:11, Mark Lorenzen wrote: > Please note that the "bit-wise or" operation in the following line has > no effect: > =A0 =A0 =A0Byte_Acc :=3D Shift_Left (Byte_Acc, 1) or 16#00# > > When shifting left, you are guaranteed that zeroes are shifted in. Well "or 0" has no effect anyway (shift or not shift). If you wanted to filter something, you would write "and 16#FFFFFF00# :-) Gautier