Hash :
930f20d2
Author :
Thomas de Grivel
Date :
2024-03-07T09:01:08
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 114 115 116 117 118 119 120 121 122 123 124 125
/* c3
* Copyright 2022-2024 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=64 bits=64 */
#include "assert.h"
#include <math.h>
#include <stdlib.h>
#include "f128.h"
#include "integer.h"
#include "ratio.h"
#include "tag.h"
#include "u64.h"
u64 * u64_init_cast (u64 *u, const s_tag *tag)
{
switch (tag->type) {
case TAG_BOOL:
*u = tag->data.bool ? 1 : 0;
return u;
case TAG_CHARACTER:
*u = (u64) tag->data.character;
return u;
case TAG_F32:
*u = (u64) tag->data.f32;
return u;
case TAG_F64:
*u = (u64) tag->data.f64;
return u;
case TAG_INTEGER:
*u = integer_to_u64(&tag->data.integer);
return u;
case TAG_RATIO:
*u = ratio_to_u64(&tag->data.ratio);
return u;
case TAG_SW:
*u = (u64) tag->data.sw;
return u;
case TAG_S64:
*u = (u64) tag->data.s64;
return u;
case TAG_S32:
*u = (u64) tag->data.s32;
return u;
case TAG_S16:
*u = (u64) tag->data.s16;
return u;
case TAG_S8:
*u = (u64) tag->data.s8;
return u;
case TAG_U8:
*u = (u64) tag->data.u8;
return u;
case TAG_U16:
*u = (u64) tag->data.u16;
return u;
case TAG_U32:
*u = (u64) tag->data.u32;
return u;
case TAG_U64:
*u = (u64) tag->data.u64;
return u;
case TAG_UW:
*u = (u64) tag->data.uw;
return u;
default:
break;
}
err_write_1("u64_cast: cannot cast ");
err_write_1(tag_type_to_string(tag->type));
err_puts(" to u64");
assert(! "u64_cast: cannot cast to u64");
return NULL;
}
u64 * u64_init_copy (u64 *u, const u64 *src)
{
assert(src);
assert(u);
*u = *src;
return u;
}
u64 * u64_random (u64 *u)
{
arc4random_buf(u, sizeof(u64));
return u;
}
#if 64 == 64 || 64 == w
u64 * u64_random_uniform (u64 *u, u64 max)
{
f128 x;
f128_random(&x);
x *= max;
*u = (u64) x;
return u;
}
#else
u64 * u64_random_uniform (u64 *u, u64 max)
{
*u = arc4random_uniform(max);
return u;
}
#endif
s_tag * u64_sqrt (const u64 x, s_tag *dest)
{
assert(dest);
dest->type = TAG_F128;
dest->data.f128 = sqrtl((long double) x);
return dest;
}