Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
7f09896b
Commit
7f09896b
authored
31 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Add some float subprimitives.
parent
6f341359
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/kernel.lisp
+9
-3
9 additions, 3 deletions
code/kernel.lisp
with
9 additions
and
3 deletions
code/kernel.lisp
+
9
−
3
View file @
7f09896b
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
9
199
2/12/13 16:04:30 wlott
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
10
199
3/08/21 08:16:06 ram
Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
9
199
2/12/13 16:04:30 wlott
Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
10
199
3/08/21 08:16:06 ram
Exp $
;;;
;;;
(
in-package
"KERNEL"
)
(
in-package
"KERNEL"
)
...
@@ -93,7 +93,7 @@
...
@@ -93,7 +93,7 @@
"Return the SXHASH for the simple-string STRING."
"Return the SXHASH for the simple-string STRING."
(
%sxhash-simple-string
string
))
(
%sxhash-simple-string
string
))
(
defun
%sxhash-simple-substr
ub
g
(
string
length
)
(
defun
%sxhash-simple-substr
in
g
(
string
length
)
"Return the SXHASH for the first LENGTH characters of the simple-string
"Return the SXHASH for the first LENGTH characters of the simple-string
STRING."
STRING."
(
%sxhash-simple-substring
string
length
))
(
%sxhash-simple-substring
string
length
))
...
@@ -138,3 +138,9 @@
...
@@ -138,3 +138,9 @@
(
setf
(
kernel:%raw-bits
object
offset
)
value
))
(
setf
(
kernel:%raw-bits
object
offset
)
value
))
(
defsetf
%raw-bits
%set-raw-bits
)
(
defsetf
%raw-bits
%set-raw-bits
)
(
defun
make-single-float
(
x
)
(
make-single-float
x
))
(
defun
make-double-float
(
hi
lo
)
(
make-double-float
hi
lo
))
(
defun
single-float-bits
(
x
)
(
single-float-bits
x
))
(
defun
double-float-high-bits
(
x
)
(
double-float-high-bits
x
))
(
defun
double-float-low-bits
(
x
)
(
double-float-low-bits
x
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment