Searched refs:table (Results 26 - 50 of 140) sorted by relevance

123456

/haiku/src/apps/debuganalyzer/gui/main_window/
H A DThreadsPage.h10 #include "table/Table.h"
27 virtual void TableRowInvoked(Table* table, int32 rowIndex);
/haiku/src/bin/
H A Dscreeninfo.cpp22 ColorSpace table[] = variable
77 for (int32 i = 0; i < sizeof(table) / sizeof(table[0]); i++)
81 if (bitmaps_support_space(table[i].space, &supportFlags)
83 printf("\t%s\n", table[i].name);
H A Dramdisk.cpp390 TextTable table; local
391 table.AddColumn("ID", B_ALIGN_RIGHT);
392 table.AddColumn("Size", B_ALIGN_RIGHT);
393 table.AddColumn("Associated file");
416 int32 rowIndex = table.CountRows();
417 table.SetTextAt(rowIndex, 0, BString() << request.id);
418 table.SetTextAt(rowIndex, 1, BString() << request.size);
419 table.SetTextAt(rowIndex, 2, request.path);
422 if (table.CountRows() > 0)
423 table
[all...]
/haiku/src/bin/bfs_tools/lib/
H A DHashtable.cpp1 /* Hashtable - a general purpose hash table
61 struct Entry **table = fTable; local
67 for(entry = table[index];entry;entry = next)
73 free(table);
133 Entry **table,*entry,*prev; local
137 table = fTable;
141 for(entry = table[index],prev = NULL;entry;entry = entry->next)
151 table[index] = entry->next;
238 /** The hash table will be doubled in size, and rebuild.
279 Entry **table,*entr local
[all...]
/haiku/headers/private/kernel/util/
H A DMultiHashTable.h18 // but with hash table semantics.
76 ValueIterator(const HashTable *table, size_t index, ValueType *value) argument
79 Iterator::fTable = table;
134 void _Insert(ValueType **table, size_t tableSize, ValueType *value) argument
141 for (previous = table[index]; previous
149 HashTable::_Link(value) = table[index];
150 table[index] = value;
H A Dqueue.h27 void **table; member in struct:fixed_queue
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dloaded-image.h8 #include <efi/system-table.h>
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMapWriter.cpp74 TRACE(("check_logical_location() - Partition table: (%" B_PRId64 ") not"
124 partition_descriptor* descriptor = &partitionTable.table[i];
157 partition_descriptor* descriptor = &partitionTable.table[0];
160 descriptor = &partitionTable.table[1];
168 descriptor = &partitionTable.table[i];
198 descriptor = &partitionTable.table[i];
209 // set the logicals partition table to the correct location
210 descriptor = &partitionTable.table[0];
213 descriptor = &partitionTable.table[1];
222 descriptor = &partitionTable.table[
[all...]
/haiku/src/system/kernel/arch/x86/32/
H A Ddescriptors.cpp40 // table with functions handling respective interrupts
565 // init interrupt handler table
566 interrupt_handler_function** table = gInterruptHandlerTable; local
571 table[i] = x86_invalid_exception;
573 table[i] = x86_hardware_interrupt;
575 table[0] = x86_unexpected_exception; // Divide Error Exception (#DE)
576 table[1] = x86_handle_debug_exception; // Debug Exception (#DB)
577 table[2] = x86_fatal_exception; // NMI Interrupt
578 table[3] = x86_handle_breakpoint_exception; // Breakpoint Exception (#BP)
579 table[
[all...]
/haiku/headers/private/shared/
H A DColorQuantizer.h53 void GetColorTable(RGBA* table) const;
68 void _GetPaletteColors(Node* node, RGBA* table,
/haiku/src/system/kernel/arch/generic/
H A Dacpi_irq_routing_table.h75 void print_irq_routing_table(const IRQRoutingTable& table);
78 status_t prepare_irq_routing(acpi_module_info* acpi, IRQRoutingTable& table,
/haiku/headers/os/drivers/
H A DISA.h48 const void *buffer, // buffer for making table
51 isa_dma_entry *table, // -> caller-supplied
52 // scatter/gather table
53 long num_entries // max # of entries in table
64 const isa_dma_entry *table, // physical address of
65 // scatter/gather table
/haiku/src/apps/terminal/
H A DThemeWindow.cpp134 for (const char** table = ThemeView::kColorTable; *table != NULL; ++table) {
136 *table, prefHandler->getString(*table));
/haiku/3rdparty/korli/
H A Dgenerate_ids_from_drivers.sh24 table=$4
25 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${5}.h - | sed -E -n "/${bsdname}_${table}\[/,/^$/p" | sed -r -e 's/.*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | uniq
34 table=$4
37 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
125 table=pci_id_table
128 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -DPCI_VENDOR_ID_ATHEROS=0x168c -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \)]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
136 table=devices
139 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/pci/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -D__FreeBSD_version -include $TOPDIR/$driverPath/dev/pci/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^iwx_probe/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \},]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
146 table=devices
149 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/pci/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -D__FreeBSD_version -include $TOPDIR/$driverPath/dev/pci/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/
[all...]
/haiku/src/system/kernel/arch/arm64/
H A Darch_vm_translation_map.cpp145 phys_addr_t table; local
147 table = pteVal & kPteAddrMask;
149 table = get_free_page(args) << page_bits;
150 dprintf("early: pulling page %lx\n", table);
151 uint64_t* newTableVa = TableFromPa(table);
165 atomic_set64((int64*) pte, table | 0x3);
168 map_page_early(table, level + 1, va, pa, get_free_page, args);
/haiku/src/system/boot/platform/openfirmware/arch/ppc/
H A Dmmu.cpp270 panic("%s: out of page table entries!\n", __func__);
335 dprintf("%i: found page table at va %p\n", i,
362 // map range into the page table
397 /*! Computes the recommended minimal page table size as
398 described in table 7-22 of the PowerPC "Programming
400 The page table size ranges from 64 kB (for 8 MB RAM)
596 // map range into the page table
625 // Find page table entry for this address
743 // get OpenFirmware's current page table
746 page_table_entry_group *table; local
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dfs_cache_priv.h25 hash_ent **table; member in struct:hash_table
/haiku/src/bin/keymap/
H A DKeymap.h58 struct re_registers& regs, uint32& table);
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DSignalsConfigView.h11 #include "table/Table.h"
52 virtual void TableSelectionChanged(Table* table);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DStackTraceView.h10 #include "table/Table.h"
43 virtual void TableSelectionChanged(Table* table);
/haiku/src/system/boot/platform/efi/
H A Defi_platform.h13 #include <efi/system-table.h>
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIControllerACPI.cpp187 IRQRoutingTable table; local
188 CHECK_RET(prepare_irq_routing(acpiModule, table, [](int32 gsi) {return true;}));
190 CHECK_RET(enable_irq_routing(acpiModule, table));
192 print_irq_routing_table(table);
/haiku/src/kits/shared/
H A DKeymap.cpp380 // if key is not mapped in the option table, fall-through.
422 // offset table string comparison is needed
521 uint32 table; local
529 table = B_SHIFT_TABLE;
533 table = B_CAPS_TABLE;
537 table = B_CAPS_SHIFT_TABLE;
541 table = B_CONTROL_TABLE;
545 table = B_OPTION_TABLE;
549 table = B_OPTION_SHIFT_TABLE;
553 table
[all...]
/haiku/src/add-ons/kernel/bus_managers/isa/
H A Disa.cpp44 isa_dma_entry *table, long num_entries)
52 start_scattered_isa_dma(long channel, const isa_dma_entry *table, argument
43 make_isa_dma_table(const void *buffer, long buffer_size, ulong num_bits, isa_dma_entry *table, long num_entries) argument
/haiku/src/apps/debuganalyzer/gui/table/
H A DTreeTable.h14 #include "table/AbstractTable.h"
15 #include "table/TableColumn.h"
106 TreeTableSelectionModel(TreeTable* table);
143 virtual void TreeTableSelectionChanged(TreeTable* table);
144 virtual void TreeTableNodeInvoked(TreeTable* table,
146 virtual void TreeTableNodeExpandedChanged(TreeTable* table,
149 virtual void TreeTableCellMouseDown(TreeTable* table,
153 virtual void TreeTableCellMouseUp(TreeTable* table,

Completed in 125 milliseconds

123456