HomeSort by: relevance | last modified time | path
    Searched refs:init_size (Results 1 - 11 of 11) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
hash.h 39 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
42 extern int hash_init (hash_table *htab, unsigned long int init_size);
hash.c 86 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
90 hash_init (hash_table *htab, unsigned long int init_size)
93 init_size = next_prime (init_size);
96 htab->size = init_size;
99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry));
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
hash.h 39 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
42 extern int hash_init (hash_table *htab, unsigned long int init_size);
hash.c 86 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
90 hash_init (hash_table *htab, unsigned long int init_size)
93 init_size = next_prime (init_size);
96 htab->size = init_size;
99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry));
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
hash.h 39 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
42 extern int hash_init (hash_table *htab, unsigned long int init_size);
hash.c 86 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
90 hash_init (hash_table *htab, unsigned long int init_size)
93 init_size = next_prime (init_size);
96 htab->size = init_size;
99 htab->table = (hash_entry *) xcalloc (init_size + 1, sizeof (hash_entry));
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_common_test.cc 378 uptr init_size = 0xffff; local
380 uptr res = address_range.Init(init_size);
382 UnmapOrDie((void*)res, init_size);
385 uptr res2 = address_range2.Init(init_size, nullptr, res);
394 constexpr uptr init_size = 0xffff; local
396 uptr res = address_range.Init(init_size);
400 CHECK_EQ(res, address_range.Map(res, init_size));
403 unsigned char buffer[init_size];
404 memcpy(buffer, reinterpret_cast<void *>(res), init_size);
412 uptr init_size = PageSize * 8 local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_fuchsia.cc 206 uptr ReservedAddressRange::Init(uptr init_size, const char *name,
208 init_size = RoundUpTo(init_size, PAGE_SIZE);
216 0, init_size, &vmar, &base);
218 ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status);
220 size_ = init_size;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_fuchsia.cpp 176 uptr ReservedAddressRange::Init(uptr init_size, const char *name,
178 init_size = RoundUpTo(init_size, GetPageSize());
185 init_size, &vmar, &base);
187 ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status);
189 size_ = init_size;
  /src/external/gpl2/lvm2/dist/libdm/mm/
pool-debug.c 219 int dm_pool_begin_object(struct dm_pool *p, size_t init_size)
  /src/sys/dev/pci/
if_iwmreg.h 908 uint32_t init_size; /* bytes of init code */ member in struct:iwm_ucode_header::__anon3328::__anon3329
917 uint32_t init_size; /* bytes of init code */ member in struct:iwm_ucode_header::__anon3328::__anon3330

Completed in 207 milliseconds