Home
last modified time | relevance | path

Searched refs:EmptyArrayAlloc (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/android/binder/range_alloc/
H A Dmod.rs11 use self::array::{ArrayRangeAllocator, EmptyArrayAlloc};
283 pub(crate) empty_array_alloc: Option<EmptyArrayAlloc<T>>,
301 _empty_array_alloc: Option<EmptyArrayAlloc<T>>,
319 self.args.empty_array_alloc = Some(EmptyArrayAlloc::try_new(TREE_THRESHOLD)?); in make_alloc()
H A Darray.rs40 pub(crate) fn new(size: usize, alloc: EmptyArrayAlloc<T>) -> Self { in new()
272 pub(crate) struct EmptyArrayAlloc<T> { struct
276 impl<T> EmptyArrayAlloc<T> { implementation