/openbmc/linux/include/media/i2c/ |
H A D | lm3560.h | 26 #define LM3560_FLASH_BRT_uA_TO_REG(a) \ argument 27 ((a) < LM3560_FLASH_BRT_MIN ? 0 : \ 29 #define LM3560_FLASH_BRT_REG_TO_uA(a) \ argument 30 ((a) * LM3560_FLASH_BRT_STEP + LM3560_FLASH_BRT_MIN) 38 #define LM3560_FLASH_TOUT_ms_TO_REG(a) \ argument 39 ((a) < LM3560_FLASH_TOUT_MIN ? 0 : \ 41 #define LM3560_FLASH_TOUT_REG_TO_ms(a) \ argument 50 #define LM3560_TORCH_BRT_uA_TO_REG(a) \ argument 51 ((a) < LM3560_TORCH_BRT_MIN ? 0 : \ 53 #define LM3560_TORCH_BRT_REG_TO_uA(a) \ argument [all …]
|
/openbmc/qemu/target/loongarch/tcg/insn_trans/ |
H A D | trans_memory.c.inc | 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); 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); 37 gen_set_gpr(a->rd, dest, EXT_NONE); 63 gen_set_gpr(a->rd, dest, EXT_NONE); 77 gen_set_gpr(a->rd, dest, EXT_NONE); [all …]
|
H A D | trans_farith.c.inc | 20 TCGv dest = get_fpr(ctx, a->fd); 21 TCGv src1 = get_fpr(ctx, a->fj); 27 set_fpr(a->fd, dest); 41 set_fpr(a->fd, dest); 59 set_fpr(a->fd, dest); 77 set_fpr(a->fd, dest); 95 set_fpr(a->fd, dest); 113 set_fpr(a->fd, dest); 130 set_fpr(a->fd, dest); 148 set_fpr(a->fd, dest); [all …]
|
H A D | trans_extra.c.inc | 20 TCGv src1 = gpr_src(ctx, a->rj, EXT_NONE); 21 TCGv src2 = gpr_src(ctx, a->rk, EXT_NONE); 33 TCGv src1 = gpr_src(ctx, a->rj, EXT_NONE); 34 TCGv src2 = gpr_src(ctx, a->rk, EXT_NONE); 47 TCGv dst1 = gpr_dst(ctx, a->rd, EXT_NONE); 48 TCGv dst2 = gpr_dst(ctx, a->rj, EXT_NONE); 62 return gen_rdtime(ctx, a, 1, 0); 67 return gen_rdtime(ctx, a, 1, 1); 72 return gen_rdtime(ctx, a, 0, 0); 81 gen_set_gpr(a->rd, dest, EXT_NONE); [all …]
|
/openbmc/linux/tools/testing/selftests/proc/ |
H A D | proc-self-map-files-002.c | 31 snprintf(name, sizeof(name), fmt, a, b); in pass() 41 snprintf(name, sizeof(name), fmt, a, b); in fail() 58 unsigned long a, b; in main() local 74 a = (unsigned long)p; in main() 77 pass("/proc/self/map_files/%lx-%lx", a, b); in main() 78 fail("/proc/self/map_files/ %lx-%lx", a, b); in main() 79 fail("/proc/self/map_files/%lx -%lx", a, b); in main() 80 fail("/proc/self/map_files/%lx- %lx", a, b); in main() 81 fail("/proc/self/map_files/%lx-%lx ", a, b); in main() 82 fail("/proc/self/map_files/0%lx-%lx", a, b); in main() [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | translate-m-nocp.c | 44 if (a->op) { in trans_VLLDM_VLSTM() 87 if (a->l) { in trans_VLLDM_VLSTM() 148 topreg = a->vd + a->imm - 1; in trans_VSCCLRM() 609 if (a->l && a->reg == ARM_VFP_FPSCR) { in trans_VMSR_VMRS() 616 if (a->l) { in trans_VMSR_VMRS() 632 if (!a->a) { in fp_sysreg_to_memory() 641 if (a->p) { in fp_sysreg_to_memory() 645 if (s->v8m_stackcheck && a->rn == 13 && a->w) { in fp_sysreg_to_memory() 671 if (!a->a) { in memory_to_fp_sysreg() 684 if (s->v8m_stackcheck && a->rn == 13 && a->w) { in memory_to_fp_sysreg() [all …]
|
/openbmc/u-boot/arch/microblaze/include/asm/ |
H A D | bitops.h | 42 a += nr >> 5; in set_bit() 45 *a |= mask; in set_bit() 54 a += nr >> 5; in __set_bit() 56 *a |= mask; in __set_bit() 72 a += nr >> 5; in clear_bit() 75 *a &= ~mask; in clear_bit() 115 *a |= mask; in test_and_set_bit() 129 *a |= mask; in __test_and_set_bit() 143 *a &= ~mask; in test_and_clear_bit() 171 *a ^= mask; in test_and_change_bit() [all …]
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | local.h | 14 atomic_long_t a; member 24 #define local_inc(l) atomic_long_inc(&(l)->a) 48 : "Ir" (i), "m" (l->a.counter) in local_add_return() 54 result = l->a.counter; in local_add_return() 56 l->a.counter = result; in local_add_return() 82 : "Ir" (i), "m" (l->a.counter) in local_sub_return() 88 result = l->a.counter; in local_sub_return() 90 l->a.counter = result; in local_sub_return() 104 return try_cmpxchg_local(&l->a.counter, in local_try_cmpxchg() 105 (typeof(l->a.counter) *) old, new); in local_try_cmpxchg() [all …]
|
/openbmc/qemu/tests/tcg/s390x/ |
H A D | mxdb.c | 14 } a; in main() local 17 a.d[0] = 1.2345; in main() 18 a.d[1] = 999; in main() 20 asm("mxdb %[a],%[b]" : [a] "+f" (a.ld) : [b] "R" (b)); in main() 21 assert(a.ld > 8.38 && a.ld < 8.39); in main() 23 a.d[0] = 1.2345; in main() 24 a.d[1] = 999; in main() 26 asm("mxdbr %[a],%[b]" : [a] "+f" (a.ld) : [b] "f" (b)); in main() 27 assert(a.ld > 8.38 && a.ld < 8.39); in main()
|
H A D | mdeb.c | 14 } a; in main() local 17 a.f[0] = 1.2345; in main() 18 a.f[1] = 999; in main() 20 asm("mdeb %[a],%[b]" : [a] "+f" (a.d) : [b] "R" (b)); in main() 21 assert(a.d > 8.38 && a.d < 8.39); in main() 23 a.f[0] = 1.2345; in main() 24 a.f[1] = 999; in main() 26 asm("mdebr %[a],%[b]" : [a] "+f" (a.d) : [b] "f" (b)); in main() 27 assert(a.d > 8.38 && a.d < 8.39); in main()
|
/openbmc/linux/drivers/media/pci/zoran/ |
H A D | videocodec.c | 82 if (!a) { in videocodec_attach() 87 a = a->next; // find end in videocodec_attach() 132 a = h->list; in videocodec_detach() 134 while (a) { in videocodec_detach() 136 res = a->codec->unset(a->codec); in videocodec_detach() 153 kfree(a); in videocodec_detach() 157 prev = a; in videocodec_detach() 158 a = a->next; in videocodec_detach() 264 a = h->list; in videocodec_debugfs_show() 265 while (a) { in videocodec_debugfs_show() [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-bufferiszero.c | 28 size_t s, a, o; in test_1() local 39 for (a = 1; a <= 64; a++) { in test_1() 41 buffer[a - 1] = 1; in test_1() 42 buffer[a + s] = 1; in test_1() 43 g_assert(buffer_is_zero(buffer + a, s)); in test_1() 44 buffer[a - 1] = 0; in test_1() 45 buffer[a + s] = 0; in test_1() 50 for (a = 1; a <= 64; a++) { in test_1() 53 buffer[a + o] = 1; in test_1() 54 g_assert(!buffer_is_zero(buffer + a, s)); in test_1() [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | sha256-avx2-asm.S | 165 rorx $13, a, T1 # T1 = a >> 13 # S0B 174 rorx $22, a, y1 # y1 = a >> 22 # S0A 180 rorx $2, a, T1 # T1 = (a >> 2) # S0 184 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 235 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 288 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 343 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 379 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 418 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 458 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 [all …]
|
H A D | sha512-avx2-asm.S | 188 rorx $34, a, T1 # T1 = a >> 34 # S0B 196 rorx $39, a, y1 # y1 = a >> 39 # S0A 201 rorx $28, a, T1 # T1 = (a >> 28) # S0 204 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 269 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 326 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 388 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 426 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 464 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 502 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/vpnc/vpnc/ |
H A D | 0009-reduce-lifetime-value.patch | 20 diff --git a/vpnc.c b/vpnc.c 22 --- a/vpnc.c 25 a->af = isakmp_attr_lots; 26 a->u.lots.length = 4; 27 a->u.lots.data = xallocc(a->u.lots.length); 30 a = new_isakmp_attribute_16(IKE_ATTRIB_LIFE_TYPE, IKE_LIFE_TYPE_SECONDS, a); 31 a = new_isakmp_attribute_16(IKE_ATTRIB_AUTH_METHOD, auth, a); 32 a = new_isakmp_attribute_16(IKE_ATTRIB_GROUP_DESC, dh_group, a); 34 a->af = isakmp_attr_lots; 35 a->u.lots.length = 4; [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery.dataTables-1.13.8.min.js | 4 …a;"function"==typeof define&&define.amd?define(["jquery"],function(t){return n(t,window,document)}… argument
|
/openbmc/linux/include/net/tc_act/ |
H A D | tc_tunnel_key.h | 25 #define to_tunnel_key(a) ((struct tcf_tunnel_key *)a) argument 30 struct tcf_tunnel_key *t = to_tunnel_key(a); in is_tcf_tunnel_set() 34 lockdep_is_held(&a->tcfa_lock)); in is_tcf_tunnel_set() 35 if (a->ops && a->ops->id == TCA_ID_TUNNEL_KEY) in is_tcf_tunnel_set() 44 struct tcf_tunnel_key *t = to_tunnel_key(a); in is_tcf_tunnel_release() 48 lockdep_is_held(&a->tcfa_lock)); in is_tcf_tunnel_release() 49 if (a->ops && a->ops->id == TCA_ID_TUNNEL_KEY) in is_tcf_tunnel_release() 58 struct tcf_tunnel_key *t = to_tunnel_key(a); in tcf_tunnel_info() 62 lockdep_is_held(&a->tcfa_lock)); in tcf_tunnel_info() 71 tcf_tunnel_info_copy(const struct tc_action *a) in tcf_tunnel_info_copy() argument [all …]
|
H A D | tc_pedit.h | 28 #define to_pedit(a) ((struct tcf_pedit *)a) argument 29 #define to_pedit_parms(a) (rcu_dereference(to_pedit(a)->parms)) argument 31 static inline bool is_tcf_pedit(const struct tc_action *a) in is_tcf_pedit() argument 34 if (a->ops && a->ops->id == TCA_ID_PEDIT) in is_tcf_pedit() 40 static inline int tcf_pedit_nkeys(const struct tc_action *a) in tcf_pedit_nkeys() argument 46 parms = to_pedit_parms(a); in tcf_pedit_nkeys() 59 parms = to_pedit_parms(a); in tcf_pedit_htype() 73 parms = to_pedit_parms(a); in tcf_pedit_cmd() 87 parms = to_pedit_parms(a); in tcf_pedit_mask() 100 parms = to_pedit_parms(a); in tcf_pedit_val() [all …]
|
/openbmc/linux/arch/mips/include/asm/mach-generic/ |
H A D | mangle-port.h | 30 # define ioswabb(a, x) (x) argument 31 # define __mem_ioswabb(a, x) (x) argument 32 # define ioswabw(a, x) le16_to_cpu((__force __le16)(x)) argument 33 # define __mem_ioswabw(a, x) (x) argument 35 # define __mem_ioswabl(a, x) (x) argument 37 # define __mem_ioswabq(a, x) (x) argument 41 # define ioswabb(a, x) (x) argument 42 # define __mem_ioswabb(a, x) (x) argument 43 # define ioswabw(a, x) (x) argument 45 # define ioswabl(a, x) (x) argument [all …]
|
/openbmc/linux/include/asm-generic/ |
H A D | local.h | 24 atomic_long_t a; member 29 #define local_read(l) atomic_long_read(&(l)->a) 30 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) 31 #define local_inc(l) atomic_long_inc(&(l)->a) 32 #define local_dec(l) atomic_long_dec(&(l)->a) 33 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) 34 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) 37 #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a) 38 #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a) 42 #define local_inc_return(l) atomic_long_inc_return(&(l)->a) [all …]
|
/openbmc/linux/fs/reiserfs/ |
H A D | hashes.c | 49 u32 a, b, c, d; in keyed_hash() local 113 a <<= 8; in keyed_hash() 131 u32 a, c; in yura_hash() local 146 a = a + c * pow; in yura_hash() 153 a = a + c * pow; in yura_hash() 160 a = a + c * pow; in yura_hash() 163 a = a << 7; in yura_hash() 164 return a; in yura_hash() 169 u32 a = 0; in r5_hash() local 173 a *= 11; in r5_hash() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/freediameter/files/ |
H A D | Replace-murmurhash-algorithm-with-Robert-Jenkin-s-ha.patch | 35 + a = a - b; a = a - c; a = a ^ (c >> 13); \ 36 + b = b - c; b = b - a; b = b ^ (a << 8); \ 38 + a = a - b; a = a - c; a = a ^ (c >> 12); \ 39 + b = b - c; b = b - a; b = b ^ (a << 16); \ 41 + a = a - b; a = a - c; a = a ^ (c >> 3); \ 42 + b = b - c; b = b - a; b = b ^ (a << 10); \ 161 + b = a; 196 + a = a + ((uint32_t)k[3] << 24); 198 + a = a + ((uint32_t)k[2] << 16); 200 + a = a + ((uint32_t)k[1] << 8); [all …]
|
/openbmc/linux/crypto/ |
H A D | sm3.c | 41 ss2 = ss1 ^ rol32((a), 12); \ 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() 85 R1(a, b, c, d, e, f, g, h, K[0], I(0), I(4)); in sm3_transform() 86 R1(d, a, b, c, h, e, f, g, K[1], I(1), I(5)); in sm3_transform() 87 R1(c, d, a, b, g, h, e, f, K[2], I(2), I(6)); in sm3_transform() [all …]
|
/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_rvbf16.c.inc | 42 TCGv_i64 dest = dest_fpr(ctx, a->rd); 43 TCGv_i64 src1 = get_fpr_hs(ctx, a->rs1); 45 gen_set_rm(ctx, a->rm); 47 gen_set_fpr_hs(ctx, a->rd, dest); 57 TCGv_i64 dest = dest_fpr(ctx, a->rd); 58 TCGv_i64 src1 = get_fpr_hs(ctx, a->rs1); 60 gen_set_rm(ctx, a->rm); 62 gen_set_fpr_hs(ctx, a->rd, dest); 123 vext_check_dss(ctx, a->rd, a->rs1, a->rs2, a->vm)) { 150 vext_check_ds(ctx, a->rd, a->rs2, a->vm)) { [all …]
|
/openbmc/qemu/accel/tcg/ |
H A D | tcg-runtime-gvec.c | 353 int8_t aa = *(int8_t *)(a + i); in HELPER() 365 int16_t aa = *(int16_t *)(a + i); in HELPER() 377 int32_t aa = *(int32_t *)(a + i); in HELPER() 389 int64_t aa = *(int64_t *)(a + i); in HELPER() 399 memcpy(d, a, oprsz); in HELPER() 1111 int32_t ai = *(int32_t *)(a + i); in HELPER() 1128 int64_t ai = *(int64_t *)(a + i); in HELPER() 1179 int32_t ai = *(int32_t *)(a + i); in HELPER() 1196 int64_t ai = *(int64_t *)(a + i); in HELPER() 1341 int8_t aa = *(int8_t *)(a + i); in HELPER() [all …]
|