HomeSort by: relevance | last modified time | path
    Searched defs:tablesize (Results 1 - 23 of 23) sorted by relevancy

  /src/external/bsd/pcc/dist/pcc/arch/sparc64/
table.c 966 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/arm/
table.c 1848 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/mips/
table.c 1327 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/m16c/
table.c 589 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/nova/
table.c 1573 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/pdp10/
table.c 1137 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/powerpc/
table.c 1807 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/distrib/utils/more/
position.c 59 static int tablesize; variable
143 tablesize = sc_height > 25 ? sc_height : 25;
144 table = (off_t *)malloc(tablesize * sizeof *table);
145 } else if (sc_height >= tablesize) {
146 tablesize = sc_height;
147 table = (off_t *)realloc(table, tablesize * sizeof *table);
  /src/external/bsd/pcc/dist/pcc/arch/amd64/
table.c 1595 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/pdp11/
table.c 844 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/hppa/
table.c 1016 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/i386/
table.c 1623 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/i86/
table.c 1565 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/external/bsd/pcc/dist/pcc/arch/m68k/
table.c 1008 int tablesize = sizeof(table)/sizeof(table[0]); variable
  /src/sys/arch/i386/pci/
pcibios.h 72 uint16_t tablesize; member in struct:pcibios_pir_header
pcibios.c 229 uint16_t tablesize; local
246 tablesize = *(uint16_t *)(p + 6);
249 for (i = 0; i < tablesize; i++)
255 tablesize, (tablesize - 32) / 16);
262 if (tablesize < 32 || (tablesize % 16) != 0) {
277 pcibios_pir_table = malloc(tablesize - 32, M_DEVBUF,
279 memcpy(pcibios_pir_table, p + 32, tablesize - 32);
280 pcibios_pir_table_nentries = (tablesize - 32) / 16
    [all...]
  /src/external/gpl2/mkhybrid/dist/
joliet.c 351 int tablesize; local
356 tablesize = jpath_blocks << 11;
357 jpath_table_m = (char *) e_malloc(tablesize);
358 jpath_table_l = (char *) e_malloc(tablesize);
359 memset(jpath_table_l, 0, tablesize);
360 memset(jpath_table_m, 0, tablesize);
tree.c 167 int tablesize = 0; local
387 if(s_entry->table) tablesize += 35 + strlen(s_entry->table);
391 if( tablesize > 0 )
407 set_733((char *) table->isorec.size, tablesize);
408 table->size = tablesize;
413 table->table = (char *) e_malloc(ROUND_UP(tablesize)+1);
414 memset(table->table, 0, ROUND_UP(tablesize)+1);
529 if(count != tablesize)
532 count, tablesize);
write.c 1035 int tablesize; local
1040 tablesize = path_blocks << 11;
1041 path_table_m = (char *) e_malloc(tablesize);
1042 path_table_l = (char *) e_malloc(tablesize);
1043 memset(path_table_l, 0, tablesize);
1044 memset(path_table_m, 0, tablesize);
  /src/sys/arch/x86/x86/
est.c 1182 int j, tablesize, freq, volt; local
1227 tablesize = maxfreq - minfreq + 1;
1232 tablesize = maxvolt - minvolt + 1;
1237 sc->sc_fake_table = kmem_alloc(tablesize *
1239 sc->sc_fake_fqlist.n = tablesize;
1245 for (j = 0; j < tablesize; j++) {
  /src/lib/libc/stdio/
vfwprintf.c 1546 size_t tablesize; /* current size of type table */ local
1562 if (nextarg >= tablesize) \
1564 &tablesize) == -1) \
1625 tablesize = STATIC_ARG_TBL_SIZE;
1913 __grow_type_table (size_t nextarg, enum typeid **typetable, size_t *tablesize)
1916 const size_t oldsize = *tablesize;
1941 *tablesize = newsize;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar.c 208 int tablesize; member in struct:huffman_code
2627 if (!rar_br_read_ahead(a, br, code->tablesize)) {
2633 bits = rar_br_bits(br, code->tablesize);
2645 if (length <= code->tablesize)
2652 /* Skip tablesize bits */
2653 rar_br_consume(br, code->tablesize);
2847 code->tablesize = 10;
2849 code->tablesize = code->maxlength;
2851 code->table = calloc(((size_t)1U) << code->tablesize, sizeof(*code->table));
2853 return make_table_recurse(a, code, 0, code->table, 0, code->tablesize);
    [all...]
  /src/sys/dev/i2o/
i2o.h 276 u_int16_t tablesize; member in struct:i2o_lct

Completed in 62 milliseconds