Home
last modified time | relevance | path

Searched refs:R (Results 1 – 2 of 2) sorted by relevance

/lib/crypto/
Ddes.c516 #define IP(L, R, T) \ argument
517 ROL(R, 4); \
519 L ^= R; \
521 R ^= L; \
523 ROL(R, 12); \
525 L ^= R; \
527 R ^= L; \
529 ROR(R, 14); \
531 L ^= R; \
533 R ^= L; \
[all …]
/lib/math/
Dreciprocal_div.c15 struct reciprocal_value R; in reciprocal_value() local
23 R.m = (u32)m; in reciprocal_value()
24 R.sh1 = min(l, 1); in reciprocal_value()
25 R.sh2 = max(l - 1, 0); in reciprocal_value()
27 return R; in reciprocal_value()
33 struct reciprocal_value_adv R; in reciprocal_value_adv() local
62 R.m = (u32)mhigh; in reciprocal_value_adv()
63 R.sh = post_shift; in reciprocal_value_adv()
64 R.exp = l; in reciprocal_value_adv()
65 R.is_wide_m = mhigh > U32_MAX; in reciprocal_value_adv()
[all …]