source: trunk/j/src/org/armedbear/lisp/ldb.lisp @ 3723

Last change on this file since 3723 was 3723, checked in by piso, 20 years ago

DPB

File size: 1.4 KB
Line 
1;;; ldb.lisp
2;;;
3;;; Copyright (C) 2003 Peter Graves
4;;; $Id: ldb.lisp,v 1.2 2003-09-12 14:16:44 piso Exp $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20(defun byte (size position)
21  (cons size position))
22
23(defun byte-size (bytespec)
24  (car bytespec))
25
26(defun byte-position (bytespec)
27  (cdr bytespec))
28
29(defun ldb (bytespec integer)
30  (logand (ash integer (- (byte-position bytespec)))
31          (1- (ash 1 (byte-size bytespec)))))
32
33(defun ldb-test (bytespec integer)
34  (not (zerop (ldb bytespec integer))))
35
36(defun dpb (newbyte bytespec integer)
37  (let* ((size (byte-size bytespec))
38         (position (byte-position bytespec))
39         (mask (1- (ash 1 size))))
40    (logior (logand integer (lognot (ash mask position)))
41      (ash (logand newbyte mask) position))))
Note: See TracBrowser for help on using the repository browser.