/src/distrib/utils/more/ |
position.c | 59 static int tablesize; variable in typeref:typename:int 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/sys/arch/i386/pci/ |
pcibios.h | 72 uint16_t tablesize; member in struct:pcibios_pir_header
|
pcibios.c | 229 uint16_t tablesize; local in function:pcibios_pir_init 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/sys/arch/x86/x86/ |
est.c | 1182 int j, tablesize, freq, volt; local in function:est_tables 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 in function:__find_arguments 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/sys/dev/i2o/ |
i2o.h | 276 u_int16_t tablesize; member in struct:i2o_lct
|