From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: view/edit large files Date: Tue, 10 Feb 2009 11:54:34 +0200 Message-ID: References: <86fxiuw6u7.fsf@lifelogs.com> <86zlgzqudo.fsf_-_@lifelogs.com> <86k583p96e.fsf@lifelogs.com> <874oz7grs0.fsf@catnip.gol.com> <864oz3nyj8.fsf@lifelogs.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1234259767 18238 80.91.229.12 (10 Feb 2009 09:56:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 10 Feb 2009 09:56:07 +0000 (UTC) Cc: tzz@lifelogs.com, monnier@iro.umontreal.ca, emacs-devel@gnu.org To: Miles Bader Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 10 10:57:21 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LWpMj-0005Gx-UF for ged-emacs-devel@m.gmane.org; Tue, 10 Feb 2009 10:57:18 +0100 Original-Received: from localhost ([127.0.0.1]:33690 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LWpLQ-0007yN-I8 for ged-emacs-devel@m.gmane.org; Tue, 10 Feb 2009 04:55:56 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LWpL1-0007pT-VP for emacs-devel@gnu.org; Tue, 10 Feb 2009 04:55:32 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LWpL0-0007oP-P2 for emacs-devel@gnu.org; Tue, 10 Feb 2009 04:55:30 -0500 Original-Received: from [199.232.76.173] (port=35646 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LWpL0-0007o3-9Z for emacs-devel@gnu.org; Tue, 10 Feb 2009 04:55:30 -0500 Original-Received: from mtaout5.012.net.il ([84.95.2.13]:11302) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LWpKx-0005Qu-CN; Tue, 10 Feb 2009 04:55:27 -0500 Original-Received: from conversion-daemon.i_mtaout5.012.net.il by i_mtaout5.012.net.il (HyperSendmail v2004.12) id <0KEU00K00GUIJP00@i_mtaout5.012.net.il>; Tue, 10 Feb 2009 11:54:54 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([77.126.128.7]) by i_mtaout5.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KEU002PHGVG96Q1@i_mtaout5.012.net.il>; Tue, 10 Feb 2009 11:54:53 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:108946 Archived-At: > From: Miles Bader > Cc: Stefan Monnier , tzz@lifelogs.com, > emacs-devel@gnu.org > Date: Tue, 10 Feb 2009 18:23:58 +0900 > > "floats" can exactly represent integers if the integer quantity fits > within the mantissa. For an IEEE double, that's 52 bits, which is > enough for many uses Right, but is it enough in this case? I don't know, it all depends on what kind of time resolution is needed. Also, time values are frequently used in arithmetic operations that could lose a few low bits. > (for an inode number, I'm not sure -- obviously > it's enough for 32-bit inode numbers, but possibly not some 64-bit > numbers Windows NTFS uses 64-bit numbers for the ``file index'' we use as the replacement for inode. > ... OTOH, neither is a cons of integers). That's why we use a cons of 3 numbers.