| /include/ |
| A D | time.h | 73 #define time_after(a,b) \ argument 76 ((long)((b) - (a)) < 0)) 77 #define time_before(a,b) time_after(b,a) argument 82 ((long)((a) - (b)) >= 0)) 83 #define time_before_eq(a,b) time_after_eq(b,a) argument 89 (time_after_eq(a,b) && \ 96 (time_after_eq(a,b) && \ 104 typecheck(__u64, b) && \ 106 #define time_before64(a,b) time_after64(b,a) argument 110 typecheck(__u64, b) && \ [all …]
|
| A D | bzlib.h | 195 BZFILE* b 200 BZFILE* b, 207 BZFILE* b, 222 BZFILE* b, 229 BZFILE* b, 237 BZFILE* b, 293 BZFILE* b, 299 BZFILE* b, 305 BZFILE* b 309 BZFILE* b [all …]
|
| A D | ipu_pixfmt.h | 18 #define fourcc(a, b, c, d)\ argument 19 (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
|
| A D | usbdevice.h | 83 #define mmio_insw(r,b,l) ({ int __i ; \ argument 85 __b2 = (u16 *) b; \ 93 #define mmio_outsw(r,b,l) ({ int __i; \ argument 95 __b2 = (u16 *) b; \ 103 #define mmio_insb(r,b,l) ({ int __i ; \ argument 105 __b2 = (u8 *) b; \
|
| A D | efi.h | 78 u8 b[16]; member 144 #define EFI_GUID(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument 147 (b) & 0xff, ((b) >> 8) & 0xff, \
|
| A D | ppc_asm.tmpl | 39 lwz r0,0b-1b(r12) ; \ 219 addis r23,r23,(hdlr - 1b)@ha; \ 220 addi r23,r23,(hdlr - 1b)@l; \ 221 b transfer_to_handler 251 lwz r20,(.L_ ## label)-1b+8(r20); \
|
| A D | efi_device_path.h | 53 const struct efi_device_path *b);
|
| A D | mmc.h | 24 #define MAKE_SDMMC_VERSION(a, b, c) \ argument 25 ((((u32)(a)) << 16) | ((u32)(b) << 8) | (u32)(c)) 26 #define MAKE_SD_VERSION(a, b, c) \ argument 27 (SD_VERSION_SD | MAKE_SDMMC_VERSION(a, b, c)) 28 #define MAKE_MMC_VERSION(a, b, c) \ argument 29 (MMC_VERSION_MMC | MAKE_SDMMC_VERSION(a, b, c))
|
| A D | _exports.h | 8 #define EXPORT_FUNC(a, b, c, ...) argument
|
| /include/zfs/ |
| A D | uberblock_impl.h | 14 #define UBMAX(a, b) ((a) > (b) ? (a) : (b)) argument
|
| /include/dt-bindings/interrupt-router/ |
| A D | intel-irq.h | 27 #define PCI_BDF(b, d, f) ((b) << 16 | (d) << 11 | (f) << 8) argument
|
| /include/linux/ |
| A D | compiler_types.h | 53 #define ___PASTE(a,b) a##b argument 54 #define __PASTE(a,b) ___PASTE(a,b) argument 136 #define __compiler_offsetof(a, b) __builtin_offsetof(a, b) argument 227 #define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b)) argument
|
| A D | compiler_attributes.h | 158 #define __printf(a, b) __attribute__((__format__(printf, a, b))) argument 159 #define __scanf(a, b) __attribute__((__format__(scanf, a, b))) argument
|
| A D | list_sort.h | 10 struct list_head *b));
|
| A D | kconfig.h | 94 #define __concat(a, b) ___concat(a, b) argument 95 #define ___concat(a, b) a ## b argument
|
| A D | kernel.h | 38 #define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1)) argument 224 #define swap(a, b) \ argument 225 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| A D | fb.h | 557 #define fb_writeb(b,addr) (*(volatile u8 *) (addr) = (b)) argument 558 #define fb_writew(b,addr) (*(volatile u16 *) (addr) = (b)) argument 559 #define fb_writel(b,addr) (*(volatile u32 *) (addr) = (b)) argument 560 #define fb_writeq(b,addr) (*(volatile u64 *) (addr) = (b)) argument
|
| A D | math64.h | 144 static inline u64 mul_u32_u32(u32 a, u32 b) in mul_u32_u32() argument 146 return (u64)a * b; in mul_u32_u32() 186 static inline u64 mul_u64_u64_shr(u64 a, u64 b, unsigned int shift) in mul_u64_u64_shr() argument 201 b0.ll = b; in mul_u64_u64_shr()
|
| A D | compat.h | 134 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
| A D | time.h | 8 #define _DEFUN(a,b,c) a(c) argument
|
| /include/env/pg-wcom/ |
| A D | ls102xa.env | 20 cp.b ${load_addr_r} CONFIG_SYS_MONITOR_BASE ${filesize} && 25 cp.b ${load_addr_r} CONFIG_SYS_FLASH_BASE ${filesize} &&
|
| A D | powerpc.env | 10 cp.b ${load_addr_r} BOOTFLASH_START ${filesize} &&
|
| /include/linux/mtd/ |
| A D | nand.h | 470 const struct nand_pos *b) in nanddev_pos_cmp() argument 472 if (a->target != b->target) in nanddev_pos_cmp() 473 return a->target < b->target ? -1 : 1; in nanddev_pos_cmp() 475 if (a->lun != b->lun) in nanddev_pos_cmp() 476 return a->lun < b->lun ? -1 : 1; in nanddev_pos_cmp() 478 if (a->eraseblock != b->eraseblock) in nanddev_pos_cmp() 479 return a->eraseblock < b->eraseblock ? -1 : 1; in nanddev_pos_cmp() 481 if (a->page != b->page) in nanddev_pos_cmp() 482 return a->page < b->page ? -1 : 1; in nanddev_pos_cmp()
|
| /include/renesas/ |
| A D | rzg2l-pfc.h | 54 #define RZG2L_SINGLE_PIN_PACK(p, b, f) (RZG2L_SINGLE_PIN | \ argument 55 ((p) << 24) | ((b) << 20) | (f))
|
| /include/env/phytec/ |
| A D | overlays.env | 4 * Author: Benjamin Hahn <b.hahn@phytec.de>
|