Searched refs:tablesize (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh102 size_t tablesize)
105 *actual = typeCalloc(struct alias, tablesize + 1);
108 for (n = 0; n < tablesize; ++n) {
/freebsd-12-stable/libexec/bootpd/
H A Dhash.c73 * This routine creates and intializes a hash table of size "tablesize"
80 hash_Init(tablesize)
81 unsigned tablesize;
86 if (tablesize > 0) {
88 + sizeof(hash_member *) * (tablesize - 1);
92 hashtblptr->size = tablesize; /* Success! */
H A Dhash.h125 extern hash_tbl *hash_Init(u_int tablesize);
/freebsd-12-stable/contrib/sendmail/libsm/
H A Dvfprintf.c840 int tablesize; /* current size of type table */ local
846 ((nextarg >= tablesize) ? \
847 (sm_grow_type_table_x(&typetable, &tablesize), 0) : 0, \
882 tablesize = STATIC_ARG_TBL_SIZE;
1090 ** tablesize -- requested new table size
1097 sm_grow_type_table_x(typetable, tablesize)
1099 int *tablesize;
1102 int newsize = *tablesize * 2;
1104 if (*tablesize == STATIC_ARG_TBL_SIZE)
1108 (void) memmove(*typetable, oldtable, *tablesize);
[all...]
/freebsd-12-stable/lib/libc/stdio/
H A Dprintf-pos.c82 u_int tablesize; /* current size of type table */ member in struct:typetable
99 types->tablesize = STATIC_ARG_TBL_SIZE;
125 if (types->nextarg >= types->tablesize) {
644 const int oldsize = types->tablesize;
668 types->tablesize = newsize;
/freebsd-12-stable/contrib/elftoolchain/libelftc/
H A Delftc_string_table.c132 int n, nbuckets, tablesize; local
140 tablesize = sizeof(struct _Elftc_String_Table) +
143 if ((st = malloc(tablesize)) == NULL)
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c198 int tablesize; member in struct:huffman_code
2404 if (!rar_br_read_ahead(a, br, code->tablesize)) {
2410 bits = rar_br_bits(br, code->tablesize);
2422 if (length <= code->tablesize)
2429 /* Skip tablesize bits */
2430 rar_br_consume(br, code->tablesize);
2625 code->tablesize = 10;
2627 code->tablesize = code->maxlength;
2631 * ((size_t)1 << code->tablesize));
2633 return make_table_recurse(a, code, 0, code->table, 0, code->tablesize);
[all...]

Completed in 83 milliseconds