HomeSort by: relevance | last modified time | path
    Searched refs:__divmodsi4 (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/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 in typeref:typename:COMPILER_RT_ABI si_int
  /src/sys/external/bsd/compiler_rt/dist/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
29 @ int __divmodsi4(int divident, int divisor, int *remainder)
35 DEFINE_COMPILERRT_THUMB_FUNCTION(__divmodsi4)
37 DEFINE_COMPILERRT_FUNCTION(__divmodsi4)
73 END_COMPILERRT_FUNCTION(__divmodsi4)
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
divmodsi4_test.c 1 //===-- divmodsi4_test.c - Test __divmodsi4 -------------------------------===//
10 // This file tests __divmodsi4 for the compiler_rt library.
19 extern 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",
  /src/sys/external/bsd/compiler_rt/dist/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 14 milliseconds