Home
last modified time | relevance | path

Searched full:tables (Results 1 – 25 of 2586) sorted by relevance

12345678910>>...104

/openbmc/linux/drivers/comedi/drivers/
H A Dni_routes.h79 struct ni_route_tables *tables);
108 * @tables: pointer to relevant set of routing tables.
133 const struct ni_route_tables *tables);
146 * @tables: pointer to relevant set of routing tables.
151 const struct ni_route_tables *tables);
158 * @tables: pointer to relevant set of routing tables.
163 const struct ni_route_tables *tables) in route_is_valid() argument
165 return ni_route_to_register(src, dest, tables) >= 0; in route_is_valid()
193 * @tables: Routing tables for which to count all valid routes.
195 unsigned int ni_count_valid_routes(const struct ni_route_tables *tables);
[all …]
H A Dni_routes.c86 * Find the proper route_values and ni_device_routes tables for this particular
95 struct ni_route_tables *tables) in ni_find_device_routes() argument
108 tables->route_values = rv; in ni_find_device_routes()
109 tables->valid_routes = dr; in ni_find_device_routes()
123 * @tables: Pointer to assigned routing information.
137 struct ni_route_tables *tables) in ni_assign_device_routes() argument
139 memset(tables, 0, sizeof(struct ni_route_tables)); in ni_assign_device_routes()
141 tables); in ni_assign_device_routes()
147 * @tables: Routing tables for which to count all valid routes.
149 unsigned int ni_count_valid_routes(const struct ni_route_tables *tables) in ni_count_valid_routes() argument
[all …]
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/
H A D0004-call-native-helpers.patch24 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
25 … "${CMAKE_CURRENT_SOURCE_DIR}/e-name-western-tables.h.in" >${CMAKE_CURRENT_BINARY_DIR}/e-name-west…
26 … "${CMAKE_CURRENT_SOURCE_DIR}/e-name-western-tables.h.in" >${CMAKE_CURRENT_BINARY_DIR}/e-name-west…
27 DEPENDS gen-western-table e-name-western-tables.h.in
34 @@ -20,7 +20,7 @@ target_include_directories(camel-gen-tables PUBLIC
37 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
38 - COMMAND ${CMAKE_CURRENT_BINARY_DIR}/camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tabl…
39 + COMMAND camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
40 DEPENDS camel-gen-tables
/openbmc/linux/tools/perf/pmu-events/
H A Dempty-pmu-events.c385 for (const struct pmu_events_map *tables = &pmu_events_map[0]; in find_core_events_table() local
386 tables->arch; in find_core_events_table()
387 tables++) { in find_core_events_table()
388 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid)) in find_core_events_table()
389 return &tables->event_table; in find_core_events_table()
396 for (const struct pmu_events_map *tables = &pmu_events_map[0]; in find_core_metrics_table() local
397 tables->arch; in find_core_metrics_table()
398 tables++) { in find_core_metrics_table()
399 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid)) in find_core_metrics_table()
400 return &tables->metric_table; in find_core_metrics_table()
[all …]
H A Djevents.py16 # List of regular event tables.
18 # List of event tables generated from "/sys" directories.
20 # List of regular metric tables.
22 # List of metric tables generated from "/sys" directories.
733 """C struct mapping table array for tables from /sys directories."""
1036 for (const struct pmu_events_map *tables = &pmu_events_map[0];
1037 tables->arch;
1038 tables++) {
1039 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid))
1040 return &tables->event_table;
[all …]
/openbmc/linux/Documentation/admin-guide/acpi/
H A Dinitrd_table_override.rst4 Upgrading ACPI tables via initrd
11 upgrade the ACPI execution environment that is defined by the ACPI tables
12 via upgrading the ACPI tables provided by the BIOS with an instrumented,
13 modified, more recent version one, or installing brand new ACPI tables.
19 For a full list of ACPI tables that can be upgraded/installed, take a look
21 drivers/acpi/tables.c.
23 All ACPI tables iasl (Intel's ACPI compiler and disassembler) knows should
37 allows you to upgrade the buggy tables before your platform/BIOS vendor
45 platform provided ACPI tables or inserting new ACPI tables.
55 # Extract the machine's ACPI tables:
[all …]
/openbmc/linux/drivers/staging/media/sunxi/sun6i-isp/
H A Dsun6i_isp.c30 u32 *data = (u32 *)(isp_dev->tables.load.data + offset); in sun6i_isp_load_read()
38 u32 *data = (u32 *)(isp_dev->tables.load.data + offset); in sun6i_isp_load_write()
92 /* Tables */
117 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.load.address)); in sun6i_isp_tables_configure()
120 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.save.address)); in sun6i_isp_tables_configure()
123 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.lut.address)); in sun6i_isp_tables_configure()
126 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.drc.address)); in sun6i_isp_tables_configure()
129 SUN6I_ISP_ADDR_VALUE(isp_dev->tables.stats.address)); in sun6i_isp_tables_configure()
135 struct sun6i_isp_tables *tables = &isp_dev->tables; in sun6i_isp_tables_setup() local
138 tables->load.size = variant->table_load_save_size; in sun6i_isp_tables_setup()
[all …]
/openbmc/qemu/hw/i386/
H A Dacpi-microvm.c1 /* Support for generating ACPI tables and passing them to Guests
141 /* copy AML bytecode into ACPI tables blob */ in build_dsdt_microvm()
148 static void acpi_build_microvm(AcpiBuildTables *tables, in acpi_build_microvm() argument
154 GArray *tables_blob = tables->table_data; in acpi_build_microvm()
190 bios_linker_loader_alloc(tables->linker, in acpi_build_microvm()
196 build_dsdt_microvm(tables_blob, tables->linker, mms); in acpi_build_microvm()
201 build_fadt(tables_blob, tables->linker, &pmfadt, x86ms->oem_id, in acpi_build_microvm()
205 acpi_build_madt(tables_blob, tables->linker, X86_MACHINE(machine), in acpi_build_microvm()
214 build_erst(tables_blob, tables->linker, erst_dev, in acpi_build_microvm()
221 build_xsdt(tables_blob, tables->linker, table_offsets, x86ms->oem_id, in acpi_build_microvm()
[all …]
/openbmc/linux/security/apparmor/include/
H A Dmatch.h21 * The format used for transition tables is based on the GNU flex table
22 * file format (--tables-file option; see Table File Format in the flex
25 * new tables have been defined and others YY_ID_CHK (check) and YY_ID_DEF
26 * (default) tables are used slightly differently (see the apparmor-parser
30 * The data in the packed dfa is stored in network byte order, and the tables
35 * tables.
73 /* ACCEPT & ACCEPT2 tables gets 6 dedicated flags, YYTD_DATAX define the
90 #define DEFAULT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_DEF]->td_data))
91 #define BASE_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_BASE]->td_data))
92 #define NEXT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_NXT]->td_data))
[all …]
/openbmc/qemu/hw/loongarch/
H A Dacpi-build.c3 * Support for generating ACPI tables and passing them to Guests
472 /* Copy AML table into ACPI tables blob and patch header there */ in build_dsdt()
478 static void acpi_build(AcpiBuildTables *tables, MachineState *machine) in acpi_build() argument
485 GArray *tables_blob = tables->table_data; in acpi_build()
490 ACPI_BUILD_DPRINTF("init ACPI tables\n"); in acpi_build()
492 bios_linker_loader_alloc(tables->linker, in acpi_build()
506 build_dsdt(tables_blob, tables->linker, machine); in acpi_build()
508 /* ACPI tables pointed to by RSDT */ in acpi_build()
513 build_fadt(tables_blob, tables->linker, &fadt_data, in acpi_build()
517 build_madt(tables_blob, tables->linker, lvms); in acpi_build()
[all …]
/openbmc/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c108 struct tables { struct
126 static struct tables tables_global; argument
1136 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel() local
1144 call_object(tables->evsel_handler, t, "evsel_table"); in python_export_evsel()
1154 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine() local
1163 call_object(tables->machine_handler, t, "machine_table"); in python_export_machine()
1173 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread() local
1184 call_object(tables->thread_handler, t, "thread_table"); in python_export_thread()
1194 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm() local
1205 call_object(tables->comm_handler, t, "comm_table"); in python_export_comm()
[all …]
/openbmc/linux/Documentation/arch/x86/
H A Dpti.rst15 page tables for use only when running userspace applications. When
17 page tables are switched to the full "kernel" copy. When the system
20 The userspace page tables contain only a minimal amount of kernel
36 When PTI is enabled, the kernel manages two sets of page tables.
41 Although _complete_, the user portion of the kernel page tables is
46 The userspace page tables map only the kernel data needed to enter
52 page tables like normal. The only difference is when the kernel
55 userspace page tables' PGD.
58 layers of the page tables. This leaves a single, shared set of
59 userspace page tables to manage. One PTE to lock, one set of
[all …]
/openbmc/linux/security/apparmor/
H A Dmatch.c123 /* if table was vmalloced make sure the page tables are synced in unpack_table()
138 * verify_table_headers - verify that the tables headers are as expected
139 * @tables - array of dfa tables to check (NOT NULL)
147 static int verify_table_headers(struct table_header **tables, int flags) in verify_table_headers() argument
152 /* check that required tables exist */ in verify_table_headers()
153 if (!(tables[YYTD_ID_DEF] && tables[YYTD_ID_BASE] && in verify_table_headers()
154 tables[YYTD_ID_NXT] && tables[YYTD_ID_CHK])) in verify_table_headers()
158 state_count = tables[YYTD_ID_BASE]->td_lolen; in verify_table_headers()
160 if (!tables[YYTD_ID_ACCEPT]) in verify_table_headers()
162 if (state_count != tables[YYTD_ID_ACCEPT]->td_lolen) in verify_table_headers()
[all …]
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-firmware-dmi-tables1 What: /sys/firmware/dmi/tables/
13 The dmi/tables provides raw SMBIOS entry point and DMI tables
18 /sys/firmware/dmi/tables/smbios_entry_point
19 /sys/firmware/dmi/tables/DMI
22 tables.
/openbmc/linux/tools/power/acpi/man/
H A Dacpidump.83 acpidump \- dump a system's ACPI tables to an ASCII file
12 dumps the systems ACPI tables to an ASCII file appropriate for
23 Dump tables to binary files
32 Dump tables from specified RSDP
64 Invocation without parameters dumps all available tables.
106 /sys/firmware/acpi/tables/*
107 /sys/firmware/acpi/tables/dynamic/*
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Durls.py12 from toastergui import tables
24 tables.AllBuildsTable.as_view(template_name="builds-toastertable.html"),
100 tables.ProjectsTable.as_view(template_name="projects-toastertable.html"),
106 tables.ProjectBuildsTable.as_view(template_name="projectbuilds-toastertable.html"),
119 tables.MachinesTable.as_view(template_name="generic-toastertable-page.html"),
123 tables.SoftwareRecipesTable.as_view(template_name="generic-toastertable-page.html"),
127tables.ImageRecipesTable.as_view(template_name="generic-toastertable-page.html"), name="projectima…
130tables.CustomImagesTable.as_view(template_name="generic-toastertable-page.html"), name="projectcus…
133 tables.NewCustomImagesTable.as_view(template_name="newcustomimage.html"),
137 tables.LayersTable.as_view(template_name="generic-toastertable-page.html"),
[all …]
/openbmc/u-boot/lib/efi_selftest/
H A Defi_selftest_config_table.c95 const unsigned int tables[2]; in execute() local
137 (void *)&tables[0]); in execute()
156 if (!efi_st_memcmp(&sys_table->tables[i].guid, &table_guid, in execute()
158 table = sys_table->tables[i].table; in execute()
164 if (table != &tables[0]) { in execute()
175 (void *)&tables[1]); in execute()
195 if (!efi_st_memcmp(&sys_table->tables[i].guid, &table_guid, in execute()
197 table = sys_table->tables[i].table; in execute()
209 if (table != &tables[1]) { in execute()
238 if (!efi_st_memcmp(&sys_table->tables[i].guid, &table_guid, in execute()
[all …]
/openbmc/qemu/hw/arm/
H A Dvirt-acpi-build.c1 /* Support for generating ACPI tables and passing them to Guests
866 /* copy AML table into ACPI tables blob */ in build_dsdt()
893 void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables) in virt_acpi_build() argument
898 GArray *tables_blob = tables->table_data; in virt_acpi_build()
904 bios_linker_loader_alloc(tables->linker, in virt_acpi_build()
910 build_dsdt(tables_blob, tables->linker, vms); in virt_acpi_build()
914 build_fadt_rev6(tables_blob, tables->linker, vms, dsdt); in virt_acpi_build()
917 build_madt(tables_blob, tables->linker, vms); in virt_acpi_build()
921 build_pptt(tables_blob, tables->linker, ms, in virt_acpi_build()
926 build_gtdt(tables_blob, tables->linker, vms); in virt_acpi_build()
[all …]
/openbmc/qemu/hw/riscv/
H A Dvirt-acpi-build.c2 * Support for generating ACPI tables and passing them to Guests
469 /* copy AML table into ACPI tables blob and patch header there */ in build_dsdt()
648 static void virt_acpi_build(RISCVVirtState *s, AcpiBuildTables *tables) in virt_acpi_build() argument
652 GArray *tables_blob = tables->table_data; in virt_acpi_build()
658 bios_linker_loader_alloc(tables->linker, in virt_acpi_build()
664 build_dsdt(tables_blob, tables->linker, s); in virt_acpi_build()
668 build_fadt_rev6(tables_blob, tables->linker, s, dsdt); in virt_acpi_build()
671 build_madt(tables_blob, tables->linker, s); in virt_acpi_build()
674 build_rhct(tables_blob, tables->linker, s); in virt_acpi_build()
677 spcr_setup(tables_blob, tables->linker, s); in virt_acpi_build()
[all …]
/openbmc/linux/Documentation/crypto/
H A Ddescore-readme.rst62 - 30us per encryption (options: 64k tables, no IP/FP)
63 - 33us per encryption (options: 64k tables, FIPS standard bit ordering)
64 - 45us per encryption (options: 2k tables, no IP/FP)
65 - 48us per encryption (options: 2k tables, FIPS standard bit ordering)
66 - 275us to set a new key (uses 1k of key tables)
80 - 53us per encryption (uses 2k of tables)
81 - 96us to set a new key (uses 2.25k of key tables)
106 - 68us per encryption (uses 2k of tables)
107 - 96us to set a new key (uses 2.25k of key tables)
126 he claims to use 280k of tables but the iteration calculation seems
[all …]
/openbmc/linux/drivers/net/ipa/
H A Dipa_table.h23 * ipa_table_hash_support() - Return true if hashed tables are supported
32 * ipa_table_reset() - Reset filter and route tables entries to "none"
45 * ipa_table_setup() - Set up filter and route tables
53 * ipa_table_config() - Configure filter and route tables
61 * ipa_table_init() - Do early initialization of filter and route tables
75 * @filter: Whether to check filter or routing tables
/openbmc/linux/drivers/iio/
H A Dindustrialio-gts-helper.c140 * iio_gts_purge_avail_scale_table - free-up the available scale tables
176 * Sort the tables for nice output and for easier finding of in gain_to_scaletables()
260 * iio_gts_build_avail_scale_table - create tables of available scales
263 * Build the tables which can represent the available scales based on the
264 * originally given gain and time tables. When both time and gain tables are
266 * 1. A set of tables representing available scales for each supported
271 * NOTE: Space allocated for the tables must be freed using
272 * iio_gts_purge_avail_scale_table() when the tables are no longer needed.
347 * NOTE: Space allocated for the tables must be freed using
348 * iio_gts_purge_avail_time_table() when the tables are no longer needed.
[all …]
/openbmc/qemu/tests/data/acpi/
H A Drebuild-expected-aml.sh17 if [ ! -e "tests/qtest/bios-tables-test" ]; then
18 echo "Test: bios-tables-test is required! Run make check before this script."
50 TEST_ACPI_REBUILD_AML=y QTEST_QEMU_BINARY=$qemu tests/qtest/bios-tables-test
55 …omma-separated changed AML files to ignore' ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.…
57 …separated changed AML files to ignore */' > ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h
64 echo "Note! Please follow the process documented in ${SRC_PATH}/tests/qtest/bios-tables-test.c"
/openbmc/linux/Documentation/firmware-guide/acpi/
H A Dacpi-lid.rst15 using a control method lid device. To implement this, the AML tables issue
31 However the word of "current" has ambiguity, some buggy AML tables return
35 initial returning value. When the AML tables implement this control method
42 There are buggy AML tables never notifying when the lid device state is
44 it is guaranteed that the AML tables always notify "closed" when the lid
47 tested, it is reliable from all AML tables.
85 isn't ready to handle the buggy AML tables.
107 opens given that some AML tables do not send "opened" notifications
114 handle the buggy AML tables.
/openbmc/linux/net/ipv4/
H A Dudp_tunnel_nic.c35 * @n_tables: number of tables under @entries
36 * @missed: bitmap of tables which overflown
37 * @entries: table of tables of ports currently offloaded
136 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_is_empty()
152 table = &dev->udp_tunnel_nic_info->tables[i]; in udp_tunnel_nic_should_replay()
245 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_device_sync_by_port()
259 for (j = 0; j < info->tables[i].n_entries; j++) in udp_tunnel_nic_device_sync_by_table()
262 if (j == info->tables[i].n_entries) in udp_tunnel_nic_device_sync_by_table()
270 for (j = 0; j < info->tables[i].n_entries; j++) { in udp_tunnel_nic_device_sync_by_table()
339 if (udp_tunnel_nic_table_is_capable(&info->tables[i], ti)) in udp_tunnel_nic_is_capable()
[all …]

12345678910>>...104