Searched refs:rotate_left (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/cxx/src/ |
D | sip.rs | 48 $v1 = $v1.rotate_left(13); 50 $v0 = $v0.rotate_left(32); 52 $v3 = $v3.rotate_left(16); 55 $v3 = $v3.rotate_left(21); 58 $v1 = $v1.rotate_left(17); 60 $v2 = $v2.rotate_left(32);
|
/third_party/rust/crates/num-traits/src/ |
D | int.rs | 154 fn rotate_left(self, n: u32) -> Self; in rotate_left() method 430 fn rotate_left(self, n: u32) -> Self { 431 <$T>::rotate_left(self, n)
|
/third_party/f2fs-tools/fsck/ |
D | dict.c | 83 static void rotate_left(dnode_t *upper) in rotate_left() function 597 rotate_left(parent); in dict_insert() 623 rotate_left(grandpa); in dict_insert() 744 rotate_left(parent); in dict_delete() 764 rotate_left(parent); in dict_delete() 787 rotate_left(sister); in dict_delete()
|
/third_party/flutter/skia/src/core/ |
D | SkMD5.cpp | 118 static inline uint32_t rotate_left(uint32_t x, uint8_t n) { in rotate_left() function 125 a = b + rotate_left(a + operation(b, c, d) + x + t, s); in operation()
|
/third_party/skia/src/core/ |
D | SkMD5.cpp | 118 static inline uint32_t rotate_left(uint32_t x, uint8_t n) { in rotate_left() function 125 a = b + rotate_left(a + operation(b, c, d) + x + t, s); in operation()
|
/third_party/rust/crates/rustc-hash/src/ |
D | lib.rs | 79 self.hash = self.hash.rotate_left(5).bitxor(i).wrapping_mul(K); in add_to_hash()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 2384 b.iter(|| black_box(&mut v).rotate_left(($mid * 8 + size - 1) / size)); 9760 v.rotate_left(0); 9762 v.rotate_left(expected.len()); 9765 zst_array.rotate_left(2); 9769 v.rotate_left(8); 9776 v.rotate_left(998); 9779 v.rotate_left(2); 9784 v.rotate_left(1000 - 389); 12569 v.rotate_left(0); 12572 v.rotate_left(10); [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | icons.dart | 2291 /// <i class="material-icons md-36">rotate_left</i> — material icon named "rotate left". 2292 static const IconData rotate_left = IconData(0xe419, fontFamily: 'MaterialIcons');
|