OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__udivmodsi4
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/builtins/
udivmodsi4.c
1
/*===-- udivmodsi4.c - Implement
__udivmodsi4
------------------------------===
10
* This file implements
__udivmodsi4
for the compiler_rt library.
20
__udivmodsi4
(su_int a, su_int b, su_int* rem)
function
int_lib.h
69
COMPILER_RT_ABI su_int
__udivmodsi4
(su_int a, su_int b, su_int* rem);
apple_versioning.c
339
NOT_HERE_UNTIL_AFTER_4_3(
__udivmodsi4
)
/external/compiler-rt/lib/builtins/arm/
aeabi_uidivmod.S
15
// quot =
__udivmodsi4
(numerator, denominator, &rem);
25
bl SYMBOL_NAME(
__udivmodsi4
)
divmodsi4.S
56
bl SYMBOL_NAME(
__udivmodsi4
)
udivmodsi4.S
10
* This file implements the
__udivmodsi4
(32-bit unsigned integer divide and
21
DEFINE_COMPILERRT_FUNCTION(
__udivmodsi4
)
161
END_COMPILERRT_FUNCTION(
__udivmodsi4
)
/external/compiler-rt/test/builtins/Unit/
udivmodsi4_test.c
1
//===-- udivmodsi4_test.c - Test
__udivmodsi4
-----------------------------===//
10
// This file tests
__udivmodsi4
for the compiler_rt library.
19
extern su_int
__udivmodsi4
(su_int a, su_int b, su_int* rem);
25
su_int result =
__udivmodsi4
(a, b, &rem);
27
printf("error in
__udivmodsi4
: %u / %u = %u, expected %u\n",
32
printf("error in
__udivmodsi4
: %u mod %u = %u, expected %u\n",
Completed in 286 milliseconds