Searched refs:rh (Results 1 – 4 of 4) sorted by relevance
/include/linux/ |
D | dm-region-hash.h | 43 void dm_region_hash_destroy(struct dm_region_hash *rh); 45 struct dm_dirty_log *dm_rh_dirty_log(struct dm_region_hash *rh); 50 region_t dm_rh_bio_to_region(struct dm_region_hash *rh, struct bio *bio); 51 sector_t dm_rh_region_to_sector(struct dm_region_hash *rh, region_t region); 57 sector_t dm_rh_get_region_size(struct dm_region_hash *rh); 64 int dm_rh_get_state(struct dm_region_hash *rh, region_t region, int may_block); 65 void dm_rh_set_state(struct dm_region_hash *rh, region_t region, 69 void dm_rh_update_states(struct dm_region_hash *rh, int errors_handled); 72 int dm_rh_flush(struct dm_region_hash *rh); 75 void dm_rh_inc_pending(struct dm_region_hash *rh, struct bio_list *bios); [all …]
|
D | math64.h | 221 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local 230 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr() 238 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 239 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 248 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr() 249 return rh.ll >> (shift & 63); in mul_u64_u64_shr() 267 } u, rl, rh; in mul_u64_u32_div() local 271 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div() 274 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div() 279 rl.l.high = rh.l.low; in mul_u64_u32_div()
|
/include/linux/fsl/bestcomm/ |
D | sram.h | 28 rh_info_t *rh; member
|
/include/math-emu/ |
D | op-2.h | 147 #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))
|