Struct brotli::enc::find_stride::EntropyPyramid

source ·
pub struct EntropyPyramid<AllocU32: Allocator<u32>> { /* private fields */ }

Implementations§

source§

impl<AllocU32: Allocator<u32>> EntropyPyramid<AllocU32>

source

pub fn last_level_range(&self) -> Range<usize>

source

pub fn byte_index_to_pyramid_index( &self, byte_index: usize, metablock_size: usize ) -> usize

source

pub fn reset_scratch_to_deepest_level( &self, output: &mut EntropyTally<AllocU32> )

source

pub fn stride_last_level_range(&self) -> [u8; 8]

source

pub fn free(&mut self, m32: &mut AllocU32)

source

pub fn disabled_placeholder(_m32: &mut AllocU32) -> Self

source

pub fn new(m32: &mut AllocU32) -> Self

source

pub fn bit_cost_of_literals( &mut self, data0: &[u8], start_index: u32, metablock_len: usize, stride: u8, previous_bytes: [u8; 8], scratch: &mut EntropyTally<AllocU32> ) -> floatY

source

pub fn populate_stride1(&mut self, input0: &[u8], input1: &[u8])

source

pub fn populate( &mut self, input0: &[u8], input1: &[u8], scratch: &mut EntropyTally<AllocU32> )

Auto Trait Implementations§

§

impl<AllocU32> Freeze for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: Freeze,

§

impl<AllocU32> RefUnwindSafe for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: RefUnwindSafe,

§

impl<AllocU32> Send for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: Send,

§

impl<AllocU32> Sync for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: Sync,

§

impl<AllocU32> Unpin for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: Unpin,

§

impl<AllocU32> UnwindSafe for EntropyPyramid<AllocU32>
where <AllocU32 as Allocator<u32>>::AllocatedMemory: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.