| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| udivdi3.c | 22 return __udivmoddi4(a, b, 0);
|
| umoddi3.c | 23 __udivmoddi4(a, b, &r);
|
| divdi3.c | 28 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
|
| moddi3.c | 28 __udivmoddi4(a, b, &r);
|
| int_lib.h | 88 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
|
| udivmoddi4.c | 1 /* ===-- udivmoddi4.c - Implement __udivmoddi4 -----------------------------=== 10 * This file implements __udivmoddi4 for the compiler_rt library. 24 __udivmoddi4(du_int a, du_int b, du_int* rem) function
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/ |
| aeabi_uldivmod.S | 15 // quot = __udivmoddi4(numerator, denominator, &rem); 26 bl SYMBOL_NAME(__udivmoddi4)
|
| /src/external/gpl3/gcc/dist/libgcc/config/gcn/ |
| lib2-divmod-di.c | 37 __udivmoddi4 (UDItype num, UDItype den) function 79 res.ti = __udivmoddi4 (a, b); 111 u.ti = __udivmoddi4 (a, b); 119 u.ti = __udivmoddi4 (a, b);
|
| lib2-gcn.h | 121 extern UTItype __udivmoddi4 (UDItype, UDItype);
|
| /src/external/gpl3/gcc/dist/libgcc/config/arm/ |
| bpabi.S | 140 /* set up stack from for call to __udivmoddi4. At the end of the macro the 143 sp+8 \ (written by __udivmoddi4) 145 sp+0 sp+8 [rp (remainder pointer) argument for __udivmoddi4] 194 bl SYM(__udivmoddi4) __PLT__ 206 bl SYM(__udivmoddi4) __PLT__ 220 bl SYM(__udivmoddi4) __PLT__ 232 bl SYM(__udivmoddi4) __PLT__ 258 bl SYM(__udivmoddi4) __PLT__
|
| bpabi-v6m.S | 154 bl SYM(__udivmoddi4)
|
| /src/external/gpl3/gcc/dist/libgcc/config/visium/ |
| lib2funcs.c | 112 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 249 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); 272 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); 286 (void) __udivmoddi4 (u, v, &w); 296 return __udivmoddi4 (n, d, (UDWtype *) 0); 110 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/arm/ |
| bpabi.S | 140 /* set up stack from for call to __udivmoddi4. At the end of the macro the 143 sp+8 \ (written by __udivmoddi4) 145 sp+0 sp+8 [rp (remainder pointer) argument for __udivmoddi4] 194 bl SYM(__udivmoddi4) __PLT__ 206 bl SYM(__udivmoddi4) __PLT__ 220 bl SYM(__udivmoddi4) __PLT__ 232 bl SYM(__udivmoddi4) __PLT__ 258 bl SYM(__udivmoddi4) __PLT__
|
| bpabi-v6m.S | 154 bl SYM(__udivmoddi4)
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/visium/ |
| lib2funcs.c | 112 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 249 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); 272 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); 286 (void) __udivmoddi4 (u, v, &w); 296 return __udivmoddi4 (n, d, (UDWtype *) 0); 110 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function
|
| /src/external/gpl3/gcc/dist/libgcc/config/ |
| darwin-64.c | 52 uDI __udivmoddi4 (uDI x, uDI y, uDI *r); 69 uDI __udivmoddi4 (uDI x, uDI y, uDI *r) { *r = x % y; return x / y; } function
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/ |
| darwin-64.c | 52 uDI __udivmoddi4 (uDI x, uDI y, uDI *r); 69 uDI __udivmoddi4 (uDI x, uDI y, uDI *r) { *r = x % y; return x / y; } function
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| libgcc2.c | 955 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 1023 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 1253 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); 1276 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); 1301 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&r); 1318 (void) __udivmoddi4 (u, v, &w); 1328 return __udivmoddi4 (n, d, (UDWtype *) 0); 927 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function 995 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function
|
| libgcc2.h | 285 #define __udivmoddi4 __NDW(udivmod,4) macro 382 /* __udivmoddi4 is static inline when building other libgcc2 portions. */ 386 extern UDWtype __udivmoddi4 (UDWtype, UDWtype, UDWtype *);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| libgcc2.h | 298 #define __udivmoddi4 __NDW(udivmod,4) macro 395 /* __udivmoddi4 is static inline when building other libgcc2 portions. */ 399 extern UDWtype __udivmoddi4 (UDWtype, UDWtype, UDWtype *);
|
| libgcc2.c | 955 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 1023 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) 1253 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); 1276 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); 1301 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&r); 1318 (void) __udivmoddi4 (u, v, &w); 1328 return __udivmoddi4 (n, d, (UDWtype *) 0); 927 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function 995 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) function
|
| /src/external/gpl3/gcc/dist/libgcc/config/nds32/ |
| lib1asmsrc-mculib.S | 468 bal __udivmoddi4 661 ! (void) __udivmoddi4 (uu.ll, vv.ll, &w); 672 bal __udivmoddi4 852 bal __udivmoddi4 1007 .globl __udivmoddi4 1008 .type __udivmoddi4, @function 1009 __udivmoddi4: label 1439 .size __udivmoddi4, .-__udivmoddi4 1546 bal __udivmoddi4 [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/ |
| lib1asmsrc-mculib.S | 468 bal __udivmoddi4 661 ! (void) __udivmoddi4 (uu.ll, vv.ll, &w); 672 bal __udivmoddi4 852 bal __udivmoddi4 1007 .globl __udivmoddi4 1008 .type __udivmoddi4, @function 1009 __udivmoddi4: label 1439 .size __udivmoddi4, .-__udivmoddi4 1546 bal __udivmoddi4 [all...] |
| /src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
| udivmoddi4_test.c | 1 //===-- udivmoddi4_test.c - Test __udivmoddi4 -----------------------------===// 10 // This file tests __udivmoddi4 for the compiler_rt library. 20 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...] |
| /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
| udivmoddi4_test.c | 1 //===-- 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...] |