Hash :
4ba3e8da
Author :
Thomas de Grivel
Date :
2023-12-18T16:51:40
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
/* Gen from u.h.in BITS=_BITS$ bits=_bits$ */
#include "assert.h"
#include <err.h>
#include <math.h>
#include <stdlib.h>
#include "integer.h"
#include "tag.h"
#include "u_bits$.h"
u_bits$ * u_bits$_init_cast (u_bits$ *u, const s_tag *tag)
{
switch (tag->type) {
case TAG_BOOL:
*u = tag->data.bool ? 1 : 0;
return u;
case TAG_CHARACTER:
*u = (u_bits$) tag->data.character;
return u;
case TAG_F32:
*u = (u_bits$) tag->data.f32;
return u;
case TAG_F64:
*u = (u_bits$) tag->data.f64;
return u;
case TAG_INTEGER:
*u = integer_to_u_bits$(&tag->data.integer);
return u;
case TAG_SW:
*u = (u_bits$) tag->data.sw;
return u;
case TAG_S64:
*u = (u_bits$) tag->data.s64;
return u;
case TAG_S32:
*u = (u_bits$) tag->data.s32;
return u;
case TAG_S16:
*u = (u_bits$) tag->data.s16;
return u;
case TAG_S8:
*u = (u_bits$) tag->data.s8;
return u;
case TAG_U8:
*u = (u_bits$) tag->data.u8;
return u;
case TAG_U16:
*u = (u_bits$) tag->data.u16;
return u;
case TAG_U32:
*u = (u_bits$) tag->data.u32;
return u;
case TAG_U64:
*u = (u_bits$) tag->data.u64;
return u;
case TAG_UW:
*u = (u_bits$) tag->data.uw;
return u;
default:
break;
}
warnx("u_bits$_cast: cannot cast %s to u_bits$",
tag_type_to_string(tag->type));
assert(! "u_bits$_cast: cannot cast to u_bits$");
return NULL;
}
u_bits$ * u_bits$_init_copy (u_bits$ *u, const u_bits$ *src)
{
assert(src);
assert(u);
*u = *src;
return u;
}
u_bits$ * u_bits$_random (u_bits$ *u)
{
arc4random_buf(u, sizeof(u_bits$));
return u;
}
#if _bits$ > 32
u_bits$ * u_bits$_random_uniform (u_bits$ *u, u_bits$ max)
{
// TODO
(void) u;
(void) max;
err_puts("u_bits$_random_uniform: not implemented");
assert(! "u_bits$_random_uniform: not implemented");
return NULL;
}
#else
u_bits$ * u_bits$_random_uniform (u_bits$ *u, u_bits$ max)
{
*u = arc4random_uniform(max);
return u;
}
#endif