Home
last modified time | relevance | path

Searched refs:a (Results 126 – 150 of 16284) sorted by relevance

12345678910>>...652

/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/qemu/target/riscv/insn_trans/
H A Dtrans_rvh.c.inc15 * You should have received a copy of the GNU General Public License along with
20 #define do_hlv(ctx, a, func) false
21 #define do_hsv(ctx, a, func) false
23 static void gen_helper_hyp_hlv_b(TCGv r, TCGv_env e, TCGv a)
25 gen_helper_hyp_hlv_bu(r, e, a);
29 static void gen_helper_hyp_hlv_h(TCGv r, TCGv_env e, TCGv a)
31 gen_helper_hyp_hlv_hu(r, e, a);
35 static void gen_helper_hyp_hlv_w(TCGv r, TCGv_env e, TCGv a)
37 gen_helper_hyp_hlv_wu(r, e, a);
41 static bool do_hlv(DisasContext *ctx, arg_r2 *a,
[all …]
H A Dtrans_rva.c.inc17 * You should have received a copy of the GNU General Public License along with
33 static bool gen_lr(DisasContext *ctx, arg_atomic *a, MemOp mop)
38 src1 = get_address(ctx, a->rs1, 0);
39 if (a->rl) {
47 if (a->aq || ctx->ztso) {
53 gen_set_gpr(ctx, a->rd, load_val);
58 static bool gen_sc(DisasContext *ctx, arg_atomic *a, MemOp mop)
65 src1 = get_address(ctx, a->rs1, 0);
72 dest = dest_gpr(ctx, a->rd);
73 src2 = get_gpr(ctx, a->rs2, EXT_NONE);
[all …]
H A Dtrans_rvb.c.inc17 * You should have received a copy of the GNU General Public License along with
69 static bool trans_clz(DisasContext *ctx, arg_clz *a)
72 return gen_unary_per_ol(ctx, a, EXT_NONE, gen_clz, gen_clzw);
85 static bool trans_ctz(DisasContext *ctx, arg_ctz *a)
88 return gen_unary_per_ol(ctx, a, EXT_ZERO, gen_ctz, gen_ctzw);
91 static bool trans_cpop(DisasContext *ctx, arg_cpop *a)
94 return gen_unary(ctx, a, EXT_ZERO, tcg_gen_ctpop_tl);
97 static bool trans_andn(DisasContext *ctx, arg_andn *a)
100 return gen_logic(ctx, a, tcg_gen_andc_tl);
103 static bool trans_orn(DisasContext *ctx, arg_orn *a)
[all …]
/openbmc/linux/sound/pci/hda/
H A Dca0132_regs.h350 #define X_RANGE_MAIN(a, s) \ argument
351 (((a)+((s)-1)*XRAM_XRAM_CHAN_INCR < X_END))
352 #define X_RANGE_AUX(a, s) \ argument
353 (((a) >= X_END) && ((a)+((s)-1)*XRAM_XRAM_CHAN_INCR < AX_END))
354 #define X_RANGE_EXT(a, s) \ argument
355 (((a)+((s)-1)*XRAM_XRAM_CHAN_INCR < X_EXT))
356 #define X_RANGE_ALL(a, s) \ argument
357 (((a)+((s)-1)*XRAM_XRAM_CHAN_INCR < AX_END))
359 #define Y_RANGE_MAIN(a, s) \ argument
360 (((a) >= YRAM_CHIP_OFFSET) && \
[all …]
/openbmc/u-boot/arch/nios2/include/asm/
H A Dio.h48 #define __raw_writeb(v,a) (*(volatile unsigned char *)(a) = (v)) argument
49 #define __raw_writew(v,a) (*(volatile unsigned short *)(a) = (v)) argument
50 #define __raw_writel(v,a) (*(volatile unsigned int *)(a) = (v)) argument
52 #define __raw_readb(a) (*(volatile unsigned char *)(a)) argument
53 #define __raw_readw(a) (*(volatile unsigned short *)(a)) argument
54 #define __raw_readl(a) (*(volatile unsigned int *)(a)) argument
121 #define out_arch(type,endian,a,v) __raw_write##type(cpu_to_##endian(v),a) argument
122 #define in_arch(type,endian,a) endian##_to_cpu(__raw_read##type(a)) argument
124 #define out_le32(a,v) out_arch(l,le32,a,v) argument
125 #define out_le16(a,v) out_arch(w,le16,a,v) 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
38 int BPF_PROG2(test_struct_arg_1, struct bpf_testmod_struct_arg_2, a, int, b, int, c) in BPF_PROG2() argument
40 t1_a_a = a.a; in BPF_PROG2()
41 t1_a_b = a.b; in BPF_PROG2()
48 int BPF_PROG2(test_struct_arg_2, struct bpf_testmod_struct_arg_2, a, int, b, int, c, int, ret) in BPF_PROG2() argument
67 int BPF_PROG2(test_struct_arg_3, int, a, struct bpf_testmod_struct_arg_2, b, int, c) in BPF_PROG2() argument
69 t2_a = a; in BPF_PROG2()
[all …]
/openbmc/linux/drivers/scsi/esas2r/
H A Desas2r_flash.c133 static void esas2r_fmapi_callback(struct esas2r_adapter *a, in esas2r_fmapi_callback() argument
169 (*fc->interrupt_cb)(a, rq); in esas2r_fmapi_callback()
176 static void build_flash_msg(struct esas2r_adapter *a, in build_flash_msg() argument
194 esas2r_build_flash_req(a, in build_flash_msg()
201 esas2r_rq_free_sg_lists(rq, a); in build_flash_msg()
212 esas2r_sgc_init(sgc, a, rq, &rq->vrq->flash.data.sge[0]); in build_flash_msg()
214 if (!esas2r_build_sg_list(a, rq, sgc)) { in build_flash_msg()
227 static bool load_image(struct esas2r_adapter *a, struct esas2r_request *rq) in load_image() argument
234 if (test_bit(AF_DEGRADED_MODE, &a->flags)) in load_image()
237 build_flash_msg(a, rq); in load_image()
[all …]
/openbmc/linux/drivers/net/ethernet/intel/e1000/
H A De1000_osdep.h36 #define E1000_WRITE_REG_ARRAY(a, reg, offset, value) ( \ argument
37 writel((value), ((a)->hw_addr + \
38 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
41 #define E1000_READ_REG_ARRAY(a, reg, offset) ( \ argument
42 readl((a)->hw_addr + \
43 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
49 #define E1000_WRITE_REG_ARRAY_WORD(a, reg, offset, value) ( \ argument
50 writew((value), ((a)->hw_addr + \
51 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
54 #define E1000_READ_REG_ARRAY_WORD(a, reg, offset) ( \ argument
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Ddebug.h54 #define brcms_dbg(core, l, f, a...) __brcms_dbg(&(core)->dev, l, __func__, f, ##a) argument
55 #define brcms_info(core, f, a...) __brcms_info(&(core)->dev, f, ##a) argument
56 #define brcms_warn(core, f, a...) __brcms_warn(&(core)->dev, f, ##a) argument
57 #define brcms_err(core, f, a...) __brcms_err(&(core)->dev, f, ##a) argument
58 #define brcms_crit(core, f, a...) __brcms_crit(&(core)->dev, f, ##a) argument
60 #define brcms_dbg_info(core, f, a...) brcms_dbg(core, BRCM_DL_INFO, f, ##a) argument
61 #define brcms_dbg_mac80211(core, f, a...) brcms_dbg(core, BRCM_DL_MAC80211, f, ##a) argument
62 #define brcms_dbg_rx(core, f, a...) brcms_dbg(core, BRCM_DL_RX, f, ##a) argument
63 #define brcms_dbg_tx(core, f, a...) brcms_dbg(core, BRCM_DL_TX, f, ##a) argument
64 #define brcms_dbg_int(core, f, a...) brcms_dbg(core, BRCM_DL_INT, f, ##a) argument
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvif/
H A Ddevice.h37 #define nvxx_device(a) ({ \ argument
38 struct nvif_device *_device = (a); \
45 #define nvxx_bios(a) nvxx_device(a)->bios argument
46 #define nvxx_fb(a) nvxx_device(a)->fb argument
47 #define nvxx_gpio(a) nvxx_device(a)->gpio argument
48 #define nvxx_clk(a) nvxx_device(a)->clk argument
49 #define nvxx_i2c(a) nvxx_device(a)->i2c argument
50 #define nvxx_iccsense(a) nvxx_device(a)->iccsense argument
51 #define nvxx_therm(a) nvxx_device(a)->therm argument
52 #define nvxx_volt(a) nvxx_device(a)->volt argument
[all …]
/openbmc/qemu/target/mips/tcg/
H A Dmsa_translate.c176 TRANS(NAME, trans_func, NAME##_tab[a->df])
191 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
193 return trans_func(ctx, a, NAME##_tab[a->df]); \
244 static bool trans_BZ_V(DisasContext *ctx, arg_msa_bz *a) in trans_BZ_V() argument
246 return gen_msa_BxZ_V(ctx, a->wt, a->sa, TCG_COND_EQ); in trans_BZ_V()
249 static bool trans_BNZ_V(DisasContext *ctx, arg_msa_bz *a) in trans_BNZ_V() argument
251 return gen_msa_BxZ_V(ctx, a->wt, a->sa, TCG_COND_NE); in trans_BNZ_V()
274 static bool trans_BZ(DisasContext *ctx, arg_msa_bz *a) in trans_BZ() argument
276 return gen_msa_BxZ(ctx, a->df, a->wt, a->sa, false); in trans_BZ()
279 static bool trans_BNZ(DisasContext *ctx, arg_msa_bz *a) in trans_BNZ() argument
[all …]
H A Dloong_translate.c72 static bool trans_DIV_G(DisasContext *s, arg_muldiv *a) in trans_DIV_G() argument
74 return gen_lext_DIV_G(s, a->rd, a->rs, a->rt, false); in trans_DIV_G()
77 static bool trans_DDIV_G(DisasContext *s, arg_muldiv *a) in trans_DDIV_G() argument
79 return gen_lext_DIV_G(s, a->rd, a->rs, a->rt, true); in trans_DDIV_G()
119 static bool trans_DIVU_G(DisasContext *s, arg_muldiv *a) in trans_DIVU_G() argument
121 return gen_lext_DIVU_G(s, a->rd, a->rs, a->rt, false); in trans_DIVU_G()
124 static bool trans_DDIVU_G(DisasContext *s, arg_muldiv *a) in trans_DDIVU_G() argument
126 return gen_lext_DIVU_G(s, a->rd, a->rs, a->rt, true); in trans_DDIVU_G()
169 static bool trans_MOD_G(DisasContext *s, arg_muldiv *a) in trans_MOD_G() argument
171 return gen_lext_MOD_G(s, a->rd, a->rs, a->rt, false); in trans_MOD_G()
[all …]
/openbmc/qemu/target/avr/
H A Dtranslate.c293 static bool trans_ADD(DisasContext *ctx, arg_ADD *a) in trans_ADD() argument
295 TCGv Rd = cpu_r[a->rd]; in trans_ADD()
296 TCGv Rr = cpu_r[a->rr]; in trans_ADD()
316 static bool trans_ADC(DisasContext *ctx, arg_ADC *a) in trans_ADC() argument
318 TCGv Rd = cpu_r[a->rd]; in trans_ADC()
319 TCGv Rr = cpu_r[a->rr]; in trans_ADC()
343 static bool trans_ADIW(DisasContext *ctx, arg_ADIW *a) in trans_ADIW() argument
349 TCGv RdL = cpu_r[a->rd]; in trans_ADIW()
350 TCGv RdH = cpu_r[a->rd + 1]; in trans_ADIW()
351 int Imm = (a->imm); in trans_ADIW()
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dsha256-avx-asm.S11 # This software is available to you under a choice of one of two
47 # This code schedules 1 block at a time, with 4 lanes per block
107 a = %eax define
141 # Rotate values of symbols a...h
150 b = a
151 a = TMP_ define
155 ## compute s0 four at a time and s1 two at a time
156 ## compute W[-16] + W[-7] 4 at a time
160 mov a, y1 # y1 = a
162 MY_ROR (22-13), y1 # y1 = a >> (22-13)
[all …]
H A Dsha256-ssse3-asm.S11 # This software is available to you under a choice of one of two
100 a = %eax define
135 # Rotate values of symbols a...h
144 b = a
145 a = TMP_ define
149 ## compute s0 four at a time and s1 two at a time
150 ## compute W[-16] + W[-7] 4 at a time
154 mov a, y1 # y1 = a
156 ror $(22-13), y1 # y1 = a >> (22-13)
161 xor a, y1 # y1 = a ^ (a >> (22-13)
[all …]
/openbmc/linux/drivers/net/ethernet/smsc/
H A Dsmc91x.h32 #define SMC_outw_b(x, a, r) \ argument
36 SMC_outb(__val16, a, __reg); \
37 SMC_outb(__val16 >> 8, a, __reg + (1 << SMC_IO_SHIFT)); \
40 #define SMC_inw_b(a, r) \ argument
44 __val16 = SMC_inb(a, __reg); \
45 __val16 |= SMC_inb(a, __reg + (1 << SMC_IO_SHIFT)) << 8; \
67 #define SMC_inb(a, r) readb((a) + (r)) argument
68 #define SMC_inw(a, r) \ argument
71 SMC_16BIT(lp) ? readw((a) + __smc_r) : \
72 SMC_8BIT(lp) ? SMC_inw_b(a, __smc_r) : \
[all …]
/openbmc/qemu/target/m68k/
H A Dsoftfloat.h26 floatx80 floatx80_getman(floatx80 a, float_status *status);
27 floatx80 floatx80_getexp(floatx80 a, float_status *status);
28 floatx80 floatx80_scale(floatx80 a, floatx80 b, float_status *status);
29 floatx80 floatx80_move(floatx80 a, float_status *status);
30 floatx80 floatx80_lognp1(floatx80 a, float_status *status);
31 floatx80 floatx80_logn(floatx80 a, float_status *status);
32 floatx80 floatx80_log10(floatx80 a, float_status *status);
33 floatx80 floatx80_log2(floatx80 a, float_status *status);
34 floatx80 floatx80_etox(floatx80 a, float_status *status);
35 floatx80 floatx80_twotox(floatx80 a, float_status *status);
[all …]
/openbmc/linux/scripts/mod/
H A Dsumversion.c67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument
69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument
90 uint32_t a, b, c, d; in md4_transform() local
92 a = hash[0]; in md4_transform()
97 ROUND1(a, b, c, d, in[0], 3); in md4_transform()
98 ROUND1(d, a, b, c, in[1], 7); in md4_transform()
99 ROUND1(c, d, a, b, in[2], 11); in md4_transform()
100 ROUND1(b, c, d, a, in[3], 19); in md4_transform()
101 ROUND1(a, b, c, d, in[4], 3); in md4_transform()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/geis/
H A D0001-provide-function-declaration-with-prototypes.patch60 diff --git a/libgeis/backend/grail/geis_grail_window_grab.c b/libgeis/backend/grail/geis_grail_wind…
62 --- a/libgeis/backend/grail/geis_grail_window_grab.c
73 diff --git a/libgeis/backend/grail/geis_ugsubscription_store.c b/libgeis/backend/grail/geis_ugsubsc…
75 --- a/libgeis/backend/grail/geis_ugsubscription_store.c
78 * Creates a new, empty grail subscription store.
86 diff --git a/libgeis/backend/grail/geis_ugsubscription_store.h b/libgeis/backend/grail/geis_ugsubsc…
88 --- a/libgeis/backend/grail/geis_ugsubscription_store.h
91 * @returns a pointer to a valid store, or NULL to indicate failure.
98 * Destroys a grail subscription store.
99 diff --git a/libgeis/backend/test_fixture/geis_backend_test_fixture.c b/libgeis/backend/test_fixtur…
[all …]
/openbmc/linux/arch/microblaze/include/asm/
H A Dhash.h32 static inline u32 __attribute_const__ __hash_32(u32 a) in __hash_32() argument
38 b = a << 23; in __hash_32()
39 c = (a << 19) + a; in __hash_32()
40 a = (a << 9) + c; in __hash_32()
41 b += a; in __hash_32()
44 a <<= 5; in __hash_32()
45 a += b; /* (a << 5) + b */ in __hash_32()
46 a <<= 3; in __hash_32()
47 a += c; /* (a << 8) + (b << 3) + c */ in __hash_32()
48 a <<= 3; in __hash_32()
[all …]
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/
H A Dklcc-cross-accept-clang-options.patch6 --- a/klcc/klcc.in
8 @@ -207,6 +207,30 @@ while ( defined($a = shift(@ARGV)) ) {
9 } elsif ( $a =~ /^--([sysroot=])(.*)$/ ) {
11 push(@ccopt, $a);
12 + } elsif ( $a eq '-nostartfiles' ) {
14 + push(@ccopt, $a);
15 + } elsif ( $a eq '-nostdlib' ) {
17 + push(@ccopt, $a);
18 + } elsif ( $a eq '-nodefaultlibs' ) {
20 + push(@ccopt, $a);
[all …]
/openbmc/qemu/target/ppc/translate/
H A Ddfp-impl.c.inc11 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
16 rt = gen_fprp_ptr(a->rt); \
17 ra = gen_fprp_ptr(a->ra); \
18 rb = gen_fprp_ptr(a->rb); \
20 if (unlikely(a->rc)) { \
27 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
32 ra = gen_fprp_ptr(a->ra); \
33 rb = gen_fprp_ptr(a->rb); \
34 gen_helper_##NAME(cpu_crf[a->bf], \
40 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
[all …]
/openbmc/linux/tools/testing/selftests/bpf/bpf_testmod/
H A Dbpf_testmod.c26 int a; member
29 long a; member
34 int a; member
39 u64 a; member
48 bpf_testmod_test_struct_arg_1(struct bpf_testmod_struct_arg_2 a, int b, int c) { in bpf_testmod_test_struct_arg_1() argument
49 bpf_testmod_test_struct_arg_result = a.a + a.b + b + c; in bpf_testmod_test_struct_arg_1()
54 bpf_testmod_test_struct_arg_2(int a, struct bpf_testmod_struct_arg_2 b, int c) { in bpf_testmod_test_struct_arg_2() argument
55 bpf_testmod_test_struct_arg_result = a + b.a + b.b + c; in bpf_testmod_test_struct_arg_2()
60 bpf_testmod_test_struct_arg_3(int a, int b, struct bpf_testmod_struct_arg_2 c) { in bpf_testmod_test_struct_arg_3() argument
61 bpf_testmod_test_struct_arg_result = a + b + c.a + c.b; in bpf_testmod_test_struct_arg_3()
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.dataTables-1.13.8.min.js4a;"function"==typeof define&&define.amd?define(["jquery"],function(t){return n(t,window,document)}… argument

12345678910>>...652