Author: | Daniel Keep <[email protected]> |
---|---|
Version: | 1.0 |
Licence: | http://creativecommons.org/publicdomain/zero/1.0/ |
SSFS is designed to be an as-simple-as-possible filesystem for use with the
//BASIC PIECES, 3 functions: unit, bind and the bind argument | |
//function unit(value) | |
//function bind(monad, function(value)) | |
//all three functions return a monad | |
/* The unit function is a constructor (returns a monad object) | |
* The magic is in the bind function | |
* | |
* There are AXIOMS: | |
* bind(unit(value)), f) === f(value) |
Author: | Daniel Keep <[email protected]> |
---|---|
Version: | 1.0 |
Licence: | http://creativecommons.org/publicdomain/zero/1.0/ |
SSFS is designed to be an as-simple-as-possible filesystem for use with the
KULOG_K8581 (v.1.1) | |
|| // | |
||// | |
||\\ | |
|| \\ULOG HARDWARE TECHNOLOGIES | |
"Bringing 'fun' back into functionality" | |
HIT_HMD2043 | |
__ __ | |
|| || | |
||==|| I T | |
_|| ||_ | |
Harold Innovation Technologies | |
"If it ain't a HIT, it's a piece of..." |
package computer; | |
// Referenced classes of package computer: | |
// KeyMapping | |
public class AWTKeyMapping extends KeyMapping | |
{ | |
public AWTKeyMapping() |
package computer; | |
// Referenced classes of package computer: | |
// KeyMapping | |
public class AWTKeyMapping extends KeyMapping | |
{ | |
public AWTKeyMapping() |
// float->half variants. | |
// by Fabian "ryg" Giesen. | |
// | |
// I hereby place this code in the public domain, as per the terms of the | |
// CC0 license: | |
// | |
// https://creativecommons.org/publicdomain/zero/1.0/ | |
// | |
// float_to_half_full: This is basically the ISPC stdlib code, except | |
// I preserve the sign of NaNs (any good reason not to?) |
// half->float variants. | |
// by Fabian "ryg" Giesen. | |
// | |
// I hereby place this code in the public domain. | |
// | |
// half_to_float_fast: table based | |
// tables could be done in a more compact fashion (in particular, can store tab2 in low word of tab1!) | |
// but something of a dead end since not very SIMD-friendly. pretty much abandoned at this point. | |
// | |
// half_to_float_fast2: use FP adder hardware to deal with denormals. |