HomeSort by: relevance | last modified time | path
    Searched refs:USItype (Results 1 - 25 of 143) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/gcc/dist/libgcc/config/iq2000/
lib2funcs.c 24 typedef unsigned int USItype __attribute__ ((mode (SI)));
26 USItype
27 __mulsi3 (USItype a, USItype b)
29 USItype c = 0;
  /src/external/gpl3/gcc.old/dist/libgcc/config/iq2000/
lib2funcs.c 24 typedef unsigned int USItype __attribute__ ((mode (SI)));
26 USItype
27 __mulsi3 (USItype a, USItype b)
29 USItype c = 0;
  /src/external/gpl3/gcc/dist/libgcc/config/lm32/
libgcc_lm32.h 32 typedef unsigned long USItype __attribute__ ((mode (SI)));
36 USItype __mulsi3 (USItype a, USItype b);
37 USItype __udivmodsi4 (USItype num, USItype den, int modwanted);
40 USItype __udivsi3 (USItype a, USItype b)
    [all...]
_mulsi3.c 29 USItype
30 __mulsi3 (USItype a, USItype b)
32 USItype result;
_udivmodsi4.c 29 USItype
30 __udivmodsi4 (USItype num, USItype den, int modwanted)
32 USItype bit = 1;
33 USItype res = 0;
  /src/external/gpl3/gcc.old/dist/libgcc/config/lm32/
libgcc_lm32.h 32 typedef unsigned long USItype __attribute__ ((mode (SI)));
36 USItype __mulsi3 (USItype a, USItype b);
37 USItype __udivmodsi4 (USItype num, USItype den, int modwanted);
40 USItype __udivsi3 (USItype a, USItype b)
    [all...]
_mulsi3.c 29 USItype
30 __mulsi3 (USItype a, USItype b)
32 USItype result;
_udivmodsi4.c 29 USItype
30 __udivmodsi4 (USItype num, USItype den, int modwanted)
32 USItype bit = 1;
33 USItype res = 0;
  /src/external/gpl3/gcc/dist/libgcc/config/i386/32/
sfp-machine.h 11 : "=r" ((USItype) (r3)), \
12 "=&r" ((USItype) (r2)), \
13 "=&r" ((USItype) (r1)), \
14 "=&r" ((USItype) (r0)) \
15 : "%0" ((USItype) (x3)), \
16 "g" ((USItype) (y3)), \
17 "%1" ((USItype) (x2)), \
18 "g" ((USItype) (y2)), \
19 "%2" ((USItype) (x1)), \
20 "g" ((USItype) (y1)),
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/32/
sfp-machine.h 11 : "=r" ((USItype) (r3)), \
12 "=&r" ((USItype) (r2)), \
13 "=&r" ((USItype) (r1)), \
14 "=&r" ((USItype) (r0)) \
15 : "%0" ((USItype) (x3)), \
16 "g" ((USItype) (y3)), \
17 "%1" ((USItype) (x2)), \
18 "g" ((USItype) (y2)), \
19 "%2" ((USItype) (x1)), \
20 "g" ((USItype) (y1)),
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
floatunsidf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsidf (USItype u)
12 r += (DFtype)2.0 * (DFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
floatunsitf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsitf (USItype u)
12 r += (TFtype)2.0 * (TFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
floatunsixf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsixf (USItype u)
12 r += (XFtype)2.0 * (XFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
  /src/external/gpl3/gcc.old/dist/libgcc/
floatunsidf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsidf (USItype u)
12 r += (DFtype)2.0 * (DFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
floatunsitf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsitf (USItype u)
12 r += (TFtype)2.0 * (TFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
floatunsixf.c 3 typedef unsigned int USItype __attribute__ ((mode (SI)));
7 __floatunsixf (USItype u)
12 r += (XFtype)2.0 * (XFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
  /src/external/gpl3/gcc/dist/libgcc/config/msp430/
lib2mul.c 39 typedef unsigned int USItype __attribute__ ((mode (SI)));
60 USItype __x0, __x1, __x2, __x3;
61 USItype __ul, __vl, __uh, __vh;
62 __ul = ((USItype) (uu.s.low) & (((USItype) 1 << ((4 * 8) / 2)) - 1));
63 __uh = ((USItype) (uu.s.low) >> ((4 * 8) / 2));
64 __vl = ((USItype) (vv.s.low) & (((USItype) 1 << ((4 * 8) / 2)) - 1));
65 __vh = ((USItype) (vv.s.low) >> ((4 * 8) / 2));
66 __x0 = (USItype) __ul * __vl
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/msp430/
lib2mul.c 39 typedef unsigned int USItype __attribute__ ((mode (SI)));
60 USItype __x0, __x1, __x2, __x3;
61 USItype __ul, __vl, __uh, __vh;
62 __ul = ((USItype) (uu.s.low) & (((USItype) 1 << ((4 * 8) / 2)) - 1));
63 __uh = ((USItype) (uu.s.low) >> ((4 * 8) / 2));
64 __vl = ((USItype) (vv.s.low) & (((USItype) 1 << ((4 * 8) / 2)) - 1));
65 __vh = ((USItype) (vv.s.low) >> ((4 * 8) / 2));
66 __x0 = (USItype) __ul * __vl
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
_dd_to_usi.c 28 USItype
30 USItype res = 0xbaddbadd;
_td_to_usi.c 28 USItype
30 USItype res = 0xbaddbadd;
  /src/external/gpl3/gcc/dist/libgcc/soft-fp/
fixunsdfsi.c 32 USItype
37 USItype r;
fixunshfsi.c 32 USItype
37 USItype r;
fixunssfsi.c 32 USItype
37 USItype r;
fixunstfsi.c 32 USItype
37 USItype r;
floatunsidf.c 34 __floatunsidf (USItype i)
39 FP_FROM_INT_D (A, i, SI_BITS, USItype);

Completed in 31 milliseconds

1 2 3 4 5 6