Home
last modified time | relevance | path

Searched refs:rh (Results 1 – 6 of 6) sorted by relevance

/include/linux/
Ddm-region-hash.h46 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 …]
Dmath64.h204 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local
213 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr()
221 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr()
222 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr()
231 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr()
232 return rh.ll >> (shift & 63); in mul_u64_u64_shr()
268 } u, rl, rh; in mul_u64_u32_div() local
272 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div()
275 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div()
280 rl.l.high = rh.l.low; in mul_u64_u32_div()
Drethook.h61 void rethook_stop(struct rethook *rh);
62 void rethook_free(struct rethook *rh);
63 struct rethook_node *rethook_try_get(struct rethook *rh);
Dkprobes.h154 struct rethook *rh; member
/include/linux/fsl/bestcomm/
Dsram.h28 rh_info_t *rh; member
/include/math-emu/
Dop-2.h147 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \
148 (rh = xh + yh + ((rl = xl + yl) < xl))
151 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \
152 (rh = xh - yh - ((rl = xl - yl) > xl))