Searched refs:tableSize (Results 1 - 14 of 14) sorted by relevance

/haiku/src/system/boot/platform/u-boot/arch/ppc/
H A Darch_mmu_amcc440.cpp113 arch_mmu_setup_pinned_tlb_amcc440(phys_addr_t totalRam, size_t &tableSize, argument
124 tableSize = suggestedTableSize;
127 tlbSize = tableSize + 8 * 1024 * 1024;
H A Darch_mmu.cpp86 size_t &tableSize, size_t &tlbSize);
288 size_t tableSize, tlbSize; local
303 err = arch_mmu_setup_pinned_tlb_amcc440(total, tableSize, tlbSize);
305 err, tableSize / (1024 * 1024), tlbSize / (1024 * 1024));
325 sPageTable = (void *)(tlbSize - tableSize - KERNEL_STACK_SIZE);
328 (uint8 *)sPageTable + tableSize));
/haiku/src/system/boot/platform/openfirmware/arch/ppc/
H A Dmmu.cpp747 size_t tableSize; local
748 ppc_get_page_table(&table, &tableSize);
762 dprintf("current page table size = %" B_PRIuSIZE "\n", tableSize);
765 if (tableSize < suggestedTableSize) {
794 tableSize = suggestedTableSize;
803 sPageTableHashMask = tableSize / sizeof(page_table_entry_group) - 1;
805 memset(sPageTable, 0, tableSize);
863 map_range((void *)table, (void *)table, tableSize, PAGE_READ_WRITE);
869 insert_physical_allocated_range((addr_t)table, tableSize);
870 insert_virtual_allocated_range((addr_t)table, tableSize);
[all...]
/haiku/headers/private/kernel/util/
H A DMultiHashTable.h134 void _Insert(ValueType **table, size_t tableSize, ValueType *value) argument
136 size_t index = HashTable::fDefinition.Hash(value) & (tableSize - 1);
H A DOpenHashTable.h426 void _Insert(ValueType** table, size_t tableSize, ValueType* value) argument
428 size_t index = fDefinition.Hash(value) & (tableSize - 1);
/haiku/src/add-ons/accelerants/radeon_hd/
H A Dconnector.cpp370 uint16 tableSize; local
374 if (atom_parse_data_header(gAtomContext, index, &tableSize, NULL, NULL,
381 int numIndices = (tableSize - sizeof(ATOM_COMMON_TABLE_HEADER)) /
432 uint16 tableSize; local
434 if (atom_parse_data_header(gAtomContext, index, &tableSize,
444 uint32 numIndices = (tableSize - sizeof(ATOM_COMMON_TABLE_HEADER))
568 uint16 tableSize; local
571 if (atom_parse_data_header(gAtomContext, index, &tableSize,
672 uint16 tableSize; local
675 if (atom_parse_data_header(gAtomContext, index, &tableSize,
[all...]
/haiku/src/tests/add-ons/print/pcl6/
H A Ddisasm.h104 void PrintAttributeValue(uint8 id, const AttrValue* table, int tableSize);
/haiku/src/system/kernel/arch/arm64/
H A DVMSAv8TranslationMap.cpp140 uint64_t tableSize = 1UL << tableBits;
143 for (uint64_t i = 0; i < tableSize; i++) {
182 uint64_t tableSize = 1UL << tableBits;
188 for (uint64_t i = 0; i < tableSize; i++) {
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h426 void _Insert(ValueType** table, size_t tableSize, ValueType* value) argument
428 size_t index = fDefinition.Hash(value) & (tableSize - 1);
H A Dvfs.cpp2827 fssh_size_t tableSize; local
2839 tableSize = parentContext->table_size;
2841 tableSize = DEFAULT_FD_TABLE_SIZE;
2844 context->fds = (file_descriptor **)malloc(sizeof(struct file_descriptor *) * tableSize
2845 + (tableSize + 7) / 8);
2851 fssh_memset(context->fds, 0, sizeof(struct file_descriptor *) * tableSize
2852 + (tableSize + 7) / 8);
2853 context->fds_close_on_exec = (uint8_t *)(context->fds + tableSize);
2868 for (i = 0; i < tableSize; i++) {
2887 context->table_size = tableSize;
[all...]
/haiku/src/system/boot/platform/openfirmware/arch/sparc/
H A Dmmu.cpp627 gKernelArgs.arch_args.page_table.size = tableSize;
/haiku/src/add-ons/kernel/drivers/graphics/vesa/
H A Dpatch.cpp342 size_t tableSize = standardVesaTable->sHeader.usStructureSize local
344 if (tableSize % sizeof(ATOM_MODE_TIMING) == 0)
/haiku/src/system/kernel/fs/
H A Dvfs.cpp4939 size_t tableSize; local
4942 tableSize = parentContext->table_size;
4944 tableSize = DEFAULT_FD_TABLE_SIZE;
4948 sizeof(struct file_descriptor*) * tableSize
4949 + sizeof(struct select_info**) * tableSize
4950 + (tableSize + 7) / 8);
4956 context->select_infos = (select_info**)(context->fds + tableSize);
4957 context->fds_close_on_exec = (uint8*)(context->select_infos + tableSize);
4959 memset(context->fds, 0, sizeof(struct file_descriptor*) * tableSize
4960 + sizeof(struct select_info**) * tableSize
[all...]
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.cpp2108 size_t tableSize = info->message_count * 16;
2117 barAddr, tableSize + info->table_offset,
2134 barAddr, tableSize + info->pba_offset,

Completed in 97 milliseconds