Home
last modified time | relevance | path

Searched refs:rotate_right (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/num-traits/src/
Dint.rs169 fn rotate_right(self, n: u32) -> Self; in rotate_right() method
435 fn rotate_right(self, n: u32) -> Self {
436 <$T>::rotate_right(self, n)
/third_party/f2fs-tools/fsck/
Ddict.c111 static void rotate_right(dnode_t *upper) in rotate_right() function
604 rotate_right(grandpa); in dict_insert()
617 rotate_right(parent); in dict_insert()
757 rotate_right(sister); in dict_delete()
774 rotate_right(parent); in dict_delete()
794 rotate_right(parent); in dict_delete()
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs9795 v.rotate_right(0);
9797 v.rotate_right(expected.len());
9800 zst_array.rotate_right(2);
9804 v.rotate_right(5);
9811 v.rotate_right(2);
9814 v.rotate_right(998);
9819 v.rotate_right(389);
12575 v.rotate_right(0);
12578 v.rotate_right(10);
12582 v.rotate_right(3);
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dicons.dart2294 /// <i class="material-icons md-36">rotate_right</i> &#x2014; material icon named "rotate right".
2295 static const IconData rotate_right = IconData(0xe41a, fontFamily: 'MaterialIcons');
/third_party/libabigail/tests/lib/
Dcatch.hpp12224 uint32_t rotate_right(uint32_t val, uint32_t count) { in rotate_right() function
12258 const auto output = rotate_right(xorshifted, m_state >> 59u); in operator ()()