Searched refs:GetSpan (Results 1 - 5 of 5) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Buffers/ |
H A D | ArrayBufferWriter.cs | 185 public Span<T> GetSpan(int sizeHint = 0) in GetSpan() method in Google.Protobuf.Buffers.ArrayBufferWriter
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | WriteBufferHelper.cs | 135 buffer = state.writeBufferHelper.bufferWriter.GetSpan(); in RefreshBuffer()
|
/third_party/rust/crates/quote/src/ |
H A D | runtime.rs | 1 use self::get_span::{GetSpan, GetSpanBase, GetSpanInner}; 186 pub fn get_span<T>(span: T) -> GetSpan<T> { in get_span() 187 GetSpan(GetSpanInner(GetSpanBase(span))) in get_span() 195 pub struct GetSpan<T>(pub(crate) GetSpanInner<T>); structure names 201 impl GetSpan<Span> { impls 222 impl<T> Deref for GetSpan<T> {
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 582 span_allocator.GetSpan(0, &table->Columns); in TableBeginInitMemory() 583 span_allocator.GetSpan(1, &table->DisplayOrderToIndex); in TableBeginInitMemory() 584 span_allocator.GetSpan(2, &table->RowCellData); in TableBeginInitMemory()
|
H A D | imgui_internal.h | 588 // - Usage: call Reserve() N times, allocate GetArenaSizeInBytes() worth, pass it to SetArenaBasePtr(), call GetSpan() N times to retrieve the aligned ranges. 605 inline void GetSpan(int n, ImSpan<T>* span) { span->set((T*)GetSpanPtrBegin(n), (T*)GetSpanPtrEnd(n)); }
|
Completed in 23 milliseconds