Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 389) sorted by relevance

12345678910>>...16

/arch/ia64/lib/
Didiv64.S29 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b argument
30 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b argument
33 # define INT_TO_FP(a,b) fcvt.xf a=b argument
34 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b argument
37 #define PASTE1(a,b) a##b argument
38 #define PASTE(a,b) PASTE1(a,b) argument
Didiv32.S30 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b argument
31 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b argument
35 # define INT_TO_FP(a,b) fcvt.xf a=b argument
36 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b argument
39 #define PASTE1(a,b) a##b argument
40 #define PASTE(a,b) PASTE1(a,b) argument
/arch/sparc/crypto/
Dopcodes.h18 #define CRC32C(a,b,c) \ argument
30 #define AES_EROUND01(a,b,c,d) \ argument
32 #define AES_EROUND23(a,b,c,d) \ argument
34 #define AES_DROUND01(a,b,c,d) \ argument
36 #define AES_DROUND23(a,b,c,d) \ argument
38 #define AES_EROUND01_L(a,b,c,d) \ argument
40 #define AES_EROUND23_L(a,b,c,d) \ argument
42 #define AES_DROUND01_L(a,b,c,d) \ argument
44 #define AES_DROUND23_L(a,b,c,d) \ argument
46 #define AES_KEXPAND1(a,b,c,d) \ argument
[all …]
/arch/h8300/include/asm/
Dio.h30 static inline void __raw_writeb(u8 b, const volatile void __iomem *addr) in __raw_writeb()
36 static inline void __raw_writew(u16 b, const volatile void __iomem *addr) in __raw_writew()
42 static inline void __raw_writel(u32 b, const volatile void __iomem *addr) in __raw_writel()
47 static inline void ctrl_bclr(int b, void __iomem *addr) in ctrl_bclr()
55 static inline void ctrl_bset(int b, void __iomem *addr) in ctrl_bset()
/arch/powerpc/lib/
Dtest_emulate_step.c28 #define TEST_LWZX(t, a, b) (PPC_INST_LWZX | ___PPC_RT(t) | \ argument
32 #define TEST_LDARX(t, a, b, eh) (PPC_INST_LDARX | ___PPC_RT(t) | \ argument
35 #define TEST_STDCX(s, a, b) (PPC_INST_STDCX | ___PPC_RS(s) | \ argument
37 #define TEST_LFSX(t, a, b) (PPC_INST_LFSX | ___PPC_RT(t) | \ argument
39 #define TEST_STFSX(s, a, b) (PPC_INST_STFSX | ___PPC_RS(s) | \ argument
41 #define TEST_LFDX(t, a, b) (PPC_INST_LFDX | ___PPC_RT(t) | \ argument
43 #define TEST_STFDX(s, a, b) (PPC_INST_STFDX | ___PPC_RS(s) | \ argument
45 #define TEST_LVX(t, a, b) (PPC_INST_LVX | ___PPC_RT(t) | \ argument
47 #define TEST_STVX(s, a, b) (PPC_INST_STVX | ___PPC_RS(s) | \ argument
49 #define TEST_LXVD2X(s, a, b) (PPC_INST_LXVD2X | VSX_XX1((s), R##a, R##b)) argument
[all …]
/arch/mips/lib/
Dmulti3.c15 static inline long long notrace dmulu(long long a, long long b) in dmulu()
24 static inline long long notrace dmuhu(long long a, long long b) in dmuhu()
33 ti_type notrace __multi3(ti_type a, ti_type b) in __multi3()
/arch/metag/include/asm/
Dio.h62 static inline void __raw_writeb(u8 b, volatile void __iomem *addr) in __raw_writeb()
72 static inline void __raw_writew(u16 b, volatile void __iomem *addr) in __raw_writew()
82 static inline void __raw_writel(u32 b, volatile void __iomem *addr) in __raw_writel()
92 static inline void __raw_writeq(u64 b, volatile void __iomem *addr) in __raw_writeq()
128 #define metag_out8(b, addr) __raw_writeb(b, (volatile void __iomem *)(addr)) argument
129 #define metag_out16(b, addr) __raw_writew(b, (volatile void __iomem *)(addr)) argument
130 #define metag_out32(b, addr) __raw_writel(b, (volatile void __iomem *)(addr)) argument
131 #define metag_out64(b, addr) __raw_writeq(b, (volatile void __iomem *)(addr)) argument
/arch/mips/math-emu/
Dieee754.c41 #define xPCNST(s, b, m, ebias) \ argument
50 #define DPCNST(s, b, m) \ argument
74 #define SPCNST(s, b, m) \ argument
/arch/m68k/include/asm/
Dio.h12 #define writeb_relaxed(b, addr) writeb(b, addr) argument
13 #define writew_relaxed(b, addr) writew(b, addr) argument
14 #define writel_relaxed(b, addr) writel(b, addr) argument
Dio_no.h46 #define writeb(b,addr) (void)((*(volatile unsigned char *) (addr)) = (b)) argument
47 #define writew(b,addr) (void)((*(volatile unsigned short *) (addr)) = (b)) argument
48 #define writel(b,addr) (void)((*(volatile unsigned int *) (addr)) = (b)) argument
112 #define memset_io(a,b,c) memset((void *)(a),(b),(c)) argument
113 #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c)) argument
114 #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c)) argument
130 #define outsb(a,b,l) io_outsb(a,b,l) argument
131 #define outsw(a,b,l) io_outsw(a,b,l) argument
132 #define outsl(a,b,l) io_outsl(a,b,l) argument
134 #define insb(a,b,l) io_insb(a,b,l) argument
[all …]
Dnubus.h15 #define nubus_memset_io(a,b,c) memset((void *)(a),(b),(c)) argument
16 #define nubus_memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c)) argument
17 #define nubus_memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c)) argument
Dzorro.h15 #define z_memset_io(a,b,c) memset((void *)(a),(b),(c)) argument
16 #define z_memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c)) argument
17 #define z_memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c)) argument
/arch/powerpc/xmon/
Dspu-insns.h128 #define _A2(a,b) {2,a,b} argument
129 #define _A3(a,b,c) {3,a,b,c} argument
130 #define _A4(a,b,c,d) {4,a,b,c,d} argument
/arch/arm/mach-ebsa110/include/mach/
Dio.h54 #define readb(b) __readb(b) argument
55 #define readw(b) __readw(b) argument
56 #define readl(b) __readl(b) argument
61 #define writeb(v,b) __writeb(v,b) argument
62 #define writew(v,b) __writew(v,b) argument
63 #define writel(v,b) __writel(v,b) argument
/arch/alpha/include/asm/
Dio.h140 #define IO_CONCAT(a,b) _IO_CONCAT(a,b) argument
141 #define _IO_CONCAT(a,b) a ## _ ## b argument
342 extern inline void iowrite8(u8 b, void __iomem *addr) in iowrite8()
348 extern inline void iowrite16(u16 b, void __iomem *addr) in iowrite16()
364 extern inline void outb(u8 b, unsigned long port) in outb()
369 extern inline void outw(u16 b, unsigned long port) in outw()
383 extern inline void iowrite32(u32 b, void __iomem *addr) in iowrite32()
394 extern inline void outl(u32 b, unsigned long port) in outl()
411 extern inline void __raw_writeb(u8 b, volatile void __iomem *addr) in __raw_writeb()
416 extern inline void __raw_writew(u16 b, volatile void __iomem *addr) in __raw_writew()
[all …]
Djensen.h119 static inline void jensen_local_outb(u8 b, unsigned long addr) in jensen_local_outb()
134 static inline void jensen_bus_outb(u8 b, unsigned long addr) in jensen_bus_outb()
162 __EXTERN_INLINE void jensen_outb(u8 b, unsigned long addr) in jensen_outb()
186 __EXTERN_INLINE void jensen_outw(u16 b, unsigned long addr) in jensen_outw()
193 __EXTERN_INLINE void jensen_outl(u32 b, unsigned long addr) in jensen_outl()
249 __EXTERN_INLINE void jensen_writeb(u8 b, volatile void __iomem *xaddr) in jensen_writeb()
257 __EXTERN_INLINE void jensen_writew(u16 b, volatile void __iomem *xaddr) in jensen_writew()
265 __EXTERN_INLINE void jensen_writel(u32 b, volatile void __iomem *xaddr) in jensen_writel()
273 __EXTERN_INLINE void jensen_writeq(u64 b, volatile void __iomem *xaddr) in jensen_writeq()
/arch/sh/include/asm/
Dio_generic.h8 #define IO_CONCAT(a,b) _IO_CONCAT(a,b) argument
9 #define _IO_CONCAT(a,b) a ## _ ## b argument
Dio_noioport.h56 #define insb(a, b, c) BUG() argument
57 #define insw(a, b, c) BUG() argument
58 #define insl(a, b, c) BUG() argument
60 #define outsb(a, b, c) BUG() argument
61 #define outsw(a, b, c) BUG() argument
62 #define outsl(a, b, c) BUG() argument
/arch/powerpc/net/
Dbpf_jit.h54 #define PPC_STDX(r, base, b) EMIT(PPC_INST_STDX | ___PPC_RS(r) | \ argument
71 #define PPC_LDX(r, base, b) EMIT(PPC_INST_LDX | ___PPC_RT(r) | \ argument
77 #define PPC_LHBRX(r, base, b) EMIT(PPC_INST_LHBRX | ___PPC_RT(r) | \ argument
79 #define PPC_LDBRX(r, base, b) EMIT(PPC_INST_LDBRX | ___PPC_RT(r) | \ argument
82 #define PPC_BPF_LDARX(t, a, b, eh) EMIT(PPC_INST_LDARX | ___PPC_RT(t) | \ argument
85 #define PPC_BPF_LWARX(t, a, b, eh) EMIT(PPC_INST_LWARX | ___PPC_RT(t) | \ argument
88 #define PPC_BPF_STWCX(s, a, b) EMIT(PPC_INST_STWCX | ___PPC_RS(s) | \ argument
90 #define PPC_BPF_STDCX(s, a, b) EMIT(PPC_INST_STDCX | ___PPC_RS(s) | \ argument
94 #define PPC_CMPW(a, b) EMIT(PPC_INST_CMPW | ___PPC_RA(a) | \ argument
96 #define PPC_CMPD(a, b) EMIT(PPC_INST_CMPD | ___PPC_RA(a) | \ argument
[all …]
/arch/alpha/kernel/
Dio.c38 void iowrite8(u8 b, void __iomem *addr) in iowrite8()
44 void iowrite16(u16 b, void __iomem *addr) in iowrite16()
50 void iowrite32(u32 b, void __iomem *addr) in iowrite32()
78 void outb(u8 b, unsigned long port) in outb()
83 void outw(u16 b, unsigned long port) in outw()
88 void outl(u32 b, unsigned long port) in outl()
120 void __raw_writeb(u8 b, volatile void __iomem *addr) in __raw_writeb()
125 void __raw_writew(u16 b, volatile void __iomem *addr) in __raw_writew()
130 void __raw_writel(u32 b, volatile void __iomem *addr) in __raw_writel()
135 void __raw_writeq(u64 b, volatile void __iomem *addr) in __raw_writeq()
[all …]
/arch/powerpc/include/asm/
Dppc-opcode.h363 #define ___PPC_RB(b) (((b) & 0x1f) << 11) argument
371 #define __PPC_RB(b) ___PPC_RB(__REG_##b) argument
375 #define __PPC_XB(b) ((((b) & 0x1f) << 11) | (((b) & 0x20) >> 4)) argument
402 #define PPC_COPY(a, b) stringify_in_c(.long PPC_INST_COPY | \ argument
407 #define PPC_DCBAL(a, b) stringify_in_c(.long PPC_INST_DCBAL | \ argument
409 #define PPC_DCBZL(a, b) stringify_in_c(.long PPC_INST_DCBZL | \ argument
411 #define PPC_LQARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LQARX | \ argument
414 #define PPC_LDARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LDARX | \ argument
417 #define PPC_LWARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LWARX | \ argument
420 #define PPC_STQCX(t, a, b) stringify_in_c(.long PPC_INST_STQCX | \ argument
[all …]
/arch/arm/nwfpe/
Dsoftfloat.c1029 static float32 addFloat32Sigs( struct roundingData *roundData, float32 a, float32 b, flag zSign ) in addFloat32Sigs()
1101 static float32 subFloat32Sigs( struct roundingData *roundData, float32 a, float32 b, flag zSign ) in subFloat32Sigs()
1175 float32 float32_add( struct roundingData *roundData, float32 a, float32 b ) in float32_add()
1197 float32 float32_sub( struct roundingData *roundData, float32 a, float32 b ) in float32_sub()
1219 float32 float32_mul( struct roundingData *roundData, float32 a, float32 b ) in float32_mul()
1280 float32 float32_div( struct roundingData *roundData, float32 a, float32 b ) in float32_div()
1347 float32 float32_rem( struct roundingData *roundData, float32 a, float32 b ) in float32_rem()
1505 flag float32_eq( float32 a, float32 b ) in float32_eq()
1528 flag float32_le( float32 a, float32 b ) in float32_le()
1552 flag float32_lt( float32 a, float32 b ) in float32_lt()
[all …]
Dsoftfloat.h238 static inline flag float32_eq_nocheck(float32 a, float32 b) in float32_eq_nocheck()
243 static inline flag float32_lt_nocheck(float32 a, float32 b) in float32_lt_nocheck()
259 static inline flag float64_eq_nocheck(float64 a, float64 b) in float64_eq_nocheck()
264 static inline flag float64_lt_nocheck(float64 a, float64 b) in float64_lt_nocheck()
/arch/x86/xen/
Dmulticalls.c58 struct mc_buffer *b = this_cpu_ptr(&mc_buffer); in xen_mc_flush() local
135 struct mc_buffer *b = this_cpu_ptr(&mc_buffer); in __xen_mc_entry() local
166 struct mc_buffer *b = this_cpu_ptr(&mc_buffer); in xen_mc_extend_args() local
196 struct mc_buffer *b = this_cpu_ptr(&mc_buffer); in xen_mc_callback() local
/arch/mips/kernel/
Dr2300_fpu.S23 #define EX(a,b) \ argument
29 #define EX2(a,b) \ argument

12345678910>>...16