Searched refs:table_size (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dsymbol.cpp30 int symbol::table_size = 0; member in class:symbol
89 table_size = table_sizes[0];
90 table = (const char **)new char*[table_size];
91 for (int i = 0; i < table_size; i++)
97 for (pp = table + hc % table_size;
99 (pp == table ? pp = table + table_size - 1 : --pp))
108 if (table_used >= table_size - 1 || table_used >= table_size*FULL_MAX) {
110 unsigned int old_table_size = table_size;
115 table_size
[all...]
/freebsd-9.3-release/contrib/groff/src/include/
H A Dindex.h28 int table_size; member in struct:index_header
H A Dsymbol.h28 static int table_size; member in class:symbol
/freebsd-9.3-release/usr.bin/grep/regex/
H A Dhashtable.c56 * Initializes a hash table that can hold table_size number of entries,
62 *hashtable_init(size_t table_size, size_t key_size, size_t value_size) argument
66 DPRINT(("hashtable_init: table_size %zu, key_size %zu, value_size %zu\n",
67 table_size, key_size, value_size));
73 tbl->entries = calloc(sizeof(hashtable_entry *), table_size);
77 tbl->table_size = table_size;
109 if (tbl->table_size == tbl->usage)
115 hash = hash32_buf(key, tbl->key_size, hash) % tbl->table_size;
134 if (++hash == tbl->table_size)
[all...]
H A Dhashtable.h23 size_t table_size; member in struct:__anon10769
/freebsd-9.3-release/usr.bin/lex/
H A Dsym.c53 int addsym( sym, str_def, int_def, table, table_size )
58 int table_size;
60 int hash_val = hashfunct( sym, table_size );
132 struct hash_entry *findsym( sym, table, table_size )
135 int table_size;
143 table[hashfunct( sym, table_size )];
/freebsd-9.3-release/contrib/less/
H A Dposition.c25 static int table_size; variable
110 if (sc_height <= table_size)
123 table_size = sc_height;
/freebsd-9.3-release/sys/dev/drm/
H A Dati_pcigart.c77 gart_info->table_size, 1, /* maxsize, nsegs */
78 gart_info->table_size, /* maxsegsize */
99 gart_info->table_size, drm_ati_alloc_pcigart_table_cb, dmah,
184 max_pages = (gart_info->table_size / sizeof(u32));
H A Dradeon_cp.c1095 vp->upper = vp->lower + gart_info->table_size;
1419 dev_priv->gart_info.table_size;
2066 dev_priv->gart_info.table_size = RADEON_PCIGART_TABLE_SIZE;
/freebsd-9.3-release/sys/dev/drm2/
H A Dati_pcigart.c44 gart_info->table_handle = drm_pci_alloc(dev, gart_info->table_size,
77 max_pages = (gart_info->table_size / sizeof(u32));
147 max_ati_pages = (gart_info->table_size / sizeof(u32));
/freebsd-9.3-release/lib/libiconv_modules/mapper_std/
H A Dcitrus_mapper_std.c245 uint64_t table_size; local
309 table_size = lz->width;
312 table_size *= lz->width;
314 table_size *= rc->rc_dst_unit_bits/8;
316 if (table_size > UINT32_MAX ||
317 _region_size(&rc->rc_table) < table_size)
/freebsd-9.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder.c80 const uint32_t table_size = lc->table_size; local
81 lc->counters[pos_state] = table_size;
90 for (i = 0; i < table_size && i < LEN_LOW_SYMBOLS; ++i)
94 for (; i < table_size && i < LEN_LOW_SYMBOLS + LEN_MID_SYMBOLS; ++i)
98 for (; i < table_size; ++i)
581 coder->match_len_encoder.table_size
583 coder->rep_len_encoder.table_size
H A Dlzma_encoder_private.h48 uint32_t table_size; member in struct:__anon4525
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dctype.cc78 const size_t ctype<char>::table_size; member in class:ctype
/freebsd-9.3-release/usr.bin/mkcsmapper/
H A Dyacc.y68 static size_t table_size;
249 table_size = p->width;
252 table_size *= p->width;
254 table = (void *)malloc(table_size * dst_unit_bits / 8);
270 for (i = 0; i < table_size; i++)
387 _region_init(&data, table, table_size*dst_unit_bits/8);
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_mcg.c355 int table_size = dev->limits.num_mgms + dev->limits.num_amgms; local
358 table_size,
359 table_size - 1,
/freebsd-9.3-release/contrib/groff/src/libs/libbib/
H A Dindex.cpp203 + header.table_size * sizeof(int)
214 pool = (char *)(table + header.table_size);
228 for (i = 0; i < header.table_size; i++) {
496 int li = table[int(hc % header.table_size)];
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_gart.c74 dmah = drm_pci_alloc(rdev->ddev, rdev->gart.table_size,
85 rdev->gart.table_size >> PAGE_SHIFT, PAT_UNCACHED);
89 memset((void *)rdev->gart.ptr, 0, rdev->gart.table_size);
111 rdev->gart.table_size >> PAGE_SHIFT, PAT_WRITE_COMBINING);
135 r = radeon_bo_create(rdev, rdev->gart.table_size,
H A Drs400.c105 rdev->gart.table_size = rdev->gart.num_gpu_pages * 4;
H A Dradeon_cp.c1144 vp->upper = vp->lower + gart_info->table_size;
1466 dev_priv->gart_info.table_size;
2183 dev_priv->gart_info.table_size = RADEON_PCIGART_TABLE_SIZE;
/freebsd-9.3-release/sys/dev/pst/
H A Dpst-iop.c324 if (!(sc->lct = malloc(reply->table_size * sizeof(struct i2o_lct_entry),
330 reply->table_size * sizeof(struct i2o_lct_entry));
331 sc->lct_count = reply->table_size;
/freebsd-9.3-release/sys/dev/vxge/include/
H A Dvxgehal-mgmt.h281 * @table_size: MSIX Table Size-1
292 u32 table_size; member in struct:vxge_hal_mgmt_msix_cap_t
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregcomp.c850 int table_size;
865 /* table_size = 2 ^ ceil(log pat_len) */
866 for (table_size = 1; table_size > 0; table_size <<= 1)
867 if (table_size > pat_len)
870 dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
871 dfa->state_hash_mask = table_size - 1;
2822 int32_t table_size;
2837 int32_t elem = hash % table_size;
845 int table_size; local
2813 int32_t table_size; local
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dsunos.c330 bfd_size_type table_size; local
336 table_size = info->dyninfo.ld_stab - info->dyninfo.ld_hash;
337 table = bfd_malloc (table_size);
338 if (table == NULL && table_size != 0)
341 || bfd_bread ((void *) table, table_size, abfd) != table_size)
359 if (hash == 0 || hash >= table_size / HASH_ENTRY_SIZE)
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dmem.c533 unsigned int table_size; local
548 table_size = ctx->basic_table_size + TABLE_INCREMENT;
550 table_size * sizeof(unsigned char *));
562 ctx->basic_table_size = table_size;

Completed in 124 milliseconds

12