rustfmt hash submodule

This commit is contained in:
Michael Pankov
2015-10-08 01:03:52 +03:00
parent 17033a62b4
commit 3fbbee6ad5
2 changed files with 27 additions and 15 deletions

View File

@@ -100,7 +100,9 @@ pub trait Hash {
/// Feeds a slice of this type into the state provided. /// Feeds a slice of this type into the state provided.
#[stable(feature = "hash_slice", since = "1.3.0")] #[stable(feature = "hash_slice", since = "1.3.0")]
fn hash_slice<H: Hasher>(data: &[Self], state: &mut H) where Self: Sized { fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
where Self: Sized
{
for piece in data { for piece in data {
piece.hash(state); piece.hash(state);
} }
@@ -121,7 +123,9 @@ pub trait Hasher {
/// Write a single `u8` into this hasher /// Write a single `u8` into this hasher
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_u8(&mut self, i: u8) { self.write(&[i]) } fn write_u8(&mut self, i: u8) {
self.write(&[i])
}
/// Write a single `u16` into this hasher. /// Write a single `u16` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
@@ -145,8 +149,7 @@ pub trait Hasher {
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_usize(&mut self, i: usize) { fn write_usize(&mut self, i: usize) {
let bytes = unsafe { let bytes = unsafe {
::slice::from_raw_parts(&i as *const usize as *const u8, ::slice::from_raw_parts(&i as *const usize as *const u8, mem::size_of::<usize>())
mem::size_of::<usize>())
}; };
self.write(bytes); self.write(bytes);
} }
@@ -154,23 +157,33 @@ pub trait Hasher {
/// Write a single `i8` into this hasher. /// Write a single `i8` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_i8(&mut self, i: i8) { self.write_u8(i as u8) } fn write_i8(&mut self, i: i8) {
self.write_u8(i as u8)
}
/// Write a single `i16` into this hasher. /// Write a single `i16` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_i16(&mut self, i: i16) { self.write_u16(i as u16) } fn write_i16(&mut self, i: i16) {
self.write_u16(i as u16)
}
/// Write a single `i32` into this hasher. /// Write a single `i32` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_i32(&mut self, i: i32) { self.write_u32(i as u32) } fn write_i32(&mut self, i: i32) {
self.write_u32(i as u32)
}
/// Write a single `i64` into this hasher. /// Write a single `i64` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_i64(&mut self, i: i64) { self.write_u64(i as u64) } fn write_i64(&mut self, i: i64) {
self.write_u64(i as u64)
}
/// Write a single `isize` into this hasher. /// Write a single `isize` into this hasher.
#[inline] #[inline]
#[stable(feature = "hasher_write", since = "1.3.0")] #[stable(feature = "hasher_write", since = "1.3.0")]
fn write_isize(&mut self, i: isize) { self.write_usize(i as usize) } fn write_isize(&mut self, i: isize) {
self.write_usize(i as usize)
}
} }
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////

View File

@@ -80,8 +80,7 @@ macro_rules! u8to64_le {
unsafe fn load_u64_le(buf: &[u8], i: usize) -> u64 { unsafe fn load_u64_le(buf: &[u8], i: usize) -> u64 {
debug_assert!(i + 8 <= buf.len()); debug_assert!(i + 8 <= buf.len());
let mut data = 0u64; let mut data = 0u64;
ptr::copy_nonoverlapping(buf.get_unchecked(i), ptr::copy_nonoverlapping(buf.get_unchecked(i), &mut data as *mut _ as *mut u8, 8);
&mut data as *mut _ as *mut u8, 8);
data.to_le() data.to_le()
} }