HomeSort by relevance Sort by last modified time
    Searched refs:__udivmodti4 (Results 1 - 7 of 7) sorted by null

  /external/compiler-rt/lib/
udivti3.c 19 tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
26 return __udivmodti4(a, b, 0);
umodti3.c 19 tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
27 __udivmodti4(a, b, &r);
divti3.c 19 tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
32 return (__udivmodti4(a, b, (tu_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
modti3.c 19 tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
32 __udivmodti4(a, b, (tu_int*)&r);
udivmodti4.c 1 /* ===-- udivmodti4.c - Implement __udivmodti4 -----------------------------===
10 * This file implements __udivmodti4 for the compiler_rt library.
26 __udivmodti4(tu_int a, tu_int b, tu_int* rem) function
apple_versioning.c 132 NOT_HERE_BEFORE_10_6(__udivmodti4)
  /external/compiler-rt/test/Unit/
udivmodti4_test.c 1 //===-- udivmodti4_test.c - Test __udivmodti4 -----------------------------===//
10 // This file tests __udivmodti4 for the compiler_rt library.
22 tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
27 tu_int q = __udivmodti4(a, b, &r);
42 printf("error in __udivmodti4: 0x%.16llX%.16llX / 0x%.16llX%.16llX = "
    [all...]

Completed in 229 milliseconds