Searched refs:USItype (Results 1 - 25 of 33) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/math-emu/
H A Dsfp-util.h9 : "=r" ((USItype)(sh)), \
10 "=&r" ((USItype)(sl)) \
11 : "%rJ" ((USItype)(ah)), \
12 "rI" ((USItype)(bh)), \
13 "%rJ" ((USItype)(al)), \
14 "rI" ((USItype)(bl)) \
19 : "=r" ((USItype)(sh)), \
20 "=&r" ((USItype)(sl)) \
21 : "rJ" ((USItype)(ah)), \
22 "rI" ((USItype)(b
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Ducmpdi2.c41 if ((USItype) au.s.high < (USItype) bu.s.high)
43 else if ((USItype) au.s.high > (USItype) bu.s.high)
45 if ((USItype) au.s.low < (USItype) bu.s.low)
47 else if ((USItype) au.s.low > (USItype) bu.s.low)
H A Dlonglong.h29 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
30 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
35 multiplies two USItype integers MULTIPLER and MULTIPLICAND,
36 and generates a two-part USItype product in HIGH_PROD and
39 2) __umulsidi3(a,b) multiplies two USItype integers A and B,
80 : "=r" ((USItype) (sh)), \
81 "=&r" ((USItype) (sl)) \
82 : "%r" ((USItype) (ah)), \
83 "rI" ((USItype) (bh)), \
84 "%r" ((USItype) (a
[all...]
H A Dmuldi3.c35 {register USItype __t0, __t1, __t2; \
49 : "=&r" ((USItype) (xh)), \
50 "=r" ((USItype) (xl)), \
52 : "r" ((USItype) (a)), \
53 "r" ((USItype) (b)));}
72 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
73 + (USItype) uu.s.high * (USItype) vv.s.low);
H A Dashldi3.c50 w.s.high = (USItype)uu.s.low << -bm;
54 USItype carries = (USItype)uu.s.low >> bm;
55 w.s.low = (USItype)uu.s.low << b;
56 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c50 w.s.low = (USItype)uu.s.high >> -bm;
54 USItype carries = (USItype)uu.s.high << bm;
55 w.s.high = (USItype)uu.s.high >> b;
56 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashrdi3.c55 USItype carries = (USItype)uu.s.high << bm;
57 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dlonglong.h29 SItype, USItype -- Signed and unsigned 32 bit types.
32 On a 32 bit machine UWtype should typically be USItype;
120 : "=r" ((USItype)(sh)), \
121 "=&r" ((USItype)(sl)) \
122 : "%r" ((USItype)(ah)), \
123 "rI" ((USItype)(bh)), \
124 "%r" ((USItype)(al)), \
125 "rI" ((USItype)(bl)))
129 : "=r" ((USItype)(sh)), \
130 "=&r" ((USItype)(s
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dsfp-machine.h82 : "=r" ((USItype)(r2)), \
83 "=&r" ((USItype)(r1)), \
84 "=&r" ((USItype)(r0)) \
85 : "%rJ" ((USItype)(x2)), \
86 "rI" ((USItype)(y2)), \
87 "%rJ" ((USItype)(x1)), \
88 "rI" ((USItype)(y1)), \
89 "%rJ" ((USItype)(x0)), \
90 "rI" ((USItype)(y0)) \
97 : "=r" ((USItype)(r
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/lib/
H A Dmuldi3.c27 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
28 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
32 USItype __x0, __x1, __x2, __x3; \
33 USItype __ul, __vl, __uh, __vh; \
40 __x0 = (USItype) __ul * __vl; \
41 __x1 = (USItype) __ul * __vh; \
42 __x2 = (USItype) __uh * __vl; \
43 __x3 = (USItype) __uh * __vh; \
60 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
82 w.s.high += ((USItype) u
[all...]
H A Dashldi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/v850/lib/
H A Dmuldi3.c24 : "=r" ((USItype)(w0)), \
25 "=r" ((USItype)(w1)) \
26 : "%0" ((USItype)(u)), \
27 "r" ((USItype)(v)))
35 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
57 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
58 + (USItype) uu.s.high * (USItype) vv.s.low);
H A Dashldi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
57 USItype carries = (USItype)uu.s.high << bm;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/lib/
H A Dmuldi3.c26 : "=d" ((USItype)(w0)), \
27 "=d" ((USItype)(w1)) \
28 : "%0" ((USItype)(u)), \
29 "dmi" ((USItype)(v)))
37 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
59 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
60 + (USItype) uu.s.high * (USItype) vv.s.low);
H A Dashldi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
57 USItype carries = (USItype)uu.s.high << bm;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/math-emu/
H A Dsfp-machine.h220 : "=r" ((USItype)(sh)), \
221 "=&r" ((USItype)(sl)) \
222 : "%r" ((USItype)(ah)), \
223 "%r" ((USItype)(al)), \
224 "rI" ((USItype)(bl))); \
225 else if (__builtin_constant_p (bh) && (bh) ==~(USItype) 0) \
227 : "=r" ((USItype)(sh)), \
228 "=&r" ((USItype)(sl)) \
229 : "%r" ((USItype)(ah)), \
230 "%r" ((USItype)(a
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/lib/
H A Dashldi3.c50 w.s.high = (USItype) uu.s.low << -bm;
52 USItype carries = (USItype) uu.s.low >> bm;
53 w.s.low = (USItype) uu.s.low << b;
54 w.s.high = ((USItype) uu.s.high << b) | carries;
H A Dlshrdi3.c33 typedef unsigned int USItype __attribute__ ((mode(SI))); typedef
64 w.s.low = (USItype) uu.s.high >> -bm;
66 USItype carries = (USItype) uu.s.high << bm;
67 w.s.high = (USItype) uu.s.high >> b;
68 w.s.low = ((USItype) uu.s.low >> b) | carries;
H A Dashrdi3.c53 USItype carries = (USItype) uu.s.high << bm;
55 w.s.low = ((USItype) uu.s.low >> b) | carries;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/lib/
H A Dashrdi3.c24 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
57 USItype carries = (USItype)uu.s.high << bm;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;

Completed in 200 milliseconds

12