Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/mpi/
H A Dlonglong.h31 * SItype, USItype -- Signed and unsigned 32 bit types.
34 * On a 32 bit machine UWtype should typically be USItype;
117 : "=r" ((USItype)(sh)), \
118 "=&r" ((USItype)(sl)) \
119 : "%r" ((USItype)(ah)), \
120 "rI" ((USItype)(bh)), \
121 "%r" ((USItype)(al)), \
122 "rI" ((USItype)(bl)))
126 : "=r" ((USItype)(sh)), \
127 "=&r" ((USItype)(s
[all...]
H A Dmpi-internal.h219 typedef unsigned int USItype __attribute__ ((mode(SI))); typedef
225 typedef unsigned long USItype; typedef
/kernel/linux/linux-6.6/lib/crypto/mpi/
H A Dlonglong.h31 * SItype, USItype -- Signed and unsigned 32 bit types.
34 * On a 32 bit machine UWtype should typically be USItype;
117 : "=r" ((USItype)(sh)), \
118 "=&r" ((USItype)(sl)) \
119 : "%r" ((USItype)(ah)), \
120 "rI" ((USItype)(bh)), \
121 "%r" ((USItype)(al)), \
122 "rI" ((USItype)(bl)))
126 : "=r" ((USItype)(sh)), \
127 "=&r" ((USItype)(s
[all...]
H A Dmpi-internal.h219 typedef unsigned int USItype __attribute__ ((mode(SI))); typedef
225 typedef unsigned long USItype; typedef
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Dsfp-machine_32.h85 : "%rJ" ((USItype)(x2)), \
86 "rI" ((USItype)(y2)), \
87 "%rJ" ((USItype)(x1)), \
88 "rI" ((USItype)(y1)), \
89 "%rJ" ((USItype)(x0)), \
90 "rI" ((USItype)(y0)) \
100 : "%rJ" ((USItype)(x2)), \
101 "rI" ((USItype)(y2)), \
102 "%rJ" ((USItype)(x1)), \
103 "rI" ((USItype)(y
[all...]
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dsfp-machine_32.h85 : "%rJ" ((USItype)(x2)), \
86 "rI" ((USItype)(y2)), \
87 "%rJ" ((USItype)(x1)), \
88 "rI" ((USItype)(y1)), \
89 "%rJ" ((USItype)(x0)), \
90 "rI" ((USItype)(y0)) \
100 : "%rJ" ((USItype)(x2)), \
101 "rI" ((USItype)(y2)), \
102 "%rJ" ((USItype)(x1)), \
103 "rI" ((USItype)(y
[all...]
/kernel/linux/linux-5.10/arch/sparc/math-emu/
H A Dsfp-util_32.h12 : "%rJ" ((USItype)(ah)), \
13 "rI" ((USItype)(bh)), \
14 "%rJ" ((USItype)(al)), \
15 "rI" ((USItype)(bl)) \
22 : "rJ" ((USItype)(ah)), \
23 "rI" ((USItype)(bh)), \
24 "rJ" ((USItype)(al)), \
25 "rI" ((USItype)(bl)) \
71 : "%rI" ((USItype)(u)), \
72 "r" ((USItype)(
[all...]
H A Dsfp-util_64.h80 __d0 = (USItype)d; \
98 __r0 = (__r0 << 32) | ((USItype)n0); \
/kernel/linux/linux-6.6/arch/sparc/math-emu/
H A Dsfp-util_32.h12 : "%rJ" ((USItype)(ah)), \
13 "rI" ((USItype)(bh)), \
14 "%rJ" ((USItype)(al)), \
15 "rI" ((USItype)(bl)) \
22 : "rJ" ((USItype)(ah)), \
23 "rI" ((USItype)(bh)), \
24 "rJ" ((USItype)(al)), \
25 "rI" ((USItype)(bl)) \
71 : "%rI" ((USItype)(u)), \
72 "r" ((USItype)(
[all...]
H A Dsfp-util_64.h80 __d0 = (USItype)d; \
98 __r0 = (__r0 << 32) | ((USItype)n0); \
/kernel/linux/linux-5.10/arch/m68k/lib/
H A Dmuldi3.c25 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
26 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
30 USItype __x0, __x1, __x2, __x3; \
31 USItype __ul, __vl, __uh, __vh; \
38 __x0 = (USItype) __ul * __vl; \
39 __x1 = (USItype) __ul * __vh; \
40 __x2 = (USItype) __uh * __vl; \
41 __x3 = (USItype) __uh * __vh; \
56 : "=d" ((USItype)(w0)), \
57 "=d" ((USItype)(w
[all...]
H A Dlshrdi3.c22 typedef unsigned int USItype __mode(SI);
50 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
54 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
55 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
56 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
H A Dashldi3.c22 typedef unsigned int USItype __mode(SI);
50 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
54 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
55 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
56 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
H A Dashrdi3.c22 typedef unsigned int USItype __mode(SI);
55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
/kernel/linux/linux-6.6/arch/m68k/lib/
H A Dmuldi3.c25 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
26 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
30 USItype __x0, __x1, __x2, __x3; \
31 USItype __ul, __vl, __uh, __vh; \
38 __x0 = (USItype) __ul * __vl; \
39 __x1 = (USItype) __ul * __vh; \
40 __x2 = (USItype) __uh * __vl; \
41 __x3 = (USItype) __uh * __vh; \
56 : "=d" ((USItype)(w0)), \
57 "=d" ((USItype)(w
[all...]
H A Dashldi3.c22 typedef unsigned int USItype __mode(SI);
50 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
54 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
55 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
56 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
H A Dlshrdi3.c22 typedef unsigned int USItype __mode(SI);
50 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
54 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
55 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
56 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
H A Dashrdi3.c22 typedef unsigned int USItype __mode(SI);
55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
/kernel/linux/linux-5.10/arch/h8300/lib/
H A Dlibgcc.h51 #define UWtype USItype
53 #define UHWtype USItype
56 #define UWtype USItype
58 #define UWtype USItype
63 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Dsfp-machine.h221 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
244 else if (__builtin_constant_p (ah) && (ah) == ~(USItype) 0) \
250 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
267 USItype __m0 = (m0), __m1 = (m1); \
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H A Dsfp-machine.h221 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
244 else if (__builtin_constant_p (ah) && (ah) == ~(USItype) 0) \
250 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
267 USItype __m0 = (m0), __m1 = (m1); \
/kernel/linux/linux-5.10/include/math-emu/
H A Dsoft-fp.h195 typedef unsigned int USItype __attribute__((mode(SI))); typedef
200 typedef USItype UHWtype;
/kernel/linux/linux-6.6/include/math-emu/
H A Dsoft-fp.h195 typedef unsigned int USItype __attribute__((mode(SI))); typedef
200 typedef USItype UHWtype;

Completed in 7 milliseconds