HomeSort by relevance Sort by last modified time
    Searched defs:div_s64_rem (Results 1 - 2 of 2) sorted by null

  /external/u-boot/lib/
div64.c 63 #ifndef div_s64_rem
64 s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder) function
80 EXPORT_SYMBOL(div_s64_rem); variable
  /external/u-boot/include/linux/
math64.h 26 * div_s64_rem - signed 64bit divide with 32bit divisor with remainder
28 static inline s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder) function
72 #ifndef div_s64_rem
73 extern s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder);
112 return div_s64_rem(dividend, divisor, &remainder);

Completed in 3028 milliseconds