Home
last modified time | relevance | path

Searched refs:table (Results 151 – 175 of 3440) sorted by relevance

12345678910>>...138

/openbmc/linux/drivers/infiniband/hw/cxgb4/
H A Did_table.c51 obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last); in c4iw_id_alloc()
53 obj = find_first_zero_bit(alloc->table, alloc->max); in c4iw_id_alloc()
62 __set_bit(obj, alloc->table); in c4iw_id_alloc()
78 __clear_bit(obj, alloc->table); in c4iw_id_free()
93 alloc->table = bitmap_zalloc(num, GFP_KERNEL); in c4iw_id_table_alloc()
94 if (!alloc->table) in c4iw_id_table_alloc()
98 bitmap_set(alloc->table, 0, reserved); in c4iw_id_table_alloc()
105 bitmap_free(alloc->table); in c4iw_id_table_free()
/openbmc/linux/drivers/net/wireless/broadcom/b43/
H A Dtables_lpphy.h10 #define B43_LPTAB8(table, offset) (((table) << 10) | (offset) | B43_LPTAB_8BIT) argument
11 #define B43_LPTAB16(table, offset) (((table) << 10) | (offset) | B43_LPTAB_16BIT) argument
12 #define B43_LPTAB32(table, offset) (((table) << 10) | (offset) | B43_LPTAB_32BIT) argument
39 struct lpphy_tx_gain_table_entry *table);
H A Dtables_phy_lcn.h10 #define B43_LCNTAB8(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_8BIT) argument
11 #define B43_LCNTAB16(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_16BIT) argument
12 #define B43_LCNTAB32(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_32BIT) argument
H A Dtables_phy_ht.h10 #define B43_HTTAB8(table, offset) (((table) << 10) | (offset) | B43_HTTAB_8BIT) argument
11 #define B43_HTTAB16(table, offset) (((table) << 10) | (offset) | B43_HTTAB_16BIT) argument
12 #define B43_HTTAB32(table, offset) (((table) << 10) | (offset) | B43_HTTAB_32BIT) argument
/openbmc/linux/drivers/net/wireguard/
H A Dallowedips.h35 void wg_allowedips_init(struct allowedips *table);
36 void wg_allowedips_free(struct allowedips *table, struct mutex *mutex);
37 int wg_allowedips_insert_v4(struct allowedips *table, const struct in_addr *ip,
39 int wg_allowedips_insert_v6(struct allowedips *table, const struct in6_addr *ip,
41 void wg_allowedips_remove_by_peer(struct allowedips *table,
47 struct wg_peer *wg_allowedips_lookup_dst(struct allowedips *table,
49 struct wg_peer *wg_allowedips_lookup_src(struct allowedips *table,
H A Dallowedips.c252 void wg_allowedips_init(struct allowedips *table) in wg_allowedips_init() argument
254 table->root4 = table->root6 = NULL; in wg_allowedips_init()
255 table->seq = 1; in wg_allowedips_init()
260 struct allowedips_node __rcu *old4 = table->root4, *old6 = table->root6; in wg_allowedips_free()
262 ++table->seq; in wg_allowedips_free()
263 RCU_INIT_POINTER(table->root4, NULL); in wg_allowedips_free()
264 RCU_INIT_POINTER(table->root6, NULL); in wg_allowedips_free()
287 ++table->seq; in wg_allowedips_insert_v4()
289 return add(&table->root4, 32, key, cidr, peer, lock); in wg_allowedips_insert_v4()
298 ++table->seq; in wg_allowedips_insert_v6()
[all …]
/openbmc/linux/drivers/gpu/drm/radeon/
H A Dmkregtable.c111 struct table { struct
115 unsigned *table; member
136 static void table_init(struct table *t) in table_init()
141 t->table = NULL; in table_init()
144 static void table_print(struct table *t) in table_print()
162 printf("0x%08X,", t->table[id++]); in table_print()
169 static int table_build(struct table *t) in table_build()
176 if (t->table == NULL) in table_build()
178 memset(t->table, 0xff, sizeof(unsigned) * t->nentry); in table_build()
183 t->table[i] ^= m; in table_build()
[all …]
H A Dcypress_dpm.c416 if (i == table->count) in cypress_populate_voltage_value()
1325 table->initialState.levels[1] = table->initialState.levels[0]; in cypress_populate_smc_initial_state()
1326 table->initialState.levels[2] = table->initialState.levels[0]; in cypress_populate_smc_initial_state()
1357 table->ACPIState = table->initialState; in cypress_populate_smc_acpi_state()
1464 table->ACPIState.levels[1] = table->ACPIState.levels[0]; in cypress_populate_smc_acpi_state()
1465 table->ACPIState.levels[2] = table->ACPIState.levels[0]; in cypress_populate_smc_acpi_state()
1521 table->highSMIO[i] = 0; in cypress_populate_smc_voltage_table()
1527 RV770_SMC_STATETABLE *table) in cypress_populate_smc_voltage_tables() argument
1536 table); in cypress_populate_smc_voltage_tables()
1554 table); in cypress_populate_smc_voltage_tables()
[all …]
/openbmc/u-boot/drivers/input/
H A Dinput.c249 struct input_key_xlate *table; in process_modifier() local
254 table = &config->table[0]; in process_modifier()
259 table = tab; in process_modifier()
300 return table; in process_modifier()
455 struct input_key_xlate *table; in input_keycodes_to_ascii() local
459 table = &config->table[0]; in input_keycodes_to_ascii()
465 if (key >= table->num_entries || table->xlate[key] == 0xff) { in input_keycodes_to_ascii()
481 ch = table->xlate[key]; in input_keycodes_to_ascii()
586 struct input_key_xlate *table; in input_add_table() local
593 table = &config->table[config->num_tables++]; in input_add_table()
[all …]
/openbmc/webui-vue/src/views/Logs/PostCodeLogs/
H A DPostCodeLogs.vue12 <table-cell-count
15 ></table-cell-count>
43 <table-toolbar
49 <table-toolbar-export
54 </table-toolbar>
55 <b-table
56 id="table-post-code-logs"
57 ref="table"
106 <table-row-action
122 </table-row-action>
[all …]
/openbmc/webui-vue/src/views/Logs/Dumps/
H A DDumps.vue22 <table-cell-count
25 ></table-cell-count>
34 <table-filter
40 <table-toolbar
46 <b-table
47 ref="table"
98 <table-row-action
111 </table-row-action>
113 </b-table>
121 class="table-pagination-select"
[all …]
/openbmc/linux/security/apparmor/
H A Dmatch.c108 if (table) { in unpack_table()
109 table->td_id = th.td_id; in unpack_table()
131 return table; in unpack_table()
133 kvfree(table); in unpack_table()
354 if (!table) in aa_dfa_unpack()
357 switch (table->td_id) { in aa_dfa_unpack()
386 dfa->tables[table->td_id] = table; in aa_dfa_unpack()
387 data += table_size(table->td_lolen, table->td_flags); in aa_dfa_unpack()
388 size -= table_size(table->td_lolen, table->td_flags); in aa_dfa_unpack()
389 table = NULL; in aa_dfa_unpack()
[all …]
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventory.vue25 <!-- System table -->
26 <table-system ref="system" />
28 <!-- BMC manager table -->
29 <table-bmc-manager ref="bmc" />
31 <!-- Chassis table -->
34 <!-- DIMM slot table -->
37 <!-- Fans table -->
38 <table-fans ref="fans" />
40 <!-- Power supplies table -->
43 <!-- Processors table -->
[all …]
/openbmc/linux/drivers/acpi/acpica/
H A Drsdump.c187 count = table->offset; in acpi_rs_dump_descriptor()
192 name = table->name; in acpi_rs_dump_descriptor()
194 switch (table->opcode) { in acpi_rs_dump_descriptor()
199 if (table->name) { in acpi_rs_dump_descriptor()
221 if (table->pointer) { in acpi_rs_dump_descriptor()
223 table->pointer[*target]); in acpi_rs_dump_descriptor()
249 table->pointer[*target & 0x01]); in acpi_rs_dump_descriptor()
255 table->pointer[*target & 0x03]); in acpi_rs_dump_descriptor()
261 table->pointer[*target & 0x07]); in acpi_rs_dump_descriptor()
373 table->opcode); in acpi_rs_dump_descriptor()
[all …]
H A Ddbfileio.c88 struct acpi_table_header *table; in acpi_db_load_tables() local
94 table = table_list_head->table; in acpi_db_load_tables()
96 status = acpi_load_table(table, NULL); in acpi_db_load_tables()
101 table->signature); in acpi_db_load_tables()
112 table->signature); in acpi_db_load_tables()
/openbmc/linux/include/net/
H A Dudp_tunnel.h254 unsigned int table, unsigned int entry,
257 unsigned int table, unsigned int entry,
261 int (*sync_table)(struct net_device *dev, unsigned int table);
284 void (*get_port)(struct net_device *dev, unsigned int table,
286 void (*set_port_priv)(struct net_device *dev, unsigned int table,
292 size_t (*dump_size)(struct net_device *dev, unsigned int table);
293 int (*dump_write)(struct net_device *dev, unsigned int table,
316 udp_tunnel_nic_ops->get_port(dev, table, idx, ti); in udp_tunnel_nic_get_port()
324 udp_tunnel_nic_ops->set_port_priv(dev, table, idx, priv); in udp_tunnel_nic_set_port_priv()
368 return udp_tunnel_nic_ops->dump_size(dev, table); in udp_tunnel_nic_dump_size()
[all …]
/openbmc/linux/drivers/cpufreq/
H A Dtegra186-cpufreq.c61 struct cpufreq_frequency_table *table; member
133 struct cpufreq_frequency_table *table; in init_vhint_table() local
159 table = ERR_PTR(err); in init_vhint_table()
163 table = ERR_PTR(-EINVAL); in init_vhint_table()
180 table = devm_kcalloc(&pdev->dev, num_rates + 1, sizeof(*table), in init_vhint_table()
182 if (!table) { in init_vhint_table()
183 table = ERR_PTR(-ENOMEM); in init_vhint_table()
205 point = &table[j++]; in init_vhint_table()
215 return table; in init_vhint_table()
246 if (IS_ERR(cluster->table)) { in tegra186_cpufreq_probe()
[all …]
/openbmc/linux/net/
H A Dsysctl_net.c43 struct ctl_table *table) in net_ctl_permissions() argument
49 int mode = (table->mode >> 6) & 7; in net_ctl_permissions()
53 return table->mode; in net_ctl_permissions()
57 struct ctl_table *table, in net_ctl_set_ownership() argument
125 struct ctl_table *table, size_t table_size) in ensure_safe_net_sysctl() argument
130 ent = table; in ensure_safe_net_sysctl()
166 struct ctl_table *table, in register_net_sysctl_sz() argument
173 ensure_safe_net_sysctl(net, path, table, table_size); in register_net_sysctl_sz()
175 entry = table; in register_net_sysctl_sz()
179 return __register_sysctl_table(&net->sysctls, path, table, count); in register_net_sysctl_sz()
/openbmc/linux/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_nsp_eth.c191 table->max_index = max(table->max_index, table->ports[i].index); in nfp_eth_calc_port_geometry()
195 table->ports[j].label_port) in nfp_eth_calc_port_geometry()
197 table->ports[i].port_lanes += table->ports[j].lanes; in nfp_eth_calc_port_geometry()
205 table->ports[i].label_port, in nfp_eth_calc_port_geometry()
208 table->ports[i].is_split = true; in nfp_eth_calc_port_geometry()
282 struct nfp_eth_table *table; in __nfp_eth_read_ports() local
309 table = kzalloc(struct_size(table, ports, cnt), GFP_KERNEL); in __nfp_eth_read_ports()
310 if (!table) in __nfp_eth_read_ports()
313 table->count = cnt; in __nfp_eth_read_ports()
317 &table->ports[j++]); in __nfp_eth_read_ports()
[all …]
/openbmc/pldm/libpldmresponder/test/
H A Dlibpldmresponder_systemspecific_bios_test.cpp131 auto str = table::string::decodeString(entry); in TEST_F()
142 auto header = table::attribute::decodeHeader(entry); in TEST_F()
215 auto header = table::attribute_value::decodeHeader(entry); in TEST_F()
216 auto attrEntry = table::attribute::findByHandle(*attrTable, in TEST_F()
218 auto attrHeader = table::attribute::decodeHeader(attrEntry); in TEST_F()
287 auto header = table::attribute::decodeHeader(entry); in TEST_F()
299 table::attribute::decodeStringEntry(entry); in TEST_F()
344 Table table; in TEST_F() local
347 table::string::constructEntry(table, elem); in TEST_F()
350 table::appendPadAndChecksum(table); in TEST_F()
[all …]
/openbmc/u-boot/arch/arm/mach-socfpga/
H A Dwrap_iocsr_config.c14 const unsigned long **table, in iocsr_get_config_table() argument
19 *table = iocsr_scan_chain0_table; in iocsr_get_config_table()
23 *table = iocsr_scan_chain1_table; in iocsr_get_config_table()
27 *table = iocsr_scan_chain2_table; in iocsr_get_config_table()
31 *table = iocsr_scan_chain3_table; in iocsr_get_config_table()
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dmp.c58 u32 *table, id = get_my_id(); in cpu_status() local
64 table = (u32 *)&__spin_table; in cpu_status()
65 printf("table base @ 0x%p\n", table); in cpu_status()
69 table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY; in cpu_status()
72 printf("table @ 0x%p\n", table); in cpu_status()
74 printf(" r3 - 0x%08x\n", table[BOOT_ENTRY_R3_LOWER]); in cpu_status()
75 printf(" pir - 0x%08x\n", table[BOOT_ENTRY_PIR]); in cpu_status()
165 table[entry] = val; in cpu_release()
169 table[BOOT_ENTRY_ADDR_UPPER] = (u32)(boot_addr >> 32); in cpu_release()
252 u32 *table = (u32 *)&__spin_table; in plat_mp_up() local
[all …]
/openbmc/linux/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dsmu8_hwmgr.c561 if (NULL == table || table->count <= 0) in smu8_init_sclk_limit()
572 clock = table->entries[table->count - 1].clk; in smu8_init_sclk_limit()
588 if (NULL == table || table->count <= 0) in smu8_init_uvd_limit()
599 clock = table->entries[table->count - 1].vclk; in smu8_init_uvd_limit()
615 if (NULL == table || table->count <= 0) in smu8_init_vce_limit()
626 clock = table->entries[table->count - 1].ecclk; in smu8_init_vce_limit()
642 if (NULL == table || table->count <= 0) in smu8_init_acp_limit()
653 clock = table->entries[table->count - 1].acpclk; in smu8_init_acp_limit()
1179 if (NULL == table || table->count <= 0) in smu8_phm_unforce_dpm_levels()
1190 clock = table->entries[table->count - 1].clk; in smu8_phm_unforce_dpm_levels()
[all …]
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman-gnome/
H A D0001-Port-to-Gtk3.patch36 gtk_table_set_row_spacings(GTK_TABLE(table), 4);
37 gtk_table_set_col_spacings(GTK_TABLE(table), 20);
174 - table = gtk_table_new(1, 1, TRUE);
175 + table = gtk_table_new(1, 1, FALSE);
176 gtk_table_set_row_spacings(GTK_TABLE(table), 10);
177 gtk_table_set_col_spacings(GTK_TABLE(table), 10);
183 - table = gtk_table_new(5, 5, TRUE);
184 + table = gtk_table_new(5, 5, FALSE);
185 gtk_table_set_row_spacings(GTK_TABLE(table), 10);
240 - table = gtk_table_new(1, 1, TRUE);
[all …]
/openbmc/webui-vue/src/views/Logs/EventLogs/
H A DEventLogs.vue13 <table-cell-count
16 ></table-cell-count>
45 <table-toolbar
63 <table-toolbar-export
68 </table-toolbar>
69 <b-table
70 id="table-event-logs"
71 ref="table"
197 <table-row-action
211 </table-row-action>
[all …]

12345678910>>...138