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

/freebsd-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir_leaf.c861 int tablesize, entsize, sum, i, tmp, error; local
873 tablesize = (INT_GET(hdr->count, ARCH_CONVERT) + 1) * (uint)sizeof(xfs_dir_leaf_entry_t)
877 if (tablesize > INT_GET(hdr->firstused, ARCH_CONVERT)) {
1447 int tablesize, tmp, i; local
1467 tablesize = INT_GET(hdr->count, ARCH_CONVERT) * (uint)sizeof(xfs_dir_leaf_entry_t)
1477 if (INT_GET(map->base, ARCH_CONVERT) == tablesize) {
H A Dxfs_attr_leaf.c990 int tablesize, entsize, sum, tmp, i; local
1004 tablesize = (be16_to_cpu(hdr->count) + 1)
1009 if (tablesize > be16_to_cpu(hdr->firstused)) {
1643 int tablesize, tmp, i; local
1666 tablesize = be16_to_cpu(hdr->count) * sizeof(xfs_attr_leaf_entry_t)
1676 if (be16_to_cpu(map->base) == tablesize) {

Completed in 270 milliseconds