OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__divmodsi4
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/builtins/
divmodsi4.c
1
/*===-- divmodsi4.c - Implement
__divmodsi4
--------------------------------===
10
* This file implements
__divmodsi4
for the compiler_rt library.
20
__divmodsi4
(si_int a, si_int b, si_int* rem)
function
apple_versioning.c
338
NOT_HERE_UNTIL_AFTER_4_3(
__divmodsi4
)
/external/compiler-rt/lib/builtins/arm/
aeabi_idivmod.S
14
// quot =
__divmodsi4
(numerator, denominator, &rem);
24
bl SYMBOL_NAME(
__divmodsi4
)
divmodsi4.S
10
* This file implements the
__divmodsi4
(32-bit signed integer divide and
30
@ int
__divmodsi4
(int divident, int divisor, int *remainder)
36
DEFINE_COMPILERRT_THUMB_FUNCTION(
__divmodsi4
)
38
DEFINE_COMPILERRT_FUNCTION(
__divmodsi4
)
74
END_COMPILERRT_FUNCTION(
__divmodsi4
)
/external/compiler-rt/test/builtins/Unit/
divmodsi4_test.c
1
//===-- divmodsi4_test.c - Test
__divmodsi4
-------------------------------===//
10
// This file tests
__divmodsi4
for the compiler_rt library.
19
extern COMPILER_RT_ABI si_int
__divmodsi4
(si_int a, si_int b, si_int* rem);
26
si_int result =
__divmodsi4
(a, b, &rem);
28
printf("error in
__divmodsi4
: %d / %d = %d, expected %d\n",
33
printf("error in
__divmodsi4
: %d mod %d = %d, expected %d\n",
Completed in 169 milliseconds