Home
last modified time | relevance | path

Searched refs:grow (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/third_party/icu/icu4c/source/layoutex/
DRunArrays.cpp45 grow(fCapacity); in ensureCapacity()
57 void RunArray::grow(le_int32 newCapacity) in grow() function in RunArray
100 void FontRuns::grow(le_int32 capacity) in grow() function in FontRuns
102 RunArray::grow(capacity); in grow()
152 void LocaleRuns::grow(le_int32 capacity) in grow() function in LocaleRuns
154 RunArray::grow(capacity); in grow()
204 void ValueRuns::grow(le_int32 capacity) in grow() function in ValueRuns
206 RunArray::grow(capacity); in grow()
/third_party/cef/tests/cefclient/browser/
Dbytes_write_handler.cc14 BytesWriteHandler::BytesWriteHandler(size_t grow) in BytesWriteHandler() argument
15 : grow_(grow), datasize_(grow), offset_(0) { in BytesWriteHandler()
16 DCHECK_GT(grow, 0U); in BytesWriteHandler()
17 data_ = malloc(grow); in BytesWriteHandler()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h208 void grow(size_t MinSize = 0);
213 this->grow(); in push_back()
220 this->grow(); in push_back()
233 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() function
301 void grow(size_t MinSize = 0) {
308 this->grow(); in push_back()
358 this->grow(N); in resize()
371 this->grow(N); in resize()
379 this->grow(N); in reserve()
396 this->grow(this->size()+NumInputs); in append()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallVector.h208 void grow(size_t MinSize = 0);
213 this->grow(); in push_back()
220 this->grow(); in push_back()
233 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { in grow() function
299 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); }
304 this->grow(); in push_back()
350 this->grow(N); in resize()
363 this->grow(N); in resize()
371 this->grow(N); in reserve()
390 this->grow(this->size()+NumInputs); in append()
[all …]
DIntEqClasses.h41 IntEqClasses(unsigned N = 0) : NumClasses(0) { grow(N); }
46 void grow(unsigned N);
/third_party/boost/boost/beast/core/detail/impl/
Dtemporary_buffer.ipp28 grow(s.size());
36 grow(s1.size() + s2.size());
52 grow(std::size_t n)
/third_party/skia/resources/sksl/inliner/
DForInitializerExpressionsCanBeInlined.sksl11 inline half4 grow(half4 v) {
16 for (half4 color = initLoopVar(); shouldLoop(color); color = grow(color)) {}
/third_party/musl/src/string/
Dwcsstr.c70 size_t grow = l | 63; in twoway_wcsstr() local
71 const wchar_t *z2 = wmemchr(z, 0, grow); in twoway_wcsstr()
75 } else z += grow; in twoway_wcsstr()
Dstrstr.c100 size_t grow = l | 63; in twoway_strstr() local
101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr()
105 } else z += grow; in twoway_strstr()
/third_party/icu/icu4c/source/layoutex/layout/
DRunArrays.h193 virtual void grow(le_int32 capacity);
368 virtual void grow(le_int32 capacity);
505 virtual void grow(le_int32 capacity);
642 virtual void grow(le_int32 capacity);
/third_party/boost/libs/interprocess/example/
Ddoc_managed_grow.cpp71 managed_shared_memory::grow(test::get_process_id_name(), 500); in main()
74 managed_shared_memory::grow("MySharedMemory", 500); in main()
/third_party/cef/libcef/browser/
Dstream_impl.cc219 CefBytesWriter::CefBytesWriter(size_t grow) in CefBytesWriter() argument
220 : grow_(grow), datasize_(grow), offset_(0) { in CefBytesWriter()
221 DCHECK(grow > 0); in CefBytesWriter()
222 data_ = malloc(grow); in CefBytesWriter()
/third_party/boost/boost/interprocess/
Dmanaged_external_buffer.hpp102 void grow(size_type extra_bytes) in grow() function in boost::interprocess::basic_managed_external_buffer
103 { base_t::grow(extra_bytes); } in grow()
Dmanaged_heap_memory.hpp105 bool grow(size_type extra_bytes) in grow() function in boost::interprocess::basic_managed_heap_memory
120 base_t::grow(extra_bytes); in grow()
Dmanaged_mapped_file.hpp188 static bool grow(const char *filename, size_type extra_bytes) in grow() function in boost::interprocess::basic_managed_mapped_file
190 return base_t::template grow in grow()
Dmanaged_shared_memory.hpp185 static bool grow(const char *shmname, size_type extra_bytes) in grow() function in boost::interprocess::basic_managed_shared_memory
187 return base_t::template grow in grow()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DUtility.h33 void grow(size_t N) { in grow() function
84 grow(Size);
91 grow(1);
/third_party/musl/porting/liteos_a/kernel/src/string/
Dstrstr.c100 size_t grow = l | 63; in twoway_strstr() local
101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr()
105 } else z += grow; in twoway_strstr()
/third_party/musl/porting/liteos_m/kernel/src/string/
Dstrstr.c100 size_t grow = l | 63; in twoway_strstr() local
101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr()
105 } else z += grow; in twoway_strstr()
/third_party/libdrm/freedreno/msm/
Dmsm_priv.h120 grow(void *ptr, uint32_t nr, uint32_t *max, uint32_t sz) in grow() function
137 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
/third_party/flutter/flutter/packages/flutter/test/rendering/
Ddynamic_intrinsics_test.dart13 void grow() {
82 inner.grow();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DVirtRegMap.h92 void grow();
123 grow(); in clearAllVirt()
/third_party/boost/boost/interprocess/detail/
Dmanaged_memory_impl.hpp114 static bool grow(const char *filename, size_type extra_bytes) in grow() function in boost::interprocess::ipcdetail::basic_managed_memory_impl
128 managed_memory.self_t::grow(extra_bytes); in grow()
217 void grow(size_type extra_bytes) in grow() function in boost::interprocess::ipcdetail::basic_managed_memory_impl
218 { mp_header->grow(extra_bytes); } in grow()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DDictionaryBreakEngine.java112 private void grow() { in grow() method in DictionaryBreakEngine.DequeI
127 grow(); in push()
/third_party/skia/src/core/
DSkRecord.h70 this->grow(); in append()
127 void grow();

12345678910>>...12