Home
last modified time | relevance | path

Searched refs:init_size (Results 1 – 23 of 23) sorted by relevance

/third_party/grpc/test/core/gpr/
Darena_test.cc41 static void test(const char* name, size_t init_size, const size_t* allocs, in test() argument
45 absl::StrFormat("test '%s': %" PRIdPTR " <- {", name, init_size)); in test()
53 Arena* a = Arena::Create(init_size); in test()
70 #define TEST(name, init_size, ...) \ argument
72 test(#name, init_size, allocs_##name, GPR_ARRAY_SIZE(allocs_##name))
/third_party/python/Include/internal/
Dpycore_blocks_output_buffer.h151 const Py_ssize_t init_size, in _BlocksOutputBuffer_InitWithSize() argument
160 b = PyBytes_FromStringAndSize(NULL, init_size); in _BlocksOutputBuffer_InitWithSize()
175 buffer->allocated = init_size; in _BlocksOutputBuffer_InitWithSize()
179 return init_size; in _BlocksOutputBuffer_InitWithSize()
/third_party/gettext/gnulib-local/lib/
Dmem-hash-map.c89 hash_init (hash_table *htab, unsigned long int init_size) in hash_init() argument
92 init_size = next_prime (init_size); in hash_init()
95 htab->size = init_size; in hash_init()
98 htab->table = XCALLOC (init_size + 1, hash_entry); in hash_init()
Dmem-hash-map.h40 extern int hash_init (hash_table *htab, unsigned long int init_size);
/third_party/mesa3d/src/egl/main/
Deglarray.c68 _eglCreateArray(const char *name, EGLint init_size) in _eglCreateArray() argument
75 array->MaxSize = (init_size > 0) ? init_size : 1; in _eglCreateArray()
Deglarray.h54 _eglCreateArray(const char *name, EGLint init_size);
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/int8/
Dmatmul_base_int8.cc103 int init_size = filter_per_channel_ ? col : 1; in MallocQuantParam() local
111 quant_param_->filter_scale_ = reinterpret_cast<float *>(malloc(init_size * sizeof(float))); in MallocQuantParam()
115 quant_param_->filter_zp_ = reinterpret_cast<int32_t *>(malloc(init_size * sizeof(int32_t))); in MallocQuantParam()
119 quant_param_->left_shift_ = reinterpret_cast<int32_t *>(malloc(init_size * sizeof(int32_t))); in MallocQuantParam()
123 quant_param_->right_shift_ = reinterpret_cast<int32_t *>(malloc(init_size * sizeof(int32_t))); in MallocQuantParam()
127 …quant_param_->quant_multiplier_ = reinterpret_cast<int32_t *>(malloc(init_size * sizeof(int32_t))); in MallocQuantParam()
/third_party/openssl/crypto/async/
Dasync.c316 int ASYNC_init_thread(size_t max_size, size_t init_size) in ASYNC_init_thread() argument
321 if (init_size > max_size) { in ASYNC_init_thread()
338 pool->jobs = sk_ASYNC_JOB_new_reserve(NULL, init_size); in ASYNC_init_thread()
348 while (init_size--) { in ASYNC_init_thread()
/third_party/boost/boost/regex/v4/
Dregex_split.hpp114 std::size_t init_size = max_split; in regex_split() local
136 return init_size - max_split; in regex_split()
/third_party/openssl/include/openssl/
Dasync.h40 int ASYNC_init_thread(size_t max_size, size_t init_size);
/third_party/libwebsockets/win32port/dirent/
Ddirent-win32.h891 const size_t init_size = 1; in scandir() local
911 if (size < init_size) { in scandir()
913 num_entries = init_size; in scandir()
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/
Dftdrv.h175 FT_Size_InitFunc init_size; member
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dftdrv.h175 FT_Size_InitFunc init_size; member
/third_party/freetype/include/freetype/internal/
Dftdrv.h175 FT_Size_InitFunc init_size; member
/third_party/grpc/third_party/upb/upb/
Dmsg.h234 UPB_INLINE upb_array *_upb_array_new(upb_arena *a, size_t init_size, in _upb_array_new() argument
237 const size_t bytes = sizeof(upb_array) + (init_size << elem_size_lg2); in _upb_array_new()
242 arr->size = init_size; in _upb_array_new()
/third_party/openssl/doc/man3/
DASYNC_start_job.pod14 int ASYNC_init_thread(size_t max_size, size_t init_size);
52 B<init_size> ASYNC_JOBs will be created immediately. If ASYNC_init_thread() is
54 with a B<max_size> of 0 (no upper limit) and an B<init_size> of 0 (no ASYNC_JOBs
/third_party/python/Modules/
Dzlibmodule.c91 Py_ssize_t init_size, in OutputBuffer_WindowInitWithSize() argument
95 buffer, init_size, (void**) next_out); in OutputBuffer_WindowInitWithSize()
/third_party/protobuf/objectivec/Tests/
Dunittest_objc.proto243 optional int32 init_size = 12; field
/third_party/skia/third_party/externals/freetype/src/base/
Dftobjs.c2916 if ( clazz->init_size ) in FT_New_Size()
2917 error = clazz->init_size( size ); in FT_New_Size()
/third_party/freetype/src/base/
Dftobjs.c2873 if ( clazz->init_size ) in FT_New_Size()
2874 error = clazz->init_size( size ); in FT_New_Size()
/third_party/flutter/skia/third_party/externals/freetype/src/base/
Dftobjs.c2846 if ( clazz->init_size ) in FT_New_Size()
2847 error = clazz->init_size( size ); in FT_New_Size()
/third_party/freetype/
DChangeLog677 * src/base/ftobjs.c (FT_New_Size): When the call to `clazz->init_size'
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.2103426 * src/base/ftobjs.c (FT_New_Size): When the call to `clazz->init_size'