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

/freebsd-10.2-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh95 unsigned tablesize)
98 *actual = typeCalloc(struct alias, tablesize + 1);
101 for (n = 0; n < tablesize; ++n) {
/freebsd-10.2-release/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-10.2-release/contrib/sendmail/libsm/
H A Dvfprintf.c839 int tablesize; /* current size of type table */ local
845 ((nextarg >= tablesize) ? \
846 (sm_grow_type_table_x(&typetable, &tablesize), 0) : 0, \
881 tablesize = STATIC_ARG_TBL_SIZE;
1089 ** tablesize -- requested new table size
1096 sm_grow_type_table_x(typetable, tablesize)
1098 int *tablesize;
1101 int newsize = *tablesize * 2;
1103 if (*tablesize == STATIC_ARG_TBL_SIZE)
1107 (void) memmove(*typetable, oldtable, *tablesize);
[all...]
/freebsd-10.2-release/lib/libc/stdio/
H A Dprintf-pos.c73 int tablesize; /* current size of type table */ member in struct:typetable
90 types->tablesize = STATIC_ARG_TBL_SIZE;
116 if (types->nextarg >= types->tablesize) {
625 const int oldsize = types->tablesize;
644 types->tablesize = newsize;
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c191 int tablesize; member in struct:huffman_code
2289 if (!rar_br_read_ahead(a, br, code->tablesize)) {
2295 bits = rar_br_bits(br, code->tablesize);
2307 if (length <= code->tablesize)
2314 /* Skip tablesize bits */
2315 rar_br_consume(br, code->tablesize);
2490 code->tablesize = 10;
2492 code->tablesize = code->maxlength;
2496 * ((size_t)1 << code->tablesize));
2498 return make_table_recurse(a, code, 0, code->table, 0, code->tablesize);
[all...]

Completed in 80 milliseconds