OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tu_int
(Results
1 - 25
of
48
) sorted by relevancy
1
2
/src/sys/external/bsd/compiler_rt/dist/test/Unit/
udivmodti4_test.c
22
tu_int
__udivmodti4(
tu_int
a,
tu_int
b,
tu_int
* rem);
24
int test__udivmodti4(
tu_int
a,
tu_int
b,
tu_int
expected_q,
tu_int
expected_r)
26
tu_int
r;
27
tu_int
q = __udivmodti4(a, b, &r)
[
all
...]
udivti3_test.c
21
tu_int
__udivti3(
tu_int
a,
tu_int
b);
23
int test__udivti3(
tu_int
a,
tu_int
b,
tu_int
expected_q)
25
tu_int
q = __udivti3(a, b);
umodti3_test.c
21
tu_int
__umodti3(
tu_int
a,
tu_int
b);
23
int test__umodti3(
tu_int
a,
tu_int
b,
tu_int
expected_r)
25
tu_int
r = __umodti3(a, b);
/src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
udivmodti4_test.c
22
COMPILER_RT_ABI
tu_int
__udivmodti4(
tu_int
a,
tu_int
b,
tu_int
* rem);
24
int test__udivmodti4(
tu_int
a,
tu_int
b,
tu_int
expected_q,
tu_int
expected_r)
26
tu_int
r;
27
tu_int
q = __udivmodti4(a, b, &r)
[
all
...]
udivti3_test.c
21
COMPILER_RT_ABI
tu_int
__udivti3(
tu_int
a,
tu_int
b);
23
int test__udivti3(
tu_int
a,
tu_int
b,
tu_int
expected_q)
25
tu_int
q = __udivti3(a, b);
umodti3_test.c
21
COMPILER_RT_ABI
tu_int
__umodti3(
tu_int
a,
tu_int
b);
23
int test__umodti3(
tu_int
a,
tu_int
b,
tu_int
expected_r)
25
tu_int
r = __umodti3(a, b);
fixunstfti_test.c
25
//
tu_int
is a 128 bit integral type
26
// value in long double is representable in
tu_int
or is negative
29
COMPILER_RT_ABI
tu_int
__fixunstfti(long double a);
31
int test__fixunstfti(long double a,
tu_int
expected)
33
tu_int
x = __fixunstfti(a);
49
char assumption_1[sizeof(
tu_int
) == 4*sizeof(su_int)] = {0};
50
char assumption_2[sizeof(
tu_int
)*CHAR_BIT == 128] = {0};
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
udivti3.c
21
COMPILER_RT_ABI
tu_int
22
__udivti3(
tu_int
a,
tu_int
b)
umodti3.c
21
COMPILER_RT_ABI
tu_int
22
__umodti3(
tu_int
a,
tu_int
b)
24
tu_int
r;
fixunsdfti.c
16
typedef
tu_int
fixuint_t;
19
COMPILER_RT_ABI
tu_int
fixunssfti.c
19
typedef
tu_int
fixuint_t;
22
COMPILER_RT_ABI
tu_int
fixunstfti.c
15
typedef
tu_int
fixuint_t;
18
COMPILER_RT_ABI
tu_int
popcountti2.c
24
tu_int
x3 = (
tu_int
)a;
25
x3 = x3 - ((x3 >> 1) & (((
tu_int
)0x5555555555555555uLL << 64) |
28
x3 = ((x3 >> 2) & (((
tu_int
)0x3333333333333333uLL << 64) | 0x3333333333333333uLL))
29
+ (x3 & (((
tu_int
)0x3333333333333333uLL << 64) | 0x3333333333333333uLL));
32
& (((
tu_int
)0x0F0F0F0F0F0F0F0FuLL << 64) | 0x0F0F0F0F0F0F0F0FuLL);
fixunsxfti.c
24
*
tu_int
is a 128 bit integral type
25
* value in long double is representable in
tu_int
or is negative
32
COMPILER_RT_ABI
tu_int
40
if ((unsigned)e > sizeof(
tu_int
) * CHAR_BIT)
41
return ~(
tu_int
)0;
42
tu_int
r = fb.u.low.all;
fixdfti.c
18
typedef
tu_int
fixuint_t;
fixsfti.c
18
typedef
tu_int
fixuint_t;
fixtfti.c
16
typedef
tu_int
fixuint_t;
floatuntisf.c
22
*
tu_int
is a 128 bit integral type
28
__floatuntisf(
tu_int
a)
32
const unsigned N = sizeof(
tu_int
) * CHAR_BIT;
54
((a & ((
tu_int
)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
61
if (a & ((
tu_int
)1 << FLT_MANT_DIG))
addvti3.c
26
ti_int s = (
tu_int
) a + (
tu_int
) b;
subvti3.c
26
ti_int s = (
tu_int
) a - (
tu_int
) b;
floatuntidf.c
22
*
tu_int
is a 128 bit integral type
28
__floatuntidf(
tu_int
a)
32
const unsigned N = sizeof(
tu_int
) * CHAR_BIT;
54
((a & ((
tu_int
)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
61
if (a & ((
tu_int
)1 << DBL_MANT_DIG))
floatuntixf.c
22
*
tu_int
is a 128 bit integral type
30
__floatuntixf(
tu_int
a)
34
const unsigned N = sizeof(
tu_int
) * CHAR_BIT;
56
((a & ((
tu_int
)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
63
if (a & ((
tu_int
)1 << LDBL_MANT_DIG))
floattidf.c
55
a = ((
tu_int
)a >> (sd - (DBL_MANT_DIG+2))) |
56
((a & ((
tu_int
)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
63
if (a & ((
tu_int
)1 << DBL_MANT_DIG))
floattisf.c
55
a = ((
tu_int
)a >> (sd - (FLT_MANT_DIG+2))) |
56
((a & ((
tu_int
)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
63
if (a & ((
tu_int
)1 << FLT_MANT_DIG))
floattixf.c
57
a = ((
tu_int
)a >> (sd - (LDBL_MANT_DIG+2))) |
58
((a & ((
tu_int
)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
65
if (a & ((
tu_int
)1 << LDBL_MANT_DIG))
Completed in 22 milliseconds
1
2
Indexes created Thu Oct 02 14:10:14 GMT 2025