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

/barrelfish-master/lib/compiler-rt/builtins/
H A Dudivdi3.c18 return __udivmoddi4(a, b, 0);
H A Dumoddi3.c19 __udivmoddi4(a, b, &r);
H A Dmoddi3.c24 __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 Dint_lib.h95 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
/barrelfish-master/lib/compiler-rt/builtins/arm/
H A Daeabi_uldivmod.S14 // quot = __udivmoddi4(numerator, denominator, &rem);
37 bl SYMBOL_NAME(__udivmoddi4)
/barrelfish-master/lib/compiler-rt/test/
H A Dudivmoddi4_test.c2 //===-- udivmoddi4_test.c - Test __udivmoddi4 -----------------------------===//
10 // This file tests __udivmoddi4 for the compiler_rt library.
20 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
25 du_int q = __udivmoddi4(a, b, &r);
27 printf("error in __udivmoddi4: %llX / %llX = %llX, R = %llX, expected %llX, %llX\n",
[all...]

Completed in 169 milliseconds