Searched refs:__udivmoddi4 (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivdi3.c18 return __udivmoddi4(a, b, 0);
H A Dumoddi3.c19 __udivmoddi4(a, b, &r);
H A Ddivdi3.c24 return (__udivmoddi4(a, b, (du_int *)0) ^ s_a) - s_a; // negate if s_a == -1
H A Dmoddi3.c24 __udivmoddi4(a, b, &r);
H A Dint_lib.h124 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem);
H A Dapple_versioning.c135 NOT_HERE_BEFORE_10_6(__udivmoddi4)
322 NOT_HERE_UNTIL_AFTER_4_3(__udivmoddi4)
H A Dudivmoddi4.c1 //===-- udivmoddi4.c - Implement __udivmoddi4 -----------------------------===//
9 // This file implements __udivmoddi4 for the compiler_rt library.
27 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem) { function
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Daeabi_uldivmod.S14 // quot = __udivmoddi4(numerator, denominator, &rem);
37 bl SYMBOL_NAME(__udivmoddi4)
/freebsd-11-stable/contrib/gcc/config/
H A Ddarwin-64.c57 uDI __udivmoddi4 (uDI x, uDI y, uDI *r);
74 uDI __udivmoddi4 (uDI x, uDI y, uDI *r) { *r = x % y; return x / y; } function
/freebsd-11-stable/contrib/gcc/
H A Dlibgcc2.h269 #define __udivmoddi4 __NDW(udivmod,4) macro
319 /* __udivmoddi4 is static inline when building other libgcc2 portions. */
322 extern UDWtype __udivmoddi4 (UDWtype, UDWtype, UDWtype *);
H A Dlibgcc2.c892 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp)
1121 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0);
1144 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w);
1158 (void) __udivmoddi4 (u, v, &w);
1168 return __udivmoddi4 (n, d, (UDWtype *) 0);
868 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function

Completed in 96 milliseconds