Home
last modified time | relevance | path

Searched defs:a (Results 151 – 175 of 2990) sorted by relevance

12345678910>>...120

/openbmc/linux/arch/powerpc/xmon/
H A Dspu-insns.h116 #define _A1(a) {1,a} argument
117 #define _A2(a,b) {2,a,b} argument
118 #define _A3(a,b,c) {3,a,b,c} argument
119 #define _A4(a,b,c,d) {4,a,b,c,d} argument
/openbmc/linux/include/trace/events/
H A Dtlb.h24 #define EM(a,b) TRACE_DEFINE_ENUM(a); argument
25 #define EMe(a,b) TRACE_DEFINE_ENUM(a); argument
35 #define EM(a,b) { a, b }, argument
36 #define EMe(a,b) { a, b } argument
H A Dhuge_memory.h46 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument
47 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument
53 #define EM(a, b) {a, b}, argument
54 #define EMe(a, b) {a, b} argument
H A Dmigrate.h33 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument
34 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument
45 #define EM(a, b) {a, b}, argument
46 #define EMe(a, b) {a, b} argument
H A Dkmem.h335 #define EM(a) TRACE_DEFINE_ENUM(a); argument
336 #define EMe(a) TRACE_DEFINE_ENUM(a); argument
343 #define EM(a) { a, #a }, argument
344 #define EMe(a) { a, #a } argument
/openbmc/linux/drivers/video/fbdev/via/
H A Ddebug.h17 #define DEBUG_MSG(f, a...) printk(f, ## a) argument
19 #define DEBUG_MSG(f, a...) no_printk(f, ## a) argument
24 #define WARN_MSG(f, a...) printk(f, ## a) argument
26 #define WARN_MSG(f, a...) no_printk(f, ## a) argument
/openbmc/linux/include/linux/
H A Dtnum.h59 static inline bool tnum_is_const(struct tnum a) in tnum_is_const()
65 static inline bool tnum_equals_const(struct tnum a, u64 b) in tnum_equals_const()
71 static inline bool tnum_is_unknown(struct tnum a) in tnum_is_unknown()
112 static inline bool tnum_subreg_is_const(struct tnum a) in tnum_subreg_is_const()
H A Doverflow.h43 #define is_non_negative(a) ((a) > 0 || (a) == 0) argument
44 #define is_negative(a) (!(is_non_negative(a))) argument
68 #define check_add_overflow(a, b, d) \ argument
83 #define check_sub_overflow(a, b, d) \ argument
98 #define check_mul_overflow(a, b, d) \ argument
121 #define check_shl_overflow(a, s, d) __must_check_overflow(({ \ argument
250 #define array_size(a, b) size_mul(a, b) argument
263 #define array3_size(a, b, c) size_mul(size_mul(a, b), c) argument
/openbmc/linux/drivers/i2c/busses/
H A Di2c-pnx.c82 #define I2C_REG_RX(a) ((a)->ioaddr) /* Rx FIFO reg (RO) */ argument
83 #define I2C_REG_TX(a) ((a)->ioaddr) /* Tx FIFO reg (WO) */ argument
84 #define I2C_REG_STS(a) ((a)->ioaddr + 0x04) /* Status reg (RO) */ argument
85 #define I2C_REG_CTL(a) ((a)->ioaddr + 0x08) /* Ctl reg */ argument
86 #define I2C_REG_CKL(a) ((a)->ioaddr + 0x0c) /* Clock divider low */ argument
87 #define I2C_REG_CKH(a) ((a)->ioaddr + 0x10) /* Clock divider high */ argument
88 #define I2C_REG_ADR(a) ((a)->ioaddr + 0x14) /* I2C address */ argument
89 #define I2C_REG_RFL(a) ((a)->ioaddr + 0x18) /* Rx FIFO level (RO) */ argument
90 #define I2C_REG_TFL(a) ((a)->ioaddr + 0x1c) /* Tx FIFO level (RO) */ argument
91 #define I2C_REG_RXB(a) ((a)->ioaddr + 0x20) /* Num of bytes Rx-ed (RO) */ argument
[all …]
/openbmc/linux/arch/arm/nwfpe/
H A Dsoftfloat.h233 static inline flag extractFloat32Sign(float32 a) in extractFloat32Sign()
238 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()
254 static inline flag extractFloat64Sign(float64 a) in extractFloat64Sign()
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()
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Ddevice.h114 #define nvkm_rd08(d,a) ioread8((d)->pri + (a)) argument
115 #define nvkm_rd16(d,a) ioread16_native((d)->pri + (a)) argument
116 #define nvkm_rd32(d,a) ioread32_native((d)->pri + (a)) argument
117 #define nvkm_wr08(d,a,v) iowrite8((v), (d)->pri + (a)) argument
118 #define nvkm_wr16(d,a,v) iowrite16_native((v), (d)->pri + (a)) argument
119 #define nvkm_wr32(d,a,v) iowrite32_native((v), (d)->pri + (a)) argument
144 #define nvdev_fatal(d,f,a...) nvdev_printk((d), FATAL, crit, f, ##a) argument
145 #define nvdev_error(d,f,a...) nvdev_printk((d), ERROR, err, f, ##a) argument
146 #define nvdev_warn(d,f,a...) nvdev_printk((d), WARN, notice, f, ##a) argument
147 #define nvdev_info(d,f,a...) nvdev_printk((d), INFO, info, f, ##a) argument
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtracing_struct.c9 int a; member
12 long a; member
17 int a; member
22 u64 a; member
101 int BPF_PROG2(test_struct_arg_7, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument
114 int BPF_PROG2(test_struct_arg_8, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument
135 int BPF_PROG2(test_struct_arg_11, struct bpf_testmod_struct_arg_3 *, a) in BPF_PROG2() argument
142 int BPF_PROG2(test_struct_arg_12, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument
156 int BPF_PROG2(test_struct_arg_13, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument
164 int BPF_PROG2(test_struct_arg_14, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument
[all …]
H A Dmodify_return.c18 int BPF_PROG(fentry_test, int a, __u64 b) in BPF_PROG()
27 int BPF_PROG(fmod_ret_test, int a, int *b, int ret) in BPF_PROG()
37 int BPF_PROG(fexit_test, int a, __u64 b, int ret) in BPF_PROG()
55 int BPF_PROG(fentry_test2, int a, int *b, short c, int d, void *e, char f, in BPF_PROG()
65 int BPF_PROG(fmod_ret_test2, int a, int *b, short c, int d, void *e, char f, in BPF_PROG()
76 int BPF_PROG(fexit_test2, int a, int *b, short c, int d, void *e, char f, in BPF_PROG()
/openbmc/linux/tools/perf/util/
H A Daffinity.c24 int affinity__setup(struct affinity *a) in affinity__setup()
48 void affinity__set(struct affinity *a, int cpu) in affinity__set()
71 static void __affinity__cleanup(struct affinity *a) in __affinity__cleanup()
81 void affinity__cleanup(struct affinity *a) in affinity__cleanup()
H A Dgenelf.h67 #define ELF_ST_TYPE(a) ELF64_ST_TYPE(a) argument
68 #define ELF_ST_BIND(a) ELF64_ST_BIND(a) argument
69 #define ELF_ST_VIS(a) ELF64_ST_VISIBILITY(a) argument
78 #define ELF_ST_TYPE(a) ELF32_ST_TYPE(a) argument
79 #define ELF_ST_BIND(a) ELF32_ST_BIND(a) argument
80 #define ELF_ST_VIS(a) ELF32_ST_VISIBILITY(a) argument
/openbmc/linux/include/net/tc_act/
H A Dtc_tunnel_key.h25 #define to_tunnel_key(a) ((struct tcf_tunnel_key *)a) argument
27 static inline bool is_tcf_tunnel_set(const struct tc_action *a) in is_tcf_tunnel_set()
41 static inline bool is_tcf_tunnel_release(const struct tc_action *a) in is_tcf_tunnel_release()
55 static inline struct ip_tunnel_info *tcf_tunnel_info(const struct tc_action *a) in tcf_tunnel_info()
71 tcf_tunnel_info_copy(const struct tc_action *a) in tcf_tunnel_info_copy()
H A Dtc_gate.h52 #define to_gate(a) ((struct tcf_gate *)a) argument
54 static inline bool is_tcf_gate(const struct tc_action *a) in is_tcf_gate()
63 static inline s32 tcf_gate_prio(const struct tc_action *a) in tcf_gate_prio()
72 static inline u64 tcf_gate_basetime(const struct tc_action *a) in tcf_gate_basetime()
81 static inline u64 tcf_gate_cycletime(const struct tc_action *a) in tcf_gate_cycletime()
90 static inline u64 tcf_gate_cycletimeext(const struct tc_action *a) in tcf_gate_cycletimeext()
99 static inline u32 tcf_gate_num_entries(const struct tc_action *a) in tcf_gate_num_entries()
109 *tcf_gate_get_list(const struct tc_action *a) in tcf_gate_get_list()
/openbmc/linux/include/acpi/
H A Dacoutput.h438 #define ACPI_DEBUG_EXEC(a) argument
439 #define ACPI_DEBUG_ONLY_MEMBERS(a) argument
440 #define ACPI_FUNCTION_NAME(a) argument
441 #define ACPI_FUNCTION_TRACE(a) argument
442 #define ACPI_FUNCTION_TRACE_PTR(a, b) argument
443 #define ACPI_FUNCTION_TRACE_U32(a, b) argument
446 #define ACPI_DUMP_STACK_ENTRY(a) argument
447 #define ACPI_DUMP_OPERANDS(a, b, c) argument
448 #define ACPI_DUMP_ENTRY(a, b) argument
450 #define ACPI_DUMP_BUFFER(a, b) argument
[all …]
/openbmc/u-boot/post/lib_powerpc/fpu/
H A Dcompare-fp-1.c23 #define ORD(a, b) (!__builtin_isunordered ((a), (b))) argument
24 #define UNORD(a, b) (__builtin_isunordered ((a), (b))) argument
25 #define UNEQ(a, b) (__builtin_isunordered ((a), (b)) || ((a) == (b))) argument
26 #define UNLT(a, b) (__builtin_isunordered ((a), (b)) || ((a) < (b))) argument
27 #define UNLE(a, b) (__builtin_isunordered ((a), (b)) || ((a) <= (b))) argument
28 #define UNGT(a, b) (__builtin_isunordered ((a), (b)) || ((a) > (b))) argument
29 #define UNGE(a, b) (__builtin_isunordered ((a), (b)) || ((a) >= (b))) argument
30 #define LTGT(a, b) (__builtin_islessgreater ((a), (b))) argument
/openbmc/linux/include/drm/
H A Ddrm_fixed.h80 static inline s64 drm_int2fixp(int a) in drm_int2fixp()
85 static inline int drm_fixp2int(s64 a) in drm_fixp2int()
90 static inline int drm_fixp2int_round(s64 a) in drm_fixp2int_round()
95 static inline int drm_fixp2int_ceil(s64 a) in drm_fixp2int_ceil()
103 static inline unsigned drm_fixp_msbset(s64 a) in drm_fixp_msbset()
114 static inline s64 drm_fixp_mul(s64 a, s64 b) in drm_fixp_mul()
137 static inline s64 drm_fixp_div(s64 a, s64 b) in drm_fixp_div()
155 static inline s64 drm_fixp_from_fraction(s64 a, s64 b) in drm_fixp_from_fraction()
/openbmc/linux/drivers/mtd/nand/raw/
H A Domap2.c65 #define P1e(a) (TF(a & NAND_Ecc_P1e) << 2) argument
66 #define P1o(a) (TF(a & NAND_Ecc_P1o) << 3) argument
67 #define P2e(a) (TF(a & NAND_Ecc_P2e) << 4) argument
68 #define P2o(a) (TF(a & NAND_Ecc_P2o) << 5) argument
69 #define P4e(a) (TF(a & NAND_Ecc_P4e) << 6) argument
70 #define P4o(a) (TF(a & NAND_Ecc_P4o) << 7) argument
72 #define P8e(a) (TF(a & NAND_Ecc_P8e) << 0) argument
73 #define P8o(a) (TF(a & NAND_Ecc_P8o) << 1) argument
90 #define P8e_s(a) (TF(a & NAND_Ecc_P8e) << 0) argument
91 #define P8o_s(a) (TF(a & NAND_Ecc_P8o) << 1) argument
[all …]
/openbmc/linux/include/ras/
H A Dras_event.h384 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument
385 #define EMe(a, b) TRACE_DEFINE_ENUM(a); argument
396 #define EM(a, b) { a, b }, argument
397 #define EMe(a, b) { a, b } argument
/openbmc/linux/tools/virtio/linux/
H A Ddma-mapping.h27 #define dma_map_single_attrs(d, p, s, dir, a) (virt_to_phys(p)) argument
30 #define dma_unmap_single(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0) argument
31 #define dma_unmap_page(d, a, s, r) do { (void)(d); (void)(a); (void)(s); (void)(r); } while (0) argument
34 #define dma_need_sync(v, a) (0) argument
35 #define dma_unmap_single_attrs(d, a, s, r, t) do { \ argument
38 #define dma_sync_single_range_for_cpu(d, a, o, s, r) do { \ argument
41 #define dma_sync_single_range_for_device(d, a, o, s, r) do { \ argument
/openbmc/linux/arch/powerpc/lib/
H A Dtest_emulate_step.c92 unsigned long a = 0x23; in test_ld() local
110 unsigned long a = 0x23; in test_pld() local
290 float a; in test_lfsx_stfsx() member
333 float a; in test_plfs_pstfs() member
380 double a; in test_lfdx_stfdx() member
423 double a; in test_plfd_pstfd() member
496 vector128 a; in test_lvx_stvx() member
553 vector128 a; in test_lxvd2x_stxvd2x() member
619 vector128 a; in test_lxvp_stxvp() member
706 vector128 a; in test_lxvpx_stxvpx() member
[all …]
/openbmc/linux/include/media/i2c/
H A Dlm3646.h26 #define LM3646_TOTAL_FLASH_BRT_uA_TO_REG(a) \ argument
36 #define LM3646_TOTAL_TORCH_BRT_uA_TO_REG(a) \ argument
46 #define LM3646_LED1_FLASH_BRT_uA_TO_REG(a) \ argument
56 #define LM3646_LED1_TORCH_BRT_uA_TO_REG(a) \ argument
66 #define LM3646_FLASH_TOUT_ms_TO_REG(a) \ argument

12345678910>>...120