AlignedBuffer

Struct AlignedBuffer 

Source
pub struct AlignedBuffer { /* private fields */ }
Expand description

SIMD-aligned buffer with metadata

This buffer guarantees proper alignment for SIMD operations using direct memory allocation. It supports SSE (16-byte), AVX2 (32-byte), and AVX-512 (64-byte) alignments.

Implementations§

Source§

impl AlignedBuffer

Source

pub fn new(capacity: usize, alignment: usize) -> DomainResult<Self>

Create new aligned buffer with guaranteed SIMD alignment

§Arguments
  • capacity - Minimum capacity in bytes
  • alignment - Required alignment (must be power of 2)
§Safety

This function uses unsafe code to allocate aligned memory. The memory is properly tracked and will be deallocated on drop.

Source

pub fn new_sse(capacity: usize) -> DomainResult<Self>

Create an aligned buffer with specific SIMD level

Source

pub fn new_avx2(capacity: usize) -> DomainResult<Self>

Create an aligned buffer for AVX2 operations

Source

pub fn new_avx512(capacity: usize) -> DomainResult<Self>

Create an aligned buffer for AVX-512 operations

Source

pub fn as_mut_slice(&mut self) -> &mut [u8]

Get mutable slice to buffer data

Source

pub fn as_slice(&self) -> &[u8]

Get immutable slice to buffer data

Source

pub fn as_mut_capacity_slice(&mut self) -> &mut [u8]

Get a mutable slice with full capacity

Source

pub unsafe fn set_len(&mut self, new_len: usize)

Set the length of valid data

§Safety

Caller must ensure that new_len bytes are initialized

Source

pub fn reserve(&mut self, additional: usize) -> DomainResult<()>

Reserve additional capacity

Source

pub fn extend_from_slice(&mut self, data: &[u8]) -> DomainResult<()>

Push bytes to the buffer

Source

pub fn clear(&mut self)

Clear buffer contents but keep allocated memory

Source

pub fn capacity(&self) -> usize

Get buffer capacity

Source

pub fn len(&self) -> usize

Get current length of valid data

Source

pub fn is_empty(&self) -> bool

Check if buffer is empty

Source

pub fn as_ptr(&self) -> *const u8

Get the raw pointer to the buffer

Source

pub fn as_mut_ptr(&mut self) -> *mut u8

Get the mutable raw pointer to the buffer

Source

pub fn is_aligned(&self) -> bool

Check if buffer is properly aligned

This validates that the buffer pointer has the requested alignment, which is critical for SIMD operations.

Source

pub fn actual_alignment(&self) -> usize

Get the actual alignment of the buffer

Source

pub fn is_simd_compatible(&self, simd_type: SimdType) -> bool

Verify buffer is suitable for specific SIMD instruction set

Trait Implementations§

Source§

impl Clone for AlignedBuffer

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AlignedBuffer

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for AlignedBuffer

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Send for AlignedBuffer

Source§

impl Sync for AlignedBuffer

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more