| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| H A D | sanitizer_common_test.cc | 378 uptr init_size = 0xffff; in TEST() local 380 uptr res = address_range.Init(init_size); in TEST() 382 UnmapOrDie((void*)res, init_size); in TEST() 385 uptr res2 = address_range2.Init(init_size, nullptr, res); in TEST() 394 constexpr uptr init_size = 0xffff; in TEST() local 396 uptr res = address_range.Init(init_size); in TEST() 400 CHECK_EQ(res, address_range.Map(res, init_size)); in TEST() 403 unsigned char buffer[init_size]; in TEST() 404 memcpy(buffer, reinterpret_cast<void *>(res), init_size); in TEST() 412 uptr init_size = PageSize * 8; in TEST() local [all …]
|
| /netbsd-src/external/ibm-public/postfix/dist/src/util/ |
| H A D | inet_addr_list.c | 70 int init_size; in inet_addr_list_init() local 74 init_size = 2; in inet_addr_list_init() 76 mymalloc(sizeof(*list->addrs) * init_size); in inet_addr_list_init() 77 list->size = init_size; in inet_addr_list_init()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| H A D | hash.c | 90 hash_init (hash_table *htab, unsigned long int init_size) in hash_init() argument 93 init_size = next_prime (init_size); in hash_init() 96 htab->size = init_size; in hash_init() 99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry)); in hash_init()
|
| H A D | hash.h | 42 extern int hash_init (hash_table *htab, unsigned long int init_size);
|
| /netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| H A D | hash.c | 90 hash_init (hash_table *htab, unsigned long int init_size) in hash_init() argument 93 init_size = next_prime (init_size); in hash_init() 96 htab->size = init_size; in hash_init() 99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry)); in hash_init()
|
| H A D | hash.h | 42 extern int hash_init (hash_table *htab, unsigned long int init_size);
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| H A D | hash.c | 90 hash_init (hash_table *htab, unsigned long int init_size) in hash_init() argument 93 init_size = next_prime (init_size); in hash_init() 96 htab->size = init_size; in hash_init() 99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry)); in hash_init()
|
| H A D | hash.h | 42 extern int hash_init (hash_table *htab, unsigned long int init_size);
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| H A D | sanitizer_fuchsia.cc | 206 uptr ReservedAddressRange::Init(uptr init_size, const char *name, in Init() argument 208 init_size = RoundUpTo(init_size, PAGE_SIZE); in Init() 216 0, init_size, &vmar, &base); in Init() 218 ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status); in Init() 220 size_ = init_size; in Init()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_fuchsia.cpp | 176 uptr ReservedAddressRange::Init(uptr init_size, const char *name, in Init() argument 178 init_size = RoundUpTo(init_size, GetPageSize()); in Init() 185 init_size, &vmar, &base); in Init() 187 ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status); in Init() 189 size_ = init_size; in Init()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_fuchsia.cc | 205 uptr ReservedAddressRange::Init(uptr init_size, const char *name, in Init() argument 207 init_size = RoundUpTo(init_size, PAGE_SIZE); in Init() 212 _zx_vmar_allocate_old(_zx_vmar_root_self(), 0, init_size, in Init() 217 ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status); in Init() 219 size_ = init_size; in Init()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/async/ |
| H A D | async.c | 316 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()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/async/ |
| H A D | async.c | 352 int ASYNC_init_thread(size_t max_size, size_t init_size) in ASYNC_init_thread() argument 357 if (init_size > max_size) { in ASYNC_init_thread() 374 pool->jobs = sk_ASYNC_JOB_new_reserve(NULL, init_size); in ASYNC_init_thread() 384 while (init_size--) { in ASYNC_init_thread()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| H A D | async.h | 40 int ASYNC_init_thread(size_t max_size, size_t init_size);
|
| /netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
| H A D | async.h | 52 int ASYNC_init_thread(size_t max_size, size_t init_size);
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | ASYNC_start_job.pod | 14 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
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | ASYNC_start_job.pod | 14 int ASYNC_init_thread(size_t max_size, size_t init_size); 52 I<init_size> B<ASYNC_JOB>s will be created immediately. If ASYNC_init_thread() 54 with a I<max_size> of 0 (no upper limit) and an I<init_size> of 0 (no
|
| /netbsd-src/external/gpl2/lvm2/dist/libdm/mm/ |
| H A D | pool-debug.c | 219 int dm_pool_begin_object(struct dm_pool *p, size_t init_size) in dm_pool_begin_object() argument
|
| /netbsd-src/sys/dev/pci/ |
| H A D | if_iwmreg.h | 884 uint32_t init_size; /* bytes of init code */ member 893 uint32_t init_size; /* bytes of init code */ member
|