| /include/linux/ |
| D | skb_array.h | 36 static inline bool __skb_array_full(struct skb_array *a) in __skb_array_full() 41 static inline bool skb_array_full(struct skb_array *a) in skb_array_full() 46 static inline int skb_array_produce(struct skb_array *a, struct sk_buff *skb) in skb_array_produce() 51 static inline int skb_array_produce_irq(struct skb_array *a, struct sk_buff *skb) in skb_array_produce_irq() 56 static inline int skb_array_produce_bh(struct skb_array *a, struct sk_buff *skb) in skb_array_produce_bh() 61 static inline int skb_array_produce_any(struct skb_array *a, struct sk_buff *skb) in skb_array_produce_any() 70 static inline bool __skb_array_empty(struct skb_array *a) in __skb_array_empty() 75 static inline bool skb_array_empty(struct skb_array *a) in skb_array_empty() 80 static inline bool skb_array_empty_bh(struct skb_array *a) in skb_array_empty_bh() 85 static inline bool skb_array_empty_irq(struct skb_array *a) in skb_array_empty_irq() [all …]
|
| D | jiffies.h | 101 #define time_after(a,b) \ argument 105 #define time_before(a,b) time_after(b,a) argument 107 #define time_after_eq(a,b) \ argument 111 #define time_before_eq(a,b) time_after_eq(b,a) argument 116 #define time_in_range(a,b,c) \ argument 123 #define time_in_range_open(a,b,c) \ argument 130 #define time_after64(a,b) \ argument 134 #define time_before64(a,b) time_after64(b,a) argument 136 #define time_after_eq64(a,b) \ argument 140 #define time_before_eq64(a,b) time_after_eq64(b,a) argument [all …]
|
| D | hid-debug.h | 53 #define hid_dump_input(a,b,c) do { } while (0) argument 54 #define hid_dump_report(a,b,c,d) do { } while (0) argument 55 #define hid_dump_device(a,b) do { } while (0) argument 56 #define hid_dump_field(a,b,c) do { } while (0) argument 57 #define hid_resolv_usage(a,b) do { } while (0) argument 58 #define hid_debug_register(a, b) do { } while (0) argument 59 #define hid_debug_unregister(a) do { } while (0) argument 62 #define hid_debug_event(a,b) do { } while (0) argument
|
| D | jhash.h | 35 #define __jhash_mix(a, b, c) \ argument 46 #define __jhash_final(a, b, c) \ argument 72 u32 a, b, c; in jhash() local 119 u32 a, b, c; in jhash2() local 149 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) in __jhash_nwords() 160 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words() 165 static inline u32 jhash_2words(u32 a, u32 b, u32 initval) in jhash_2words() 170 static inline u32 jhash_1word(u32 a, u32 initval) in jhash_1word()
|
| D | syscalls.h | 93 #define __MAP1(m,t,a) m(t,a) argument 94 #define __MAP2(m,t,a,...) m(t,a), __MAP1(m,__VA_ARGS__) argument 95 #define __MAP3(m,t,a,...) m(t,a), __MAP2(m,__VA_ARGS__) argument 96 #define __MAP4(m,t,a,...) m(t,a), __MAP3(m,__VA_ARGS__) argument 97 #define __MAP5(m,t,a,...) m(t,a), __MAP4(m,__VA_ARGS__) argument 98 #define __MAP6(m,t,a,...) m(t,a), __MAP5(m,__VA_ARGS__) argument 101 #define __SC_DECL(t, a) t a argument 105 #define __SC_LONG(t, a) __typeof(__builtin_choose_expr(__TYPE_IS_LL(t), 0LL, 0L)) a argument 106 #define __SC_CAST(t, a) (t) a argument 107 #define __SC_ARGS(t, a) a argument [all …]
|
| D | capability.h | 100 #define CAP_BOP_ALL(c, a, b, OP) \ argument 108 #define CAP_UOP_ALL(c, a, OP) \ argument 116 static inline kernel_cap_t cap_combine(const kernel_cap_t a, in cap_combine() 124 static inline kernel_cap_t cap_intersect(const kernel_cap_t a, in cap_intersect() 132 static inline kernel_cap_t cap_drop(const kernel_cap_t a, in cap_drop() 147 static inline bool cap_isclear(const kernel_cap_t a) in cap_isclear() 164 static inline bool cap_issubset(const kernel_cap_t a, const kernel_cap_t set) in cap_issubset() 173 static inline kernel_cap_t cap_drop_fs_set(const kernel_cap_t a) in cap_drop_fs_set() 179 static inline kernel_cap_t cap_raise_fs_set(const kernel_cap_t a, in cap_raise_fs_set() 187 static inline kernel_cap_t cap_drop_nfsd_set(const kernel_cap_t a) in cap_drop_nfsd_set() [all …]
|
| D | util_macros.h | 4 #define __find_closest(x, a, as, op) \ argument 26 #define find_closest(x, a, as) __find_closest(x, a, as, <=) argument 38 #define find_closest_descending(x, a, as) __find_closest(x, a, as, >=) argument
|
| D | compiler-gcc.h | 61 #define __must_be_array(a) 0 argument 64 #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0])) argument 127 #define __printf(a, b) __attribute__((format(printf, a, b))) argument 128 #define __scanf(a, b) __attribute__((format(scanf, a, b))) argument 166 #define __compiler_offsetof(a, b) \ argument 250 #define __assume_aligned(a, ...) __attribute__((__assume_aligned__(a, ## __VA_ARGS__))) argument
|
| /include/linux/decompress/ |
| D | mm.h | 61 #define large_malloc(a) malloc(a) argument 62 #define large_free(a) free(a) argument 80 #define malloc(a) kmalloc(a, GFP_KERNEL) argument 81 #define free(a) kfree(a) argument 83 #define large_malloc(a) vmalloc(a) argument 84 #define large_free(a) vfree(a) argument
|
| /include/net/tc_act/ |
| D | tc_vlan.h | 26 #define to_vlan(a) ((struct tcf_vlan *)a) argument 28 static inline bool is_tcf_vlan(const struct tc_action *a) in is_tcf_vlan() 37 static inline u32 tcf_vlan_action(const struct tc_action *a) in tcf_vlan_action() 42 static inline u16 tcf_vlan_push_vid(const struct tc_action *a) in tcf_vlan_push_vid() 47 static inline __be16 tcf_vlan_push_proto(const struct tc_action *a) in tcf_vlan_push_proto()
|
| D | tc_mirred.h | 15 #define to_mirred(a) ((struct tcf_mirred *)a) argument 17 static inline bool is_tcf_mirred_redirect(const struct tc_action *a) in is_tcf_mirred_redirect() 26 static inline bool is_tcf_mirred_mirror(const struct tc_action *a) in is_tcf_mirred_mirror() 35 static inline int tcf_mirred_ifindex(const struct tc_action *a) in tcf_mirred_ifindex()
|
| D | tc_skbedit.h | 33 #define to_skbedit(a) ((struct tcf_skbedit *)a) argument 36 static inline bool is_tcf_skbedit_mark(const struct tc_action *a) in is_tcf_skbedit_mark() 45 static inline u32 tcf_skbedit_mark(const struct tc_action *a) in tcf_skbedit_mark()
|
| /include/trace/events/ |
| D | tlb.h | 23 #define EM(a,b) TRACE_DEFINE_ENUM(a); argument 24 #define EMe(a,b) TRACE_DEFINE_ENUM(a); argument 34 #define EM(a,b) { a, b }, argument 35 #define EMe(a,b) { a, b } argument
|
| D | huge_memory.h | 37 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 38 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 44 #define EM(a, b) {a, b}, argument 45 #define EMe(a, b) {a, b} argument
|
| D | migrate.h | 30 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 31 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 42 #define EM(a, b) {a, b}, argument 43 #define EMe(a, b) {a, b} argument
|
| D | 9p.h | 82 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 83 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 93 #define EM(a, b) { a, b }, argument 94 #define EMe(a, b) { a, b } argument
|
| D | v4l2.h | 13 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 14 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 59 #define EM(a, b) {a, b}, argument 60 #define EMe(a, b) {a, b} argument
|
| D | compaction.h | 54 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 55 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 66 #define EM(a, b) {a, b}, argument 67 #define EMe(a, b) {a, b} argument
|
| D | sunrpc.h | 188 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 189 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 227 #define EM(a, b) {a, b}, argument 228 #define EMe(a, b) {a, b} argument
|
| D | writeback.h | 29 #define EM(a,b) TRACE_DEFINE_ENUM(a); argument 30 #define EMe(a,b) TRACE_DEFINE_ENUM(a); argument 50 #define EM(a,b) { a, b }, argument 51 #define EMe(a,b) { a, b } argument
|
| /include/media/i2c/ |
| D | lm3560.h | 39 #define LM3560_FLASH_BRT_uA_TO_REG(a) \ argument 42 #define LM3560_FLASH_BRT_REG_TO_uA(a) \ argument 51 #define LM3560_FLASH_TOUT_ms_TO_REG(a) \ argument 54 #define LM3560_FLASH_TOUT_REG_TO_ms(a) \ argument 63 #define LM3560_TORCH_BRT_uA_TO_REG(a) \ argument 66 #define LM3560_TORCH_BRT_REG_TO_uA(a) \ argument
|
| D | lm3646.h | 29 #define LM3646_TOTAL_FLASH_BRT_uA_TO_REG(a) \ argument 39 #define LM3646_TOTAL_TORCH_BRT_uA_TO_REG(a) \ argument 49 #define LM3646_LED1_FLASH_BRT_uA_TO_REG(a) \ argument 59 #define LM3646_LED1_TORCH_BRT_uA_TO_REG(a) \ argument 69 #define LM3646_FLASH_TOUT_ms_TO_REG(a) \ argument
|
| /include/ras/ |
| D | ras_event.h | 279 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument 280 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument 291 #define EM(a, b) { a, b }, argument 292 #define EMe(a, b) { a, b } argument
|
| /include/acpi/ |
| D | acoutput.h | 306 #define ACPI_DO_WHILE0(a) do a while(0) argument 308 #define ACPI_DO_WHILE0(a) a argument 442 #define ACPI_DEBUG_EXEC(a) a argument 443 #define ACPI_DEBUG_ONLY_MEMBERS(a) a; argument 448 #define ACPI_DUMP_STACK_ENTRY(a) acpi_ex_dump_operand((a), 0) argument 449 #define ACPI_DUMP_OPERANDS(a, b ,c) acpi_ex_dump_operands(a, b, c) argument 450 #define ACPI_DUMP_ENTRY(a, b) acpi_ns_dump_entry (a, b) argument 451 #define ACPI_DUMP_PATHNAME(a, b, c, d) acpi_ns_dump_pathname(a, b, c, d) argument 452 #define ACPI_DUMP_BUFFER(a, b) acpi_ut_debug_dump_buffer((u8 *) a, b, DB_BYTE_DISPLAY, _CO… argument 454 #define ACPI_TRACE_POINT(a, b, c, d) acpi_trace_point (a, b, c, d) argument [all …]
|
| /include/drm/ |
| D | drm_fixed.h | 79 static inline s64 drm_int2fixp(int a) in drm_int2fixp() 84 static inline int drm_fixp2int(s64 a) in drm_fixp2int() 89 static inline int drm_fixp2int_ceil(s64 a) in drm_fixp2int_ceil() 97 static inline unsigned drm_fixp_msbset(s64 a) in drm_fixp_msbset() 108 static inline s64 drm_fixp_mul(s64 a, s64 b) in drm_fixp_mul() 131 static inline s64 drm_fixp_div(s64 a, s64 b) in drm_fixp_div() 149 static inline s64 drm_fixp_from_fraction(s64 a, s64 b) in drm_fixp_from_fraction()
|