Home
last modified time | relevance | path

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

/linux-4.19.296/include/linux/
Ddm-region-hash.h43 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 …]
Dmath64.h221 } 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()
/linux-4.19.296/crypto/
Dvmac.c103 #define ADD128(rh, rl, ih, il) \ argument
108 (rh)++; \
109 (rh) += (ih); \
114 #define PMUL64(rh, rl, i1, i2) /* Assumes m doesn't overflow */ \ argument
118 rh = MUL32(_i1>>32, _i2>>32); \
120 ADD128(rh, rl, (m >> 32), (m << 32)); \
123 #define MUL64(rh, rl, i1, i2) \ argument
128 rh = MUL32(_i1>>32, _i2>>32); \
130 ADD128(rh, rl, (m1 >> 32), (m1 << 32)); \
131 ADD128(rh, rl, (m2 >> 32), (m2 << 32)); \
[all …]
/linux-4.19.296/include/linux/fsl/bestcomm/
Dsram.h28 rh_info_t *rh; member
/linux-4.19.296/include/math-emu/
Dop-2.h152 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \
153 (rh = xh + yh + ((rl = xl + yl) < xl))
156 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \
157 (rh = xh - yh - ((rl = xl - yl) > xl))
/linux-4.19.296/fs/nfsd/
Dnfscache.c355 struct list_head *rh = &b->lru_head; in nfsd_cache_search() local
358 list_for_each_entry(rp, rh, c_lru) { in nfsd_cache_search()