Home
last modified time | relevance | path

Searched defs:reserve (Results 76 - 79 of 79) sorted by relevance

1234

/third_party/skia/third_party/externals/imgui/
H A Dimgui.h1738 inline void reserve(int new_capacity) { if (new_capacity <= Capacity) return; T* new_data = (T*)IM_ALLOC((size_t)new_capacity * sizeof(T)); if (Data) { memcpy(new_data, Data, (size_t)Size * sizeof(T)); IM_FREE(Data); } Data = new_data; Capacity = new_capacity; } in reserve() function
2114 void reserve(int capacity) { Buf.reserve(capacity); } in reserve() function
/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h4909 void reserve(size_t newCapacity, bool freeMemory = false) in reserve() function in VmaVector
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c8121 static bool reserve(upb_pb_encoder *e, size_t bytes) { in reserve() function
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs14735 pub fn reserve(&mut self, len: usize, additional: usize) { reserve() functions
17061 pub fn reserve(&mut self, additional: usize) { reserve() functions
40987 pub fn reserve(&mut self, additional: usize) { reserve() functions
45202 pub fn reserve(&mut self, additional: usize) { reserve() functions
47587 pub fn reserve(&mut self, additional: usize) { reserve() functions
[all...]

Completed in 83 milliseconds

1234