Home
last modified time | relevance | path

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

/external/rust/crates/ring/crypto/limbs/
Dlimbs.c164 crypto_word LIMBS_window5_split_window(Limb lower_limb, Limb higher_limb, size_t index_within_word)… in LIMBS_window5_split_window() argument
165 Limb high_bits = (higher_limb << (LIMB_BITS - index_within_word)) in LIMBS_window5_split_window()
170 Limb low_bits = lower_limb >> index_within_word; in LIMBS_window5_split_window()
174 crypto_word LIMBS_window5_unsplit_window(Limb limb, size_t index_within_word) { in LIMBS_window5_unsplit_window() argument
175 return (limb >> index_within_word) & FIVE_BITS_MASK; in LIMBS_window5_unsplit_window()
/external/rust/crates/ring/src/
Dlimb.rs285 index_within_word: BitIndex, in fold_5_bit_windows()
287 fn LIMBS_window5_unsplit_window(limb: Limb, index_within_word: BitIndex) -> Window; in fold_5_bit_windows()