From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22016 invoked by alias); 23 Aug 2007 21:33:03 -0000 Received: (qmail 21935 invoked by uid 22791); 23 Aug 2007 21:33:02 -0000 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 23 Aug 2007 21:32:58 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l7NLWuB9002520 for ; Thu, 23 Aug 2007 17:32:56 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l7NLWu1q014318 for ; Thu, 23 Aug 2007 17:32:56 -0400 Received: from [172.16.57.153] (multics.rdu.redhat.com [172.16.57.153]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l7NLWumg015595 for ; Thu, 23 Aug 2007 17:32:56 -0400 Subject: Value/Location From: Stan Cox To: Frysk List Content-Type: text/plain Date: Thu, 23 Aug 2007 21:33:00 -0000 Message-Id: <1187904534.968.63.camel@multics.rdu.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 (2.10.3-2.fc7) Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q3/txt/msg00334.txt.bz2 The frysk.value constructor (Type type, String textFIXME) ->calls (new Location(type.getSize()) ->calls new ArrayByteBuffer(capacity) which will assume a big endian buffer One possibility is to have Value do: abb = new ArrayByteBuffer (..); abb.order(type.endian); Location(abb)