/openbmc/linux/drivers/md/ |
H A D | dm-region-hash.c | 106 struct dm_region_hash *rh; /* FIXME: can we get rid of this ? */ member 120 static region_t dm_rh_sector_to_region(struct dm_region_hash *rh, sector_t sector) in dm_rh_sector_to_region() argument 122 return sector >> rh->region_shift; in dm_rh_sector_to_region() 125 sector_t dm_rh_region_to_sector(struct dm_region_hash *rh, region_t region) in dm_rh_region_to_sector() argument 127 return region << rh->region_shift; in dm_rh_region_to_sector() 131 region_t dm_rh_bio_to_region(struct dm_region_hash *rh, struct bio *bio) in dm_rh_bio_to_region() argument 133 return dm_rh_sector_to_region(rh, bio->bi_iter.bi_sector - in dm_rh_bio_to_region() 134 rh->target_begin); in dm_rh_bio_to_region() 140 return reg->rh->context; in dm_rh_region_context() 150 sector_t dm_rh_get_region_size(struct dm_region_hash *rh) in dm_rh_get_region_size() argument [all …]
|
H A D | dm-raid1.c | 70 struct dm_region_hash *rh; member 342 sector_t region_size = dm_rh_get_region_size(ms->rh); in recover() 347 from.sector = m->offset + dm_rh_region_to_sector(ms->rh, key); in recover() 366 dest->sector = m->offset + dm_rh_region_to_sector(ms->rh, key); in recover() 393 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh); in do_recovery() 398 dm_rh_recovery_prepare(ms->rh); in do_recovery() 403 while ((reg = dm_rh_recovery_start(ms->rh))) in do_recovery() 447 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh); in mirror_available() 448 region_t region = dm_rh_bio_to_region(ms->rh, bio); in mirror_available() 563 int state = dm_rh_get_state(ms->rh, region, may_block); in region_in_sync() [all …]
|
/openbmc/linux/drivers/i3c/master/mipi-i3c-hci/ |
H A D | dma.c | 55 #define rh_reg_read(r) readl(rh->regs + (RH_##r)) 56 #define rh_reg_write(r, v) writel(v, rh->regs + (RH_##r)) 168 struct hci_rh_data *rh; in hci_dma_cleanup() local 175 rh = &rings->headers[i]; in hci_dma_cleanup() 182 if (rh->xfer) in hci_dma_cleanup() 184 rh->xfer_struct_sz * rh->xfer_entries, in hci_dma_cleanup() 185 rh->xfer, rh->xfer_dma); in hci_dma_cleanup() 186 if (rh->resp) in hci_dma_cleanup() 188 rh->resp_struct_sz * rh->xfer_entries, in hci_dma_cleanup() 189 rh->resp, rh->resp_dma); in hci_dma_cleanup() [all …]
|
/openbmc/linux/include/linux/ |
H A D | dm-region-hash.h | 46 void dm_region_hash_destroy(struct dm_region_hash *rh); 48 struct dm_dirty_log *dm_rh_dirty_log(struct dm_region_hash *rh); 53 region_t dm_rh_bio_to_region(struct dm_region_hash *rh, struct bio *bio); 54 sector_t dm_rh_region_to_sector(struct dm_region_hash *rh, region_t region); 60 sector_t dm_rh_get_region_size(struct dm_region_hash *rh); 67 int dm_rh_get_state(struct dm_region_hash *rh, region_t region, int may_block); 68 void dm_rh_set_state(struct dm_region_hash *rh, region_t region, 72 void dm_rh_update_states(struct dm_region_hash *rh, int errors_handled); 75 int dm_rh_flush(struct dm_region_hash *rh); 78 void dm_rh_inc_pending(struct dm_region_hash *rh, struct bio_list *bios); [all …]
|
H A D | math64.h | 208 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local 217 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr() 225 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 226 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 235 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr() 236 return rh.ll >> (shift & 63); in mul_u64_u64_shr() 272 } u, rl, rh; in mul_u64_u32_div() local 276 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div() 279 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div() 284 rl.l.high = rh.l.low; in mul_u64_u32_div()
|
H A D | rethook.h | 67 void rethook_stop(struct rethook *rh); 68 void rethook_free(struct rethook *rh); 69 void rethook_add_node(struct rethook *rh, struct rethook_node *node); 70 struct rethook_node *rethook_try_get(struct rethook *rh);
|
/openbmc/linux/kernel/trace/ |
H A D | rethook.c | 38 struct rethook *rh = container_of(head, struct rethook, rcu); in rethook_free_rcu() local 43 node = rh->pool.head; in rethook_free_rcu() 52 if (refcount_sub_and_test(count, &rh->ref)) in rethook_free_rcu() 53 kfree(rh); in rethook_free_rcu() 64 void rethook_stop(struct rethook *rh) in rethook_stop() argument 66 rcu_assign_pointer(rh->handler, NULL); in rethook_stop() 79 void rethook_free(struct rethook *rh) in rethook_free() argument 81 rethook_stop(rh); in rethook_free() 83 call_rcu(&rh->rcu, rethook_free_rcu); in rethook_free() 86 static inline rethook_handler_t rethook_get_handler(struct rethook *rh) in rethook_get_handler() argument [all …]
|
H A D | fprobe.c | 28 struct rethook_node *rh = NULL; in __fprobe_handler() local 36 rh = rethook_try_get(fp->rethook); in __fprobe_handler() 37 if (!rh) { in __fprobe_handler() 41 fpr = container_of(rh, struct fprobe_rethook_node, node); in __fprobe_handler() 52 if (rh) { in __fprobe_handler() 54 rethook_recycle(rh); in __fprobe_handler() 56 rethook_hook(rh, ftrace_get_regs(fregs), true); in __fprobe_handler() 122 static void fprobe_exit_handler(struct rethook_node *rh, void *data, in fprobe_exit_handler() argument 132 fpr = container_of(rh, struct fprobe_rethook_node, node); in fprobe_exit_handler()
|
/openbmc/u-boot/drivers/bios_emulator/x86emu/ |
H A D | ops2.c | 169 int mod, rl, rh; in x86emuOp2_set_byte() local 245 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp2_set_byte() 293 int mod, rl, rh; in x86emuOp2_bt_R() local 299 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp2_bt_R() 307 shiftreg = DECODE_RM_LONG_REGISTER(rh); in x86emuOp2_bt_R() 318 shiftreg = DECODE_RM_WORD_REGISTER(rh); in x86emuOp2_bt_R() 331 shiftreg = DECODE_RM_LONG_REGISTER(rh); in x86emuOp2_bt_R() 340 shiftreg = DECODE_RM_WORD_REGISTER(rh); in x86emuOp2_bt_R() 356 int mod, rl, rh; in x86emuOp2_shld_IMM() local 362 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp2_shld_IMM() [all …]
|
H A D | ops.c | 206 int mod, rl, rh; in x86emuOp_genop_byte_RM_R() local 216 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp_genop_byte_RM_R() 221 srcreg = DECODE_RM_BYTE_REGISTER(rh); in x86emuOp_genop_byte_RM_R() 231 srcreg = DECODE_RM_BYTE_REGISTER(rh); in x86emuOp_genop_byte_RM_R() 246 int mod, rl, rh; in x86emuOp_genop_word_RM_R() local 254 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp_genop_word_RM_R() 264 srcreg = DECODE_RM_LONG_REGISTER(rh); in x86emuOp_genop_word_RM_R() 275 srcreg = DECODE_RM_WORD_REGISTER(rh); in x86emuOp_genop_word_RM_R() 287 srcreg = DECODE_RM_LONG_REGISTER(rh); in x86emuOp_genop_word_RM_R() 296 srcreg = DECODE_RM_WORD_REGISTER(rh); in x86emuOp_genop_word_RM_R() [all …]
|
/openbmc/linux/crypto/ |
H A D | vmac.c | 104 #define ADD128(rh, rl, ih, il) \ argument 109 (rh)++; \ 110 (rh) += (ih); \ 115 #define PMUL64(rh, rl, i1, i2) /* Assumes m doesn't overflow */ \ argument 119 rh = MUL32(_i1>>32, _i2>>32); \ 121 ADD128(rh, rl, (m >> 32), (m << 32)); \ 124 #define MUL64(rh, rl, i1, i2) \ argument 129 rh = MUL32(_i1>>32, _i2>>32); \ 131 ADD128(rh, rl, (m1 >> 32), (m1 << 32)); \ 132 ADD128(rh, rl, (m2 >> 32), (m2 << 32)); \ [all …]
|
/openbmc/linux/arch/arm64/crypto/ |
H A D | sm3-neon-core.S | 48 #define rh w10 macro 359 ldp rg, rh, [RSTATE, #24] 401 R1(ra, rb, rc, rd, re, rf, rg, rh, k_even, KL, 0, 0, IW, _, 0) 402 R1(rd, ra, rb, rc, rh, re, rf, rg, k_odd, _, 1, 1, IW, _, 0) 403 R1(rc, rd, ra, rb, rg, rh, re, rf, k_even, KL, 2, 2, IW, _, 0) 404 R1(rb, rc, rd, ra, rf, rg, rh, re, k_odd, _, 3, 3, IW, _, 0) 407 R1(ra, rb, rc, rd, re, rf, rg, rh, k_even, KL, 4, 0, IW, _, 0) 408 R1(rd, ra, rb, rc, rh, re, rf, rg, k_odd, _, 5, 1, IW, _, 0) 409 R1(rc, rd, ra, rb, rg, rh, re, rf, k_even, KL, 6, 2, IW, SCHED_W_W0W1W2W3W4W5_1, 12) 410 R1(rb, rc, rd, ra, rf, rg, rh, re, k_odd, _, 7, 3, IW, SCHED_W_W0W1W2W3W4W5_2, 12) [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-mul64.c | 15 uint64_t rh, rl; member 43 uint64_t rl, rh; in test_u() local 44 mulu64(&rl, &rh, test_u_data[i].a, test_u_data[i].b); in test_u() 46 g_assert_cmpuint(rh, ==, test_u_data[i].rh); in test_u() 55 uint64_t rl, rh; in test_s() local 56 muls64(&rl, &rh, test_s_data[i].a, test_s_data[i].b); in test_s() 58 g_assert_cmpint(rh, ==, test_s_data[i].rh); in test_s()
|
/openbmc/qemu/target/riscv/ |
H A D | m128_helper.c | 49 target_ulong rl, rh; in HELPER() local 54 rh = uh; in HELPER() 58 rh = int128_gethi(r); in HELPER() 61 env->retxh = rh; in HELPER() 94 target_ulong rh, rl; in HELPER() local 99 rh = uh; in HELPER() 103 rh = int128_gethi(r); in HELPER() 106 env->retxh = rh; in HELPER()
|
/openbmc/u-boot/include/linux/ |
H A D | math64.h | 194 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local 203 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr() 211 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 212 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 221 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr() 222 return rh.ll >> (shift & 63); in mul_u64_u64_shr() 240 } u, rl, rh; in mul_u64_u32_div() local 244 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div() 247 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div() 252 rl.l.high = rh.l.low; in mul_u64_u32_div()
|
/openbmc/linux/drivers/dma/bestcomm/ |
H A D | sram.c | 90 bcom_sram->rh = rh_create(4); in bcom_sram_init() 103 rh_attach_region(bcom_sram->rh, 0, bcom_sram->size); in bcom_sram_init() 108 rh_attach_region(bcom_sram->rh, zbase - bcom_sram->base_phys, regaddr_p[1]); in bcom_sram_init() 133 rh_destroy(bcom_sram->rh); in bcom_sram_cleanup() 147 offset = rh_alloc_align(bcom_sram->rh, size, align, NULL); in bcom_sram_alloc() 168 rh_free(bcom_sram->rh, offset); in bcom_sram_free()
|
/openbmc/linux/net/ipv6/netfilter/ |
H A D | ip6t_rt.c | 34 const struct ipv6_rt_hdr *rh; in rt_mt6() local 51 rh = skb_header_pointer(skb, ptr, sizeof(_route), &_route); in rt_mt6() 52 if (rh == NULL) { in rt_mt6() 57 hdrlen = ipv6_optlen(rh); in rt_mt6() 64 rh->segments_left, in rt_mt6() 70 ((rtinfo->rt_type == rh->type) ^ in rt_mt6()
|
/openbmc/qemu/util/ |
H A D | host-utils.c | 44 LL rl, rm, rn, rh, a0, b0; in mul64() local 53 rh.ll = (uint64_t)a0.l.high * b0.l.high; in mul64() 58 c = c + rm.l.high + rn.l.high + rh.l.low; in mul64() 59 rh.l.low = c; in mul64() 60 rh.l.high += (uint32_t)(c >> 32); in mul64() 63 *phigh = rh.ll; in mul64() 75 uint64_t rh; in muls64() local 77 mul64(plow, &rh, a, b); in muls64() 81 rh -= a; in muls64() 84 rh -= b; in muls64() [all …]
|
/openbmc/linux/drivers/net/ethernet/cavium/liquidio/ |
H A D | octeon_droq.c | 353 recv_pkt->rh = info->rh; in octeon_create_recv_info() 532 union octeon_rh *rh, in octeon_droq_dispatch_pkt() argument 541 disp_fn = octeon_get_dispatch(oct, (u16)rh->r.opcode, in octeon_droq_dispatch_pkt() 542 (u16)rh->r.subcode); in octeon_droq_dispatch_pkt() 550 rinfo->recv_pkt->rh = *rh; in octeon_droq_dispatch_pkt() 558 (unsigned int)rh->r.opcode, in octeon_droq_dispatch_pkt() 559 (unsigned int)rh->r.subcode); in octeon_droq_dispatch_pkt() 601 union octeon_rh *rh; in octeon_droq_fast_process_packets() local 626 rh = &info->rh; in octeon_droq_fast_process_packets() 629 rh->r_dh.len += (ROUNDUP8(OCT_DROQ_INFO_SIZE) / sizeof(u64)); in octeon_droq_fast_process_packets() [all …]
|
/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_rvm.c.inc | 50 static void gen_mul_i128(TCGv rl, TCGv rh, 58 tcg_gen_mulu2_tl(rl, rh, rs1l, rs2l); 60 tcg_gen_add2_tl(rh, tmpx, rh, zero, tmpl, tmph); 62 tcg_gen_add2_tl(rh, tmph, rh, tmpx, tmpl, tmph); 71 static void gen_mulh_i128(TCGv rl, TCGv rh, 79 gen_mulhu_i128(rl, rh, rs1l, rs1h, rs2l, rs2h); 86 tcg_gen_sub2_tl(t0l, t0h, rl, rh, t0l, t0h); 87 tcg_gen_sub2_tl(rl, rh, t0l, t0h, t1l, t1h); 110 static void gen_mulhsu_i128(TCGv rl, TCGv rh, 117 gen_mulhu_i128(rl, rh, rs1l, rs1h, rs2l, rs2h); [all …]
|
/openbmc/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | hyperv_clock.c | 27 } rm, rn, rh, a0, b0; in mul_u64_u64_shr64() local 35 rh.ll = (u64)a0.l.high * b0.l.high; in mul_u64_u64_shr64() 37 rh.l.low = c = rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr64() 38 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr64() 40 return rh.ll; in mul_u64_u64_shr64()
|
/openbmc/linux/arch/s390/kernel/ |
H A D | rethook.c | 6 void arch_rethook_prepare(struct rethook_node *rh, struct pt_regs *regs, bool mcount) in arch_rethook_prepare() argument 8 rh->ret_addr = regs->gprs[14]; in arch_rethook_prepare() 9 rh->frame = regs->gprs[15]; in arch_rethook_prepare()
|
/openbmc/linux/arch/arm/vfp/ |
H A D | vfp.h | 73 u64 rh, rma, rmb, rl; in mul64to128() local 86 rh = (u64)nh * mh; in mul64to128() 87 rh += ((u64)(rma < rmb) << 32) + (rma >> 32); in mul64to128() 91 rh += (rl < rma); in mul64to128() 94 *resh = rh; in mul64to128() 105 u64 rh, rl; in vfp_hi64multiply64() local 106 mul64to128(&rh, &rl, n, m); in vfp_hi64multiply64() 107 return rh | (rl != 0); in vfp_hi64multiply64()
|
/openbmc/linux/net/dccp/ccids/lib/ |
H A D | loss_interval.c | 138 int tfrc_lh_interval_add(struct tfrc_loss_hist *lh, struct tfrc_rx_hist *rh, in tfrc_lh_interval_add() argument 143 if (cur != NULL && !tfrc_lh_is_new_loss(cur, tfrc_rx_hist_loss_prev(rh))) in tfrc_lh_interval_add() 152 new->li_seqno = tfrc_rx_hist_loss_prev(rh)->tfrchrx_seqno; in tfrc_lh_interval_add() 153 new->li_ccval = tfrc_rx_hist_loss_prev(rh)->tfrchrx_ccval; in tfrc_lh_interval_add() 161 tfrc_rx_hist_last_rcv(rh)->tfrchrx_seqno) + 1; in tfrc_lh_interval_add()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/openhpi/files/ |
H A D | openhpi.init | 81 nolsb | rh) 107 gentoo | rh) 139 nolsb | rh) 180 gentoo | nolsb | rh)
|