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

  /external/u-boot/arch/microblaze/lib/
muldi3.c 16 #if !defined(umul_ppmm)
17 #define umul_ppmm(w1, w0, u, v) \ macro
45 umul_ppmm(__w.s.high, __w.s.low, u, v); \
  /external/u-boot/arch/m68k/lib/
muldi3.c 15 #define umul_ppmm(w1, w0, u, v) \ macro
41 umul_ppmm (__w.s.high, __w.s.low, u, v); \
  /external/u-boot/arch/nios2/lib/
longlong.h 37 1) umul_ppmm(high_prod, low_prod, multiplier, multiplicand) multiplies two
42 UDWtype product. This is just a variant of umul_ppmm.
110 /* If we lack umul_ppmm but have smul_ppmm, define umul_ppmm in terms of
112 #if !defined (umul_ppmm) && defined (smul_ppmm)
113 #define umul_ppmm(w1, w0, u, v) \ macro
123 /* If we still don't have umul_ppmm, define it using plain C. */
124 #if !defined (umul_ppmm)
125 #define umul_ppmm(w1, w0, u, v) \ macro
153 umul_ppmm (__w.s.high, __w.s.low, u, v);
    [all...]
libgcc.c 333 umul_ppmm (m1, m0, q0, d0);

Completed in 298 milliseconds