/external/compiler-rt/lib/ |
udivdi3.c | 17 du_int COMPILER_RT_ABI __udivmoddi4(du_int a, du_int b, du_int* rem); 24 return __udivmoddi4(a, b, 0);
|
umoddi3.c | 17 du_int COMPILER_RT_ABI __udivmoddi4(du_int a, du_int b, du_int* rem); 25 __udivmoddi4(a, b, &r);
|
divdi3.c | 17 du_int COMPILER_RT_ABI __udivmoddi4(du_int a, du_int b, du_int* rem); 30 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
|
moddi3.c | 17 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem); 30 __udivmoddi4(a, b, (du_int*)&r);
|
apple_versioning.c | 131 NOT_HERE_BEFORE_10_6(__udivmoddi4) 270 NOT_HERE_UNTIL_AFTER_4_3(__udivmoddi4)
|
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
|
/frameworks/compile/libbcc/runtime/lib/ |
udivdi3.c | 17 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); 24 return __udivmoddi4(a, b, 0);
|
umoddi3.c | 17 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); 25 __udivmoddi4(a, b, &r);
|
divdi3.c | 17 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); 30 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
|
moddi3.c | 17 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); 30 __udivmoddi4(a, b, (du_int*)&r);
|
apple_versioning.c | 131 NOT_HERE_BEFORE_10_6(__udivmoddi4)
|
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
|
/external/compiler-rt/lib/arm/ |
aeabi_uldivmod.S | 15 // quot = __udivmoddi4(numerator, denominator, &rem); 26 bl SYMBOL_NAME(__udivmoddi4)
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
RuntimeStub.h | 80 extern du_int __udivmoddi4(du_int, du_int, du_int *);
|
Runtime.def | 241 DEF_LLVM_RUNTIME(__udivmoddi4)
|
/external/clang/utils/OptionalTests/Extra/Runtime/ |
darwin-clang_rt.c | 142 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); // a / b, *rem = a % b 263 assert(__udivmoddi4(5,2,&du_tmp) == 2 && du_tmp == 1);
|
/external/compiler-rt/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...] |
/frameworks/compile/libbcc/runtime/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...] |