/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.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...] |
pcibios.h | 72 uint16_t tablesize; member in struct:pcibios_pir_header
|
/src/usr.sbin/bootp/common/ |
hash.c | 69 * This routine creates and initializes a hash table of size "tablesize" 76 hash_Init(unsigned int tablesize) 81 if (tablesize > 0) { 83 + sizeof(hash_member *) * (tablesize - 1); 87 hashtblptr->size = tablesize; /* Success! */
|
hash.h | 124 extern hash_tbl *hash_Init(u_int tablesize);
|
/src/sys/arch/amd64/stand/prekern/ |
locore.S | 65 #define TABLESIZE \ 122 .globl _C_LABEL(tablesize) 138 .type _C_LABEL(tablesize), @object 139 _C_LABEL(tablesize): .long TABLESIZE 140 END(tablesize) 401 movl $TABLESIZE,%ecx 454 movl $TABLESIZE,%ecx /* length of BOOTSTRAP TABLES */ 556 movq $TABLESIZE,%rdx 574 leaq (TABLESIZE)(%rsi),%rd [all...] |
/src/sys/arch/i386/i386/ |
locore.S | 300 .globl _C_LABEL(tablesize) 312 .type _C_LABEL(tablesize), @object 313 _C_LABEL(tablesize): .long 0 314 END(tablesize) 893 /* tablesize = (PDP_SIZE + UPAGES + nkptp[1]) << PGSHIFT; */ 901 movl %eax,RELOC(tablesize) 904 * (esi + tablesize) >> L2_SHIFT + 1 < nkptp[1] */ 916 movl RELOC(tablesize),%ecx 970 movl RELOC(tablesize),%ecx /* length of BOOTSTRAP TABLES */ 1067 addl _C_LABEL(tablesize),%ed [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/usr.sbin/iopctl/ |
iopctl.c | 256 nent = ((le16toh(lct->tablesize) << 2) -
|
/src/sys/arch/amd64/amd64/ |
locore.S | 212 #define TABLESIZE \ 218 (NKL2_KIMG_ENTRIES * (1 << L2_SHIFT) - TABLESIZE - IOM_SIZE) 334 .globl _C_LABEL(tablesize) 353 .type _C_LABEL(tablesize), @object 354 _C_LABEL(tablesize): .long TABLESIZE 355 END(tablesize) 703 movl $TABLESIZE,%ecx 757 movl $TABLESIZE,%ecx /* length of BOOTSTRAP TABLES */ 915 movq $(TABLESIZE+KERNBASE),%rd [all...] |
/src/sys/dev/i2o/ |
iop.c | 1175 size = le16toh(lct->tablesize) << 2; 1189 sc->sc_nlctent = ((le16toh(sc->sc_lct->tablesize) << 2) - 2527 i = le16toh(sc->sc_lct->tablesize) << 2;
|
i2o.h | 276 u_int16_t tablesize; member in struct:i2o_lct
|