/include/linux/ |
D | jhash.h | 24 #define __jhash_mix(a, b, c) \ argument 26 a -= b; a -= c; a ^= (c>>13); \ 27 b -= c; b -= a; b ^= (a<<8); \ 28 c -= a; c -= b; c ^= (b>>13); \ 29 a -= b; a -= c; a ^= (c>>12); \ 30 b -= c; b -= a; b ^= (a<<16); \ 31 c -= a; c -= b; c ^= (b>>5); \ 32 a -= b; a -= c; a ^= (c>>3); \ 33 b -= c; b -= a; b ^= (a<<10); \ 34 c -= a; c -= b; c ^= (b>>15); \ [all …]
|
D | jiffies.h | 106 #define time_after(a,b) \ argument 108 typecheck(unsigned long, b) && \ 109 ((long)(b) - (long)(a) < 0)) 110 #define time_before(a,b) time_after(b,a) argument 112 #define time_after_eq(a,b) \ argument 114 typecheck(unsigned long, b) && \ 115 ((long)(a) - (long)(b) >= 0)) 116 #define time_before_eq(a,b) time_after_eq(b,a) argument 121 #define time_in_range(a,b,c) \ argument 122 (time_after_eq(a,b) && \ [all …]
|
D | efi.h | 40 u8 b[16]; member 43 #define EFI_GUID(a,b,c,d0,d1,d2,d3,d4,d5,d6,d7) \ argument 46 (b) & 0xff, ((b) >> 8) & 0xff, \ 284 guid->b[3], guid->b[2], guid->b[1], guid->b[0], in efi_guid_unparse() 285 guid->b[5], guid->b[4], guid->b[7], guid->b[6], in efi_guid_unparse() 286 guid->b[8], guid->b[9], guid->b[10], guid->b[11], in efi_guid_unparse() 287 guid->b[12], guid->b[13], guid->b[14], guid->b[15]); in efi_guid_unparse()
|
D | hid-debug.h | 35 #define hid_dump_input(a,b) do { } while (0) argument 37 #define hid_dump_field(a,b) do { } while (0) argument 39 #define hid_resolv_event(a,b) do { } while (0) argument
|
D | suspend.h | 219 extern void __register_nosave_region(unsigned long b, unsigned long e, int km); 220 static inline void __init register_nosave_region(unsigned long b, unsigned long e) in register_nosave_region() argument 222 __register_nosave_region(b, e, 0); in register_nosave_region() 224 static inline void __init register_nosave_region_late(unsigned long b, unsigned long e) in register_nosave_region_late() argument 226 __register_nosave_region(b, e, 1); in register_nosave_region_late() 248 static inline int hibernate_nvs_register(unsigned long a, unsigned long b) in hibernate_nvs_register() argument 288 static inline void register_nosave_region(unsigned long b, unsigned long e) in register_nosave_region() argument 291 static inline void register_nosave_region_late(unsigned long b, unsigned long e) in register_nosave_region_late() argument
|
D | rcuclassic.h | 67 static inline int rcu_batch_before(long a, long b) in rcu_batch_before() argument 69 return (a - b) < 0; in rcu_batch_before() 73 static inline int rcu_batch_after(long a, long b) in rcu_batch_after() argument 75 return (a - b) > 0; in rcu_batch_after()
|
D | compiler-gcc4.h | 12 #define __compiler_offsetof(a,b) __builtin_offsetof(a,b) argument
|
D | etherdevice.h | 139 const u16 *b = (const u16 *) addr2; in compare_ether_addr() local 142 return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | (a[2] ^ b[2])) != 0; in compare_ether_addr()
|
D | if_ppp.h | 103 struct ifreq b; member 108 struct ifreq b; member 127 #define ifr__name b.ifr_ifrn.ifrn_name 128 #define stats_ptr b.ifr_ifru.ifru_data
|
D | romfs_fs.h | 15 #define __mk4(a,b,c,d) cpu_to_be32(__mkl(__mkw(a,b),__mkw(c,d))) argument
|
D | nfs.h | 146 static inline int nfs_compare_fh(const struct nfs_fh *a, const struct nfs_fh *b) in nfs_compare_fh() argument 148 return a->size != b->size || memcmp(a->data, b->data, a->size) != 0; in nfs_compare_fh()
|
/include/asm-generic/bitops/ |
D | sched.h | 12 static inline int sched_find_first_bit(const unsigned long *b) in sched_find_first_bit() argument 15 if (b[0]) in sched_find_first_bit() 16 return __ffs(b[0]); in sched_find_first_bit() 17 return __ffs(b[1]) + 64; in sched_find_first_bit() 19 if (b[0]) in sched_find_first_bit() 20 return __ffs(b[0]); in sched_find_first_bit() 21 if (b[1]) in sched_find_first_bit() 22 return __ffs(b[1]) + 32; in sched_find_first_bit() 23 if (b[2]) in sched_find_first_bit() 24 return __ffs(b[2]) + 64; in sched_find_first_bit() [all …]
|
/include/linux/mtd/ |
D | ftl.h | 63 #define BLOCK_FREE(b) ((b) == 0xffffffff) argument 64 #define BLOCK_DELETED(b) (((b) == 0) || ((b) == 0xfffffffe)) argument 66 #define BLOCK_TYPE(b) ((b) & 0x7f) argument 67 #define BLOCK_ADDRESS(b) ((b) & ~0x7f) argument 68 #define BLOCK_NUMBER(b) ((b) >> 9) argument
|
/include/crypto/ |
D | b128ops.h | 53 u64 a, b; member 57 __be64 a, b; member 61 __le64 b, a; member 67 r->b = p->b ^ q->b; in u128_xor()
|
D | gf128mul.h | 160 void gf128mul_lle(be128 *a, const be128 *b); 162 void gf128mul_bbe(be128 *a, const be128 *b); 165 void gf128mul_x_ble(be128 *a, const be128 *b);
|
/include/asm-mn10300/ |
D | io.h | 50 static inline void writeb(u8 b, volatile void __iomem *addr) in writeb() argument 52 *(volatile u8 *) addr = b; in writeb() 55 static inline void writew(u16 b, volatile void __iomem *addr) in writew() argument 57 *(volatile u16 *) addr = b; in writew() 60 static inline void writel(u32 b, volatile void __iomem *addr) in writel() argument 62 *(volatile u32 *) addr = b; in writel() 78 static inline void outb_local(u8 b, unsigned long addr) in outb_local() argument 80 return writeb(b, (volatile void __iomem *) addr); in outb_local() 98 static inline void outb(u8 b, unsigned long addr) in outb() argument 100 return writeb(b, (volatile void __iomem *) addr); in outb() [all …]
|
/include/linux/mfd/ |
D | tmio.h | 8 #define tmio_ioread16_rep(r, b, l) readsw(r, b, l) argument 14 #define tmio_iowrite16_rep(r, b, l) writesw(r, b, l) argument
|
/include/asm-frv/ |
D | dm9000.h | 34 #define insl(a,b,l) __insl(a,b,l,0) /* don't byte-swap */ argument
|
D | segment.h | 34 #define segment_eq(a,b) ((a).seg == (b).seg) argument
|
D | io.h | 180 #define outsb(a,b,l) io_outsb(a,b,l) argument 181 #define outsw(a,b,l) io_outsw(a,b,l) argument 182 #define outsl(a,b,l) __outsl(a,b,l,0) argument 184 #define insb(a,b,l) io_insb(a,b,l) argument 185 #define insw(a,b,l) io_insw(a,b,l) argument 186 #define insl(a,b,l) __insl(a,b,l,0) argument
|
/include/net/irda/ |
D | irda.h | 50 #define IRDA_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
|
/include/linux/usb/ |
D | wusb.h | 314 const void *b, size_t blen, size_t len); 319 const void *b, size_t blen) in wusb_prf_64() argument 321 return wusb_prf(out, out_size, key, n, a, b, blen, 64); in wusb_prf_64() 327 const void *b, size_t blen) in wusb_prf_128() argument 329 return wusb_prf(out, out_size, key, n, a, b, blen, 128); in wusb_prf_128() 335 const void *b, size_t blen) in wusb_prf_256() argument 337 return wusb_prf(out, out_size, key, n, a, b, blen, 256); in wusb_prf_256()
|
/include/acpi/ |
D | actypes.h | 449 #define ACPI_MIN(a,b) (((a)<(b))?(a):(b)) argument 450 #define ACPI_MAX(a,b) (((a)>(b))?(a):(b)) argument 460 #define ACPI_ADD_PTR(t, a, b) ACPI_CAST_PTR (t, (ACPI_CAST_PTR (u8, (a)) + (acpi_size)(b)… argument 461 #define ACPI_PTR_DIFF(a, b) (acpi_size) (ACPI_CAST_PTR (u8, (a)) - ACPI_CAST_PTR (u8, (… argument 472 #define ACPI_COMPARE_NAME(a,b) (*ACPI_CAST_PTR (u32, (a)) == *ACPI_CAST_PTR (u32, (b))) argument 474 #define ACPI_COMPARE_NAME(a,b) (!ACPI_STRNCMP (ACPI_CAST_PTR (char, (a)), ACPI_CAST_PTR (c… argument
|
/include/linux/mmc/ |
D | sdio_func.h | 146 extern void sdio_writeb(struct sdio_func *func, u8 b, 148 extern void sdio_writew(struct sdio_func *func, u16 b, 150 extern void sdio_writel(struct sdio_func *func, u32 b, 160 extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
|
/include/mtd/ |
D | nftl-user.h | 40 struct nftl_uci1 b; member 45 struct nftl_bci b; member
|