Home
last modified time | relevance | path

Searched refs:a (Results 151 – 175 of 17624) sorted by relevance

12345678910>>...705

/openbmc/u-boot/include/
H A Dtime.h29 #define time_after(a,b) \ argument
30 (typecheck(unsigned long, a) && \
32 ((long)((b) - (a)) < 0))
33 #define time_before(a,b) time_after(b,a) argument
35 #define time_after_eq(a,b) \ argument
36 (typecheck(unsigned long, a) && \
38 ((long)((a) - (b)) >= 0))
39 #define time_before_eq(a,b) time_after_eq(b,a) argument
44 #define time_in_range(a,b,c) \ argument
45 (time_after_eq(a,b) && \
[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
/openbmc/u-boot/arch/nds32/include/asm/
H A Dio.h66 #define __arch_getb(a) (*(unsigned char *)(a)) argument
67 #define __arch_getw(a) (*(unsigned short *)(a)) argument
68 #define __arch_getl(a) (*(unsigned int *)(a)) argument
70 #define __arch_putb(v, a) (*(unsigned char *)(a) = (v)) argument
71 #define __arch_putw(v, a) (*(unsigned short *)(a) = (v)) argument
72 #define __arch_putl(v, a) (*(unsigned int *)(a) = (v)) argument
82 #define __raw_writeb(v, a) __arch_putb(v, a) argument
83 #define __raw_writew(v, a) __arch_putw(v, a) argument
84 #define __raw_writel(v, a) __arch_putl(v, a) argument
86 #define __raw_readb(a) __arch_getb(a) argument
[all …]
/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
120 #define nvkm_mask(d,a,m,v) ({ \ argument
122 u32 _addr = (a), _temp = nvkm_rd32(_device, _addr); \
138 #define nvdev_printk_(d,l,p,f,a...) do { \ argument
141 dev_##p(_device->dev, f, ##a); \
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dsha256-avx2-asm.S11 # This software is available to you under a choice of one of two
48 # This code schedules 2 blocks at a time, with 4 lanes per block
103 a = %eax define
140 # Rotate values of symbols a...h
150 b = a
151 a = TMP_ define
157 mov a, y3 # y3 = a # MAJA
162 or c, y3 # y3 = a|c # MAJA
165 rorx $13, a, T1 # T1 = a >> 13 # S0B
174 rorx $22, a, y1 # y1 = a >> 22 # S0A
[all …]
H A Dsha512-avx2-asm.S12 # This software is available to you under a choice of one of two
49 # This code schedules 1 blocks at a time, with 4 lanes per block
87 a = %rax define
143 # Rotate symbols a..h right
152 b = a
153 a = TMP_ define
182 mov a, y3 # y3 = a # MAJA
186 or c, y3 # y3 = a|c # MAJA
188 rorx $34, a, T1 # T1 = a >> 34 # S0B
196 rorx $39, a, y1 # y1 = a >> 39 # S0A
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-m-nocp.c35 static bool trans_VLLDM_VLSTM(DisasContext *s, arg_VLLDM_VLSTM *a) in trans_VLLDM_VLSTM() argument
44 if (a->op) { in trans_VLLDM_VLSTM()
86 fptr = load_reg(s, a->rn); in trans_VLLDM_VLSTM()
87 if (a->l) { in trans_VLLDM_VLSTM()
103 static bool trans_VSCCLRM(DisasContext *s, arg_VSCCLRM *a) in trans_VSCCLRM() argument
148 topreg = a->vd + a->imm - 1; in trans_VSCCLRM()
149 btmreg = a->vd; in trans_VSCCLRM()
152 if (a->size == 3) { in trans_VSCCLRM()
576 arg_VMSR_VMRS *a = opaque; in fp_sysreg_to_gpr() local
582 if (a->rt == 15) { in fp_sysreg_to_gpr()
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D021.out5 -1 is not a valid pattern byte
8 -1 is not a valid pattern byte
11 -1 is not a valid pattern byte
14 -1 is not a valid pattern byte
17 -1 is not a valid pattern byte
20 -1 is not a valid pattern byte
23 300 is not a valid pattern byte
26 300 is not a valid pattern byte
29 300 is not a valid pattern byte
32 300 is not a valid pattern byte
[all …]
/openbmc/linux/lib/
H A Dsort.c58 static void swap_words_32(void *a, void *b, size_t n) in swap_words_32() argument
61 u32 t = *(u32 *)(a + (n -= 4)); in swap_words_32()
62 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_32()
83 static void swap_words_64(void *a, void *b, size_t n) in swap_words_64() argument
87 u64 t = *(u64 *)(a + (n -= 8)); in swap_words_64()
88 *(u64 *)(a + n) = *(u64 *)(b + n); in swap_words_64()
92 u32 t = *(u32 *)(a + (n -= 4)); in swap_words_64()
93 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_64()
96 t = *(u32 *)(a + (n -= 4)); in swap_words_64()
97 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_64()
[all …]
H A Dlist_sort.c17 struct list_head *a, struct list_head *b) in merge() argument
23 if (cmp(priv, a, b) <= 0) { in merge()
24 *tail = a; in merge()
25 tail = &a->next; in merge()
26 a = a->next; in merge()
27 if (!a) { in merge()
36 *tail = a; in merge()
53 struct list_head *a, struct list_head *b) in merge_final() argument
60 if (cmp(priv, a, b) <= 0) { in merge_final()
61 tail->next = a; in merge_final()
[all …]
/openbmc/qemu/target/loongarch/tcg/insn_trans/
H A Dtrans_memory.c.inc6 static bool gen_load(DisasContext *ctx, arg_rr_i *a, MemOp mop)
8 TCGv dest = gpr_dst(ctx, a->rd, EXT_NONE);
9 TCGv addr = gpr_src(ctx, a->rj, EXT_NONE);
11 addr = make_address_i(ctx, addr, a->imm);
14 gen_set_gpr(a->rd, dest, EXT_NONE);
18 static bool gen_store(DisasContext *ctx, arg_rr_i *a, MemOp mop)
20 TCGv data = gpr_src(ctx, a->rd, EXT_NONE);
21 TCGv addr = gpr_src(ctx, a->rj, EXT_NONE);
23 addr = make_address_i(ctx, addr, a->imm);
29 static bool gen_loadx(DisasContext *ctx, arg_rrr *a, MemOp mop)
[all …]
H A Dtrans_farith.c.inc17 static bool gen_fff(DisasContext *ctx, arg_fff *a,
20 TCGv dest = get_fpr(ctx, a->fd);
21 TCGv src1 = get_fpr(ctx, a->fj);
22 TCGv src2 = get_fpr(ctx, a->fk);
27 set_fpr(a->fd, dest);
32 static bool gen_ff(DisasContext *ctx, arg_ff *a,
35 TCGv dest = get_fpr(ctx, a->fd);
36 TCGv src = get_fpr(ctx, a->fj);
41 set_fpr(a->fd, dest);
46 static bool gen_muladd(DisasContext *ctx, arg_ffff *a,
[all …]
/openbmc/linux/arch/x86/math-emu/
H A Dreg_add_sub.c29 int add_sub_specials(FPU_REG const *a, u_char taga, u_char signa,
39 FPU_REG *a = &st(0); in FPU_add() local
43 u_char signa = getsign(a); in FPU_add()
48 expa = exponent(a); in FPU_add()
56 FPU_u_add(a, b, dest, control_w, signa, expa, expb); in FPU_add()
61 diff = a->sigh - b->sigh; /* This works only if the ms bits in FPU_add()
64 diff = a->sigl > b->sigl; in FPU_add()
66 diff = -(a->sigl < b->sigl); in FPU_add()
72 FPU_u_sub(a, b, dest, control_w, signa, in FPU_add()
76 FPU_u_sub(b, a, dest, control_w, signb, in FPU_add()
[all …]
/openbmc/linux/drivers/staging/wlan-ng/
H A Dp80211types.h129 #define P80211DID_MK(a, m, l) ((((u32)(a)) & (m)) << (l)) argument
131 #define P80211DID_MKSECTION(a) P80211DID_MK(a, \ argument
134 #define P80211DID_MKGROUP(a) P80211DID_MK(a, \ argument
137 #define P80211DID_MKITEM(a) P80211DID_MK(a, \ argument
140 #define P80211DID_MKINDEX(a) P80211DID_MK(a, \ argument
143 #define P80211DID_MKISTABLE(a) P80211DID_MK(a, \ argument
147 #define P80211DID_MKID(s, g, i, n, t, a) (P80211DID_MKSECTION(s) | \ argument
152 (a))
154 #define P80211DID_GET(a, m, l) ((((u32)(a)) >> (l)) & (m)) argument
156 #define P80211DID_SECTION(a) P80211DID_GET(a, \ argument
[all …]
/openbmc/u-boot/arch/sh/include/asm/
H A Dbitops.h17 volatile unsigned int *a = addr; in set_bit() local
20 a += nr >> 5; in set_bit()
23 *a |= mask; in set_bit()
35 volatile unsigned int *a = addr; in clear_bit() local
38 a += nr >> 5; in clear_bit()
41 *a &= ~mask; in clear_bit()
48 volatile unsigned int *a = addr; in change_bit() local
51 a += nr >> 5; in change_bit()
54 *a ^= mask; in change_bit()
61 volatile unsigned int *a = addr; in test_and_set_bit() local
[all …]
/openbmc/linux/drivers/net/wireless/marvell/mwifiex/
H A Dsdio.h95 #define MP_TX_AGGR_IN_PROGRESS(a) (a->mpa_tx.pkt_cnt > 0) argument
98 #define MP_TX_AGGR_BUF_HAS_ROOM(a, len) ((a->mpa_tx.buf_len+len) \ argument
99 <= a->mpa_tx.buf_size)
102 #define MP_TX_AGGR_BUF_PUT(a, payload, pkt_len, port) do { \ argument
103 memmove(&a->mpa_tx.buf[a->mpa_tx.buf_len], \
105 a->mpa_tx.buf_len += pkt_len; \
106 if (!a->mpa_tx.pkt_cnt) \
107 a->mpa_tx.start_port = port; \
108 if (a->mpa_tx.start_port <= port) \
109 a->mpa_tx.ports |= (1<<(a->mpa_tx.pkt_cnt)); \
[all …]
/openbmc/linux/include/net/tc_act/
H A Dtc_ct.h39 #define to_ct(a) ((struct tcf_ct *)a) argument
40 #define to_ct_params(a) \ argument
42 rcu_dereference_protected(to_ct(a)->params, \
43 lockdep_is_held(&a->tcfa_lock)))
45 static inline uint16_t tcf_ct_zone(const struct tc_action *a) in tcf_ct_zone() argument
47 return to_ct_params(a)->zone; in tcf_ct_zone()
50 static inline int tcf_ct_action(const struct tc_action *a) in tcf_ct_action() argument
52 return to_ct_params(a)->ct_action; in tcf_ct_action()
55 static inline struct nf_flowtable *tcf_ct_ft(const struct tc_action *a) in tcf_ct_ft() argument
57 return to_ct_params(a)->nf_ft; in tcf_ct_ft()
[all …]
/openbmc/qemu/target/riscv/insn_trans/
H A Dtrans_rvv.c.inc14 * You should have received a copy of the GNU General Public License along with
125 * A destination vector register group can overlap a source vector
136 * * Destination vector register group does not overlap a source vector
212 static bool trans_vsetvl(DisasContext *s, arg_vsetvl *a)
214 TCGv s2 = get_gpr(s, a->rs2, EXT_ZERO);
215 return do_vsetvl(s, a->rd, a->rs1, s2);
218 static bool trans_vsetvli(DisasContext *s, arg_vsetvli *a)
220 TCGv s2 = tcg_constant_tl(a->zimm);
221 return do_vsetvl(s, a->rd, a->rs1, s2);
224 static bool trans_vsetivli(DisasContext *s, arg_vsetivli *a)
[all …]
/openbmc/qemu/accel/tcg/
H A Dtcg-runtime-gvec.c39 void HELPER(gvec_add8)(void *d, void *a, void *b, uint32_t desc) in HELPER()
45 *(uint8_t *)(d + i) = *(uint8_t *)(a + i) + *(uint8_t *)(b + i); in HELPER()
50 void HELPER(gvec_add16)(void *d, void *a, void *b, uint32_t desc) in HELPER()
56 *(uint16_t *)(d + i) = *(uint16_t *)(a + i) + *(uint16_t *)(b + i); in HELPER()
61 void HELPER(gvec_add32)(void *d, void *a, void *b, uint32_t desc) in HELPER()
67 *(uint32_t *)(d + i) = *(uint32_t *)(a + i) + *(uint32_t *)(b + i); in HELPER()
72 void HELPER(gvec_add64)(void *d, void *a, void *b, uint32_t desc) in HELPER()
78 *(uint64_t *)(d + i) = *(uint64_t *)(a + i) + *(uint64_t *)(b + i); in HELPER()
83 void HELPER(gvec_adds8)(void *d, void *a, uint64_t b, uint32_t desc) in HELPER()
89 *(uint8_t *)(d + i) = *(uint8_t *)(a + i) + (uint8_t)b; in HELPER()
[all …]
/openbmc/u-boot/arch/microblaze/include/asm/
H A Dbitops.h38 int * a = (int *) addr; in set_bit() local
42 a += nr >> 5; in set_bit()
45 *a |= mask; in set_bit()
51 int * a = (int *) addr; in __set_bit() local
54 a += nr >> 5; in __set_bit()
56 *a |= mask; in __set_bit()
68 int * a = (int *) addr; in clear_bit() local
72 a += nr >> 5; in clear_bit()
75 *a &= ~mask; in clear_bit()
108 volatile unsigned int *a = (volatile unsigned int *) addr; in test_and_set_bit() local
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-fsl-layerscape/
H A Dsoc.h21 #define gur_in32(a) in_le32(a) argument
22 #define gur_out32(a, v) out_le32(a, v) argument
24 #define gur_in32(a) in_be32(a) argument
25 #define gur_out32(a, v) out_be32(a, v) argument
29 #define scfg_in32(a) in_le32(a) argument
30 #define scfg_out32(a, v) out_le32(a, v) argument
34 #define scfg_in32(a) in_be32(a) argument
35 #define scfg_out32(a, v) out_be32(a, v) argument
41 #define pex_lut_in32(a) in_le32(a) argument
42 #define pex_lut_out32(a, v) out_le32(a, v) argument
[all …]
/openbmc/linux/arch/sh/include/asm/
H A Dbitops-llsc.h8 volatile unsigned int *a = addr; in set_bit() local
11 a += nr >> 5; in set_bit()
21 : "r" (a), "r" (mask) in set_bit()
29 volatile unsigned int *a = addr; in clear_bit() local
32 a += nr >> 5; in clear_bit()
42 : "r" (a), "r" (~mask) in clear_bit()
50 volatile unsigned int *a = addr; in change_bit() local
53 a += nr >> 5; in change_bit()
63 : "r" (a), "r" (mask) in change_bit()
71 volatile unsigned int *a = addr; in test_and_set_bit() local
[all …]
H A Dbitops-grb.h8 volatile unsigned int *a = addr; in set_bit() local
11 a += nr >> 5; in set_bit()
24 "+r" (a) in set_bit()
32 volatile unsigned int *a = addr; in clear_bit() local
35 a += nr >> 5; in clear_bit()
47 "+r" (a) in clear_bit()
55 volatile unsigned int *a = addr; in change_bit() local
58 a += nr >> 5; in change_bit()
70 "+r" (a) in change_bit()
78 volatile unsigned int *a = addr; in test_and_set_bit() local
[all …]
/openbmc/linux/crypto/
H A Dsm3.c38 #define R(i, a, b, c, d, e, f, g, h, t, w1, w2) \ argument
40 ss1 = rol32((rol32((a), 12) + (e) + (t)), 7); \
41 ss2 = ss1 ^ rol32((a), 12); \
42 d += FF ## i(a, b, c) + ss2 + ((w1) ^ (w2)); \
49 #define R1(a, b, c, d, e, f, g, h, t, w1, w2) \ argument
50 R(1, a, b, c, d, e, f, g, h, t, w1, w2)
51 #define R2(a, b, c, d, e, f, g, h, t, w1, w2) \ argument
52 R(2, a, b, c, d, e, f, g, h, t, w1, w2)
74 u32 a, b, c, d, e, f, g, h, ss1, ss2; in sm3_transform() local
76 a = sctx->state[0]; in sm3_transform()
[all …]
/openbmc/linux/tools/lib/
H A Dlist_sort.c16 struct list_head *a, struct list_head *b) in merge() argument
22 if (cmp(priv, a, b) <= 0) { in merge()
23 *tail = a; in merge()
24 tail = &a->next; in merge()
25 a = a->next; in merge()
26 if (!a) { in merge()
35 *tail = a; in merge()
52 struct list_head *a, struct list_head *b) in merge_final() argument
59 if (cmp(priv, a, b) <= 0) { in merge_final()
60 tail->next = a; in merge_final()
[all …]

12345678910>>...705