HomeSort by relevance Sort by last modified time
    Searched defs:table_size (Results 1 - 21 of 21) sorted by null

  /onnv/onnv-gate/usr/src/cmd/tnf/tnfdump/
table.c 41 static int table_size = 0; /* max number of elements */ variable
54 table_size = num_entries;
55 table_start = malloc(table_size * sizeof (struct entry));
60 table_size += num_entries;
61 temp = realloc(table_start, table_size * sizeof (struct entry));
87 if (table_cur >= table_size) {
97 return (table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/ib/common/
cfga_rcm.c 261 size_t table_size = 0; local
318 table_size = (2 + tuples) * (width + 1) + 2;
320 *table = malloc(table_size);
322 newtable = realloc(*table, strlen(*table) + table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/sata/common/
cfga_rcm.c 193 size_t table_size = 0; local
249 table_size = (2 + tuples) * (width + 1) + 2;
252 *table = calloc(table_size, sizeof (char));
257 newtable = realloc(*table, strlen(*table) + table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/usb/common/
cfga_rcm.c 213 size_t table_size = 0; local
271 table_size = (2 + tuples) * (width + 1) + 2;
274 *table = calloc(table_size, sizeof (char));
281 newtable = realloc(*table, strlen(*table) + table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/scsi/common/
cfga_rcm.c 260 size_t table_size = 0; local
309 table_size = (2 + tuples) * (width + 1) + 2;
312 *table = calloc(table_size, sizeof (char));
316 newtable = realloc(*table, strlen(*table) + table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/fp/common/
cfga_rcm.c 488 size_t table_size = 0; local
539 table_size = (2 + tuples) * (width + 1) + 2;
541 *table = malloc(table_size);
543 newtable = realloc(*table, strlen(*table) + table_size);
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/
cache.h 74 unsigned int table_size; member in struct:_HfsCPrivateCacheTable
  /onnv/onnv-gate/usr/src/uts/common/inet/ip/
ip6_asp.c 241 size_t table_size; local
262 table_size = iocp->ioc_count;
265 table_size = iocp->ioc_count;
268 ip6_asp_replace(mp, table, table_size, B_TRUE, ipst,
ip_if.c 7754 size_t table_size; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/include/
lock.h 50 u_int32_t table_size; /* size of hash table */ member in struct:__db_lockregion
  /onnv/onnv-gate/usr/src/cmd/tic/
tic_parse.c 108 unsigned int table_size = 0; /* current string_table size */ variable
773 if (table_size == 0) {
776 table_size = 1024;
778 table_size);
781 while (table_size <= next_free + strlen(string)) {
782 if ((string_table = realloc(string_table, table_size + 1024))
785 table_size += 1024;
786 DEBUG(5, "Extended string table. Size now %u\n", table_size);
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/tic/
ticparse.c 54 int table_size = 0; /* current string_table size */ variable
414 if (table_size == 0)
418 table_size = 1024;
420 table_size);
423 while (table_size < next_free + strlen(string))
425 if ((string_table = realloc(string_table, table_size + 1024))
428 table_size += 1024;
429 DEBUG(5, "Extended string table. Size now %d\n", table_size);
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/fat/
fat.c 193 FatCluster table_size; local
195 table_size = fs_info->fat_sectors * 512
197 fs_info->fat = fat_table_new (fs_info->fat_type, table_size);
281 FatCluster table_size; local
356 table_size = fs_info->fat_sectors * 512
358 fs_info->fat = fat_table_new (fs_info->fat_type, table_size);
457 FatCluster table_size; local
460 table_size = fs_info->fat_sectors * 512
463 table_copy = fat_table_new (fs_info->fat_type, table_size);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/sdcard/common/
cfga_sdcard.c 1805 size_t table_size = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/drd/
drd_rcm.c 1111 size_t table_size = 0; local
1160 table_size = (2 + tuples) * (width + 1) + 2;
1163 table = calloc(table_size, sizeof (char));
    [all...]
  /onnv/onnv-gate/usr/src/cmd/geniconvtbl/
itm_util.c 379 itm_size_t table_size; local
405 table_size = ((sizeof (itm_tbl_hdr_t)) +
407 table_size = ITMROUNDUP(table_size);
409 table = malloc_vital(table_size);
413 table->size = table_size;
445 itm_size_t table_size; local
465 table_size = ((sizeof (itm_tbl_hdr_t)) +
468 table_size = ITMROUNDUP(table_size);
956 itm_size_t table_size; local
1140 itm_size_t table_size; local
1293 itm_size_t table_size; local
1601 itm_size_t table_size; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/pci/common/
cfga.c 396 size_t table_size = 0; local
445 table_size = (2 + tuples) * (width + 1) + 2;
448 *table = calloc(table_size, sizeof (char));
452 newtable = realloc(*table, strlen(*table) + table_size);
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/io/agpgart/
agpgart.c 2180 size_t table_size; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/lib/
regcomp.c 836 __re_size_t table_size;
854 /* Avoid overflows. The extra "/ 2" is for the table_size doubling
864 /* table_size = 2 ^ ceil(log pat_len) */
865 for (table_size = 1; ; table_size <<= 1)
866 if (table_size > pat_len)
869 dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
870 dfa->state_hash_mask = table_size - 1;
831 __re_size_t table_size; local
2741 int32_t table_size; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/shp/common/
shp.c 417 size_t table_size = 0; local
466 table_size = (2 + tuples) * (width + 1) + 2;
469 *table = calloc(table_size, sizeof (char));
473 newtable = realloc(*table, strlen(*table) + table_size);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/ib/adapters/hermon/
hermon.h 947 uint64_t table_size; member in struct:hermon_icm_table_s
    [all...]

Completed in 1799 milliseconds