Home
last modified time | relevance | path

Searched refs:uninit_array (Results 1 – 7 of 7) sorted by relevance

/external/cronet/tot/base/memory/
Daligned_memory.h136 auto uninit_array = variable
142 UNSAFE_BUFFERS(span(reinterpret_cast<T*>(uninit_array.data()), capacity));
143 return std::make_pair(std::move(uninit_array), std::move(uninit_span));
/external/cronet/stable/base/memory/
Daligned_memory.h136 auto uninit_array = variable
142 UNSAFE_BUFFERS(span(reinterpret_cast<T*>(uninit_array.data()), capacity));
143 return std::make_pair(std::move(uninit_array), std::move(uninit_span));
/external/rust/android-crates-io/crates/android_logger/patches/
D0001-Enable-embedding-android_logger-in-liblog_rust.patch102 -use crate::arrays::{fill_tag_bytes, uninit_array};
104 +use self::arrays::{fill_tag_bytes, uninit_array};
128 -use crate::{LOGGING_MSG_MAX_LEN, LogId, android_log, uninit_array};
136 +use super::{LOGGING_MSG_MAX_LEN, LogId, android_log, uninit_array};
/external/rust/android-crates-io/crates/android_logger/src/
Dtests.rs61 let mut result = uninit_array(); in fill_tag_bytes_truncates_long_tag()
73 let mut result = uninit_array(); in fill_tag_bytes_keeps_short_tag()
Dplatform_log_writer.rs8 use super::{LOGGING_MSG_MAX_LEN, LogId, android_log, uninit_array};
47 buffer: uninit_array(), in new_with_priority()
75 buffer: uninit_array(), in new()
Dlib.rs78 use self::arrays::{fill_tag_bytes, uninit_array};
178 let mut tag_bytes: [MaybeUninit<u8>; LOGGING_TAG_MAX_LEN + 1] = uninit_array(); in log()
Darrays.rs6 pub fn uninit_array<const N: usize, T>() -> [MaybeUninit<T>; N] { in uninit_array() function