Home
last modified time | relevance | path

Searched defs:a (Results 251 – 275 of 2990) sorted by relevance

1...<<11121314151617181920>>...120

/openbmc/linux/include/uapi/linux/
H A Dcxl_mem.h51 #define ___C(a, b) CXL_MEM_COMMAND_ID_##a argument
52 #define ___DEPRECATED(a, b) CXL_MEM_DEPRECATED_ID_##a argument
57 #define ___C(a, b) { b } argument
58 #define ___DEPRECATED(a, b) { "Deprecated " b } argument
75 #define ___C(a, b) (0) argument
76 #define ___DEPRECATED(a, b) (1) argument
/openbmc/linux/arch/arm64/kernel/
H A Dalternative.c23 #define __ALT_PTR(a, f) ((void *)&(a)->f + (a)->f) argument
24 #define ALT_ORIG_PTR(a) __ALT_PTR(a, orig_offset) argument
25 #define ALT_REPL_PTR(a) __ALT_PTR(a, alt_offset) argument
27 #define ALT_CAP(a) ((a)->cpucap & ~ARM64_CB_BIT) argument
28 #define ALT_HAS_CB(a) ((a)->cpucap & ARM64_CB_BIT) argument
57 #define align_down(x, a) ((unsigned long)(x) & ~(((unsigned long)(a)) - 1)) argument
/openbmc/u-boot/arch/arc/lib/
H A Dlibgcc2.c105 __divsi3(long a, long b) in __divsi3()
129 __modsi3(long a, long b) in __modsi3()
151 __udivsi3(long a, long b) in __udivsi3()
157 __umodsi3(long a, long b) in __umodsi3()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dget_func_args_test.c14 __u64 a = 0, z = 0, ret = 0; in BPF_PROG() local
47 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
74 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
103 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
H A Dtest_jhash.h12 #define __jhash_mix(a, b, c) \ argument
22 #define __jhash_final(a, b, c) \ argument
38 u32 a, b, c; in jhash() local
H A Drbtree_fail.c20 static bool less(struct bpf_rb_node *a, const struct bpf_rb_node *b) in less()
230 static bool less__bad_fn_call_add(struct bpf_rb_node *a, const struct bpf_rb_node *b) in less__bad_fn_call_add()
242 static bool less__bad_fn_call_remove(struct bpf_rb_node *a, const struct bpf_rb_node *b) in less__bad_fn_call_remove()
254 static bool less__bad_fn_call_first_unlock_after(struct bpf_rb_node *a, const struct bpf_rb_node *b) in less__bad_fn_call_first_unlock_after()
268 long add_with_cb(bool (cb)(struct bpf_rb_node *a, const struct bpf_rb_node *b)) in add_with_cb()
/openbmc/u-boot/lib/libavb/
H A Davb_rsa.c87 static void subM(const IAvbKey* key, uint32_t* a) { in subM()
98 static int geM(const IAvbKey* key, uint32_t* a) { in geM()
115 const uint32_t a, in montMulAdd()
138 static void montMul(const IAvbKey* key, uint32_t* c, uint32_t* a, uint32_t* b) { in montMul()
152 uint32_t* a = (uint32_t*)avb_malloc(key->len * sizeof(uint32_t)); in modpowF4() local
/openbmc/qemu/tests/tcg/s390x/
H A Dadd-logical-with-carry.c41 static unsigned long test32rm(unsigned long a, unsigned long b, in test32rm()
59 static unsigned long test32mr(unsigned long a, unsigned long b, in test32mr()
77 static unsigned long test64rm(unsigned long a, unsigned long b, in test64rm()
92 static unsigned long test64mr(unsigned long a, unsigned long b, in test64mr()
126 unsigned long a, b, c, sum; in main() local
/openbmc/qemu/target/riscv/
H A Dvector_helper.c2355 static inline uint64_t aaddu64(CPURISCVState *env, int vxrm, in aaddu64()
2430 static inline uint64_t asubu64(CPURISCVState *env, int vxrm, in asubu64()
2627 vssra16(CPURISCVState *env, int vxrm, int16_t a, int16_t b) in vssra16()
2635 vssra32(CPURISCVState *env, int vxrm, int32_t a, int32_t b) in vssra32()
2643 vssra64(CPURISCVState *env, int vxrm, int64_t a, int64_t b) in vssra64()
2690 vnclip16(CPURISCVState *env, int vxrm, int32_t a, int16_t b) in vnclip16()
2709 vnclip32(CPURISCVState *env, int vxrm, int64_t a, int32_t b) in vnclip32()
4053 static bool vmfne32(uint32_t a, uint32_t b, float_status *s) in vmfne32()
4059 static bool vmfne64(uint64_t a, uint64_t b, float_status *s) in vmfne64()
4092 static bool vmfgt32(uint32_t a, uint32_t b, float_status *s) in vmfgt32()
[all …]
/openbmc/u-boot/arch/sh/include/asm/
H A Dio.h33 #define __arch_getb(a) (*(volatile unsigned char *)(a)) argument
34 #define __arch_getw(a) (*(volatile unsigned short *)(a)) argument
35 #define __arch_getl(a) (*(volatile unsigned int *)(a)) argument
37 #define __arch_putb(v, a) (*(volatile unsigned char *)(a) = (v)) argument
39 #define __arch_putl(v, a) (*(volatile unsigned int *)(a) = (v)) argument
49 #define __raw_writeb(v, a) __arch_putb(v, a) argument
50 #define __raw_writew(v, a) __arch_putw(v, a) argument
51 #define __raw_writel(v, a) __arch_putl(v, a) argument
53 #define __raw_readb(a) __arch_getb(a) argument
54 #define __raw_readw(a) __arch_getw(a) argument
[all …]
/openbmc/linux/tools/testing/selftests/proc/
H A Dproc-self-map-files-002.c26 static void pass(const char *fmt, unsigned long a, unsigned long b) in pass()
36 static void fail(const char *fmt, unsigned long a, unsigned long b) in fail()
58 unsigned long a, b; in main() local
/openbmc/qemu/target/mips/tcg/
H A Dlcsr_translate.c19 static bool trans_CPUCFG(DisasContext *ctx, arg_CPUCFG *a) in trans_CPUCFG()
32 static bool gen_rdcsr(DisasContext *ctx, arg_r *a, in gen_rdcsr()
46 static bool gen_wrcsr(DisasContext *ctx, arg_r *a, in gen_wrcsr()
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_common.h151 #define IXGBE_WRITE_REG(a, reg, value) ixgbe_write_reg((a), (reg), (value)) argument
170 #define IXGBE_WRITE_REG64(a, reg, value) ixgbe_write_reg64((a), (reg), (value)) argument
173 #define IXGBE_READ_REG(a, reg) ixgbe_read_reg((a), (reg)) argument
175 #define IXGBE_WRITE_REG_ARRAY(a, reg, offset, value) \ argument
178 #define IXGBE_READ_REG_ARRAY(a, reg, offset) \ argument
181 #define IXGBE_WRITE_FLUSH(a) ixgbe_read_reg((a), IXGBE_STATUS) argument
/openbmc/linux/include/trace/events/
H A Drxrpc.h491 #define EM(a, b) a, argument
492 #define E_(a, b) a argument
527 #define EM(a, b) TRACE_DEFINE_ENUM(a); argument
528 #define E_(a, b) TRACE_DEFINE_ENUM(a); argument
558 #define EM(a, b) { a, b }, argument
559 #define E_(a, b) { a, b } argument
/openbmc/linux/drivers/media/pci/bt8xx/
H A Dbttv.h268 #define _MUXSELf(a) 0##a << 30 argument
269 #define _MUXSELe(a, b...) 0##a << 28 | _MUXSELf(b) argument
270 #define _MUXSELd(a, b...) 0##a << 26 | _MUXSELe(b) argument
271 #define _MUXSELc(a, b...) 0##a << 24 | _MUXSELd(b) argument
272 #define _MUXSELb(a, b...) 0##a << 22 | _MUXSELc(b) argument
273 #define _MUXSELa(a, b...) 0##a << 20 | _MUXSELb(b) argument
274 #define _MUXSEL9(a, b...) 0##a << 18 | _MUXSELa(b) argument
275 #define _MUXSEL8(a, b...) 0##a << 16 | _MUXSEL9(b) argument
276 #define _MUXSEL7(a, b...) 0##a << 14 | _MUXSEL8(b) argument
277 #define _MUXSEL6(a, b...) 0##a << 12 | _MUXSEL7(b) argument
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvhw/class/
H A Dclc37d.h204 #define NVC37D_SOR_SET_CONTROL(a) (0x00000300 + (a)*0… argument
232 #define NVC37D_WINDOW_SET_CONTROL(a) (0x00001000 + (a)*0… argument
245 #define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS(a) (0x00001004 + (a)*0… argument
297 #define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS(a) (0x00001008 + (a)*0… argument
349 #define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS(a) (0x00001010 + (a)*0… argument
362 #define NVC37D_HEAD_SET_PROCAMP(a) (0x00002000 + (a)*0… argument
383 #define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE(a) (0x00002004 + (a)*0… argument
408 #define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY(a) (0x0000200C + (a)*0… argument
413 #define NVC37D_HEAD_SET_DITHER_CONTROL(a) (0x00002018 + (a)*0… argument
432 #define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(a) (0x00002028 + (a)*0… argument
[all …]
/openbmc/linux/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_softmac_wx.c30 int ieee80211_wx_set_freq(struct ieee80211_device *ieee, struct iw_request_info *a, in ieee80211_wx_set_freq()
87 struct iw_request_info *a, in ieee80211_wx_get_freq()
180 int ieee80211_wx_get_essid(struct ieee80211_device *ieee, struct iw_request_info *a, union iwreq_da… in ieee80211_wx_get_essid()
270 int ieee80211_wx_set_mode(struct ieee80211_device *ieee, struct iw_request_info *a, in ieee80211_wx_set_mode()
359 int ieee80211_wx_set_scan(struct ieee80211_device *ieee, struct iw_request_info *a, in ieee80211_wx_set_scan()
384 struct iw_request_info *a, in ieee80211_wx_set_essid()
437 int ieee80211_wx_get_mode(struct ieee80211_device *ieee, struct iw_request_info *a, in ieee80211_wx_get_mode()
/openbmc/linux/include/linux/
H A Dmath64.h155 static inline u64 mul_u32_u32(u32 a, u32 b) in mul_u32_u32()
164 static __always_inline u64 mul_u64_u32_shr(u64 a, u32 mul, unsigned int shift) in mul_u64_u32_shr()
171 static __always_inline u64 mul_u64_u64_shr(u64 a, u64 mul, unsigned int shift) in mul_u64_u64_shr()
180 static __always_inline u64 mul_u64_u32_shr(u64 a, u32 mul, unsigned int shift) in mul_u64_u32_shr()
197 static inline u64 mul_u64_u64_shr(u64 a, u64 b, unsigned int shift) in mul_u64_u64_shr()
243 static inline u64 mul_s64_u64_shr(s64 a, u64 b, unsigned int shift) in mul_s64_u64_shr()
261 static inline u64 mul_u64_u32_div(u64 a, u32 mul, u32 divisor) in mul_u64_u32_div()
/openbmc/linux/drivers/staging/rtl8192e/
H A Drtllib_softmac_wx.c19 int rtllib_wx_set_freq(struct rtllib_device *ieee, struct iw_request_info *a, in rtllib_wx_set_freq()
69 struct iw_request_info *a, in rtllib_wx_get_freq()
164 int rtllib_wx_get_essid(struct rtllib_device *ieee, struct iw_request_info *a, in rtllib_wx_get_essid()
252 int rtllib_wx_set_mode(struct rtllib_device *ieee, struct iw_request_info *a, in rtllib_wx_set_mode()
373 int rtllib_wx_set_scan(struct rtllib_device *ieee, struct iw_request_info *a, in rtllib_wx_set_scan()
395 struct iw_request_info *a, in rtllib_wx_set_essid()
442 int rtllib_wx_get_mode(struct rtllib_device *ieee, struct iw_request_info *a, in rtllib_wx_get_mode()
/openbmc/linux/arch/arm/include/asm/
H A Dglue-cache.h134 static inline void nop_flush_user_cache_range(unsigned long a, in nop_flush_user_cache_range()
137 static inline void nop_coherent_kern_range(unsigned long a, unsigned long b) { } in nop_coherent_kern_range()
138 static inline int nop_coherent_user_range(unsigned long a, in nop_coherent_user_range()
140 static inline void nop_flush_kern_dcache_area(void *a, size_t s) { } in nop_flush_kern_dcache_area()
142 static inline void nop_dma_flush_range(const void *a, const void *b) { } in nop_dma_flush_range()
/openbmc/u-boot/arch/nds32/include/asm/
H A Dbitops.h39 int *a = (int *)addr; in __set_bit() local
53 int *a = (int *)addr; in __clear_bit() local
83 unsigned int *a = (unsigned int *)addr; in __test_and_set_bit() local
97 unsigned int *a = (unsigned int *)addr; in __test_and_clear_bit() local
111 unsigned int *a = (unsigned int *)addr; in __test_and_change_bit() local
/openbmc/u-boot/arch/riscv/include/asm/
H A Dbitops.h37 int *a = (int *)addr; in __set_bit() local
49 int *a = (int *)addr; in __clear_bit() local
72 unsigned int *a = (unsigned int *)addr; in __test_and_set_bit() local
84 unsigned int *a = (unsigned int *)addr; in __test_and_clear_bit() local
96 unsigned int *a = (unsigned int *)addr; in __test_and_change_bit() local
/openbmc/qemu/tests/tcg/mips/user/isa/r5900/
H A Dtest_r5900_maddu.c9 uint64_t maddu(uint64_t a, uint32_t rs, uint32_t rt) in maddu()
32 uint64_t maddu1(uint64_t a, uint32_t rs, uint32_t rt) in maddu1()
55 static int64_t maddu_variants(int64_t a, int32_t rs, int32_t rt) in maddu_variants()
/openbmc/linux/tools/testing/selftests/powerpc/dexcr/
H A Ddexcr.h22 #define PPC_RAW_HASH_ARGS(b, i, a) \ argument
24 #define PPC_RAW_HASHST(b, i, a) \ argument
26 #define PPC_RAW_HASHCHK(b, i, a) \ argument
/openbmc/qemu/include/qemu/
H A Dosdep.h395 #define MIN_INTERNAL(a, b, _a, _b) \ argument
401 #define MIN(a, b) \ argument
404 #define MAX_INTERNAL(a, b, _a, _b) \ argument
410 #define MAX(a, b) \ argument
414 # define MIN_CONST(a, b) ((a) < (b) ? (a) : (b)) argument
415 # define MAX_CONST(a, b) ((a) > (b) ? (a) : (b)) argument
417 # define MIN_CONST(a, b) \ argument
422 # define MAX_CONST(a, b) \ argument
437 #define MIN_NON_ZERO_INTERNAL(a, b, _a, _b) \ argument
442 #define MIN_NON_ZERO(a, b) \ argument

1...<<11121314151617181920>>...120