Coverage report: /home/ellis/.cache/common-lisp/sbcl-2.5.6.74-df9f98a0a-linux-x64/home/ellis/comp/core/ffi/blake3/constants.lisp-temp

KindCoveredAll%
expression06 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 (cl:in-package #:BLAKE3)
2
 (cl:eval-when (:compile-toplevel :execute)
3
   (cl:defparameter *integer-sizes* (cl:make-hash-table))
4
   (cl:setf (cl:gethash 1 *integer-sizes*) 'sb-alien:char)
5
   (cl:setf (cl:gethash 2 *integer-sizes*) 'sb-alien:short)
6
   (cl:setf (cl:gethash 8 *integer-sizes*) 'sb-alien:long-long)
7
   (cl:setf (cl:gethash 8 *integer-sizes*) 'sb-alien:long)
8
   (cl:setf (cl:gethash 4 *integer-sizes*) 'sb-alien:int)
9
 )
10
 (cl:defconstant +BLAKE3-KEY-LEN+ 32)
11
 (cl:defconstant +BLAKE3-OUT-LEN+ 32)
12
 (cl:defconstant +BLAKE3-BLOCK-LEN+ 64)
13
 (cl:defconstant +BLAKE3-CHUNK-LEN+ 1024)
14
 (cl:defconstant +BLAKE3-MAX-DEPTH+ 54)