Home
last modified time | relevance | path

Searched refs:du_int (Results 1 – 6 of 6) sorted by relevance

/rk3399_ARM-atf/lib/compiler-rt/builtins/
H A Dint_types.h38 typedef uint64_t du_int; typedef
54 du_int all;
86 du_int low;
90 du_int low;
99 du_int low;
100 du_int high;
102 du_int high;
103 du_int low;
110 r.s.high = (du_int)h; in make_ti()
111 r.s.low = (du_int)l; in make_ti()
[all …]
H A Ddivmoddi4.c21 a = (du_int)(a ^ s_a) - s_a; // negate if s_a == -1 in __divmoddi4()
22 b = (du_int)(b ^ s_b) - s_b; // negate if s_b == -1 in __divmoddi4()
24 du_int r; in __divmoddi4()
H A Ddivdi3.c18 #define fixuint_t du_int
19 #define COMPUTE_UDIV(a, b) __udivmoddi4((a), (b), (du_int *)0)
H A Dpopcountdi2.c18 du_int x2 = (du_int)a; in __popcountdi2()
H A Dint_lib.h112 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem);
H A Dudivmoddi4.c27 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem) { in __udivmoddi4()
29 const unsigned n_udword_bits = sizeof(du_int) * CHAR_BIT; in __udivmoddi4()