Searched defs:insert (Results 351 - 355 of 355) sorted by relevance
1...<<1112131415
| /third_party/skia/third_party/externals/imgui/ |
| H A D | imgui.h | 1747 inline T* insert(const T* it, const T& v) { IM_ASSERT(it >= Data && it <= Data + Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(T)); memcpy(&Data[off], &v, sizeof(v)); Size++; return Data + off; } in insert() function
|
| /third_party/skia/third_party/vulkanmemoryallocator/include/ |
| H A D | vk_mem_alloc.h | 4964 void insert(size_t index, const T& src) in insert() function in VmaVector 5174 void insert(size_t index, const T& src) in insert() function in VmaSmallVector 5827 iterator insert(iterator it, const T& value) { return iterator(&m_RawList, m_RawList.InsertBefore(it.m_pItem, value)); } in insert() function in VmaList [all...] |
| /third_party/protobuf/ruby/ext/google/protobuf_c/ |
| H A D | upb.c | 1514 static void insert(upb_table *t, lookupkey_t key, upb_tabkey tabkey, in insert() function
|
| /third_party/rust/crates/memchr/bench/data/code/ |
| H A D | rust-library.rs | 6044 fn insert() { insert() functions 17528 pub fn insert(&mut self, idx: usize, ch: char) { insert() functions 30619 pub fn insert(&mut self, key: K, value: V) -> Option<V> insert() functions 32931 pub fn insert(&mut self, value: T) -> bool insert() functions 35358 pub fn insert(self, value: V) -> &'a mut V { insert() functions 35518 pub fn insert(&mut self, value: V) -> V { into_mut() functions 38776 fn insert(mut self, key: K, val: V) -> (InsertResult<'a, K, V, marker::Leaf>, *mut V) { insert() functions 38833 fn insert( insert() functions 41922 pub fn insert(&mut self, index: usize, value: T) { insert() functions 48111 pub fn insert(&mut self, index: usize, element: T) { insert() functions [all...] |
| /third_party/skia/third_party/externals/sfntly/java/lib/ |
| H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |
Completed in 72 milliseconds
1...<<1112131415