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,9c86eb13dd395066 X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: CRC in Ada? Date: 1997/03/11 Message-ID: #1/1 X-Deja-AN: 224745986 References: <1997Mar2.220652@nova.wright.edu> <1997Mar5.083233.1@eisner> <1997Mar5.131846.1@eisner> <3324A8B9.4A18@netcom.com> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-03-11T00:00:00+00:00 List-Id: Jim Balter said <> (replying to me) Very curious, your post EXACTLY agrees with my point, which is that there is extra overhead, even in C in going character by character, and you even go so far as to say (further than I went) that there can be programs in which this effect is dominant. Well of course your claim that ONLY cat can see this effect is over-headed hyperbole, but there is a real difference, and for example, in many of the compilers I have written in C, I have found that the overall compilation time is noticably affected by the choice of reading character by character or reading blocks. A character read is going to do at least one pipe-line breaking test (or one should say potentially pipe-line breaking test), and it is not going to be free. That was my point, and you seem to completely agree, and I really don't see what algorithmic analysis has to do with the situation, since we are talking O(N) in any case, i.e. we are discussing constants, not algorithmic complexities