Home
last modified time | relevance | path

Searched refs:entry_id (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/sys/dev/pci/drm/amd/pm/powerplay/hwmgr/
Dsmu7_hwmgr.c2201 uint8_t entry_id; in smu7_patch_voltage_dependency_tables_with_lookup_table() local
2215 for (entry_id = 0; entry_id < sclk_table->count; ++entry_id) { in smu7_patch_voltage_dependency_tables_with_lookup_table()
2216 voltage_id = sclk_table->entries[entry_id].vddInd; in smu7_patch_voltage_dependency_tables_with_lookup_table()
2217 sclk_table->entries[entry_id].vddgfx = in smu7_patch_voltage_dependency_tables_with_lookup_table()
2221 for (entry_id = 0; entry_id < sclk_table->count; ++entry_id) { in smu7_patch_voltage_dependency_tables_with_lookup_table()
2222 voltage_id = sclk_table->entries[entry_id].vddInd; in smu7_patch_voltage_dependency_tables_with_lookup_table()
2223 sclk_table->entries[entry_id].vddc = in smu7_patch_voltage_dependency_tables_with_lookup_table()
2228 for (entry_id = 0; entry_id < mclk_table->count; ++entry_id) { in smu7_patch_voltage_dependency_tables_with_lookup_table()
2229 voltage_id = mclk_table->entries[entry_id].vddInd; in smu7_patch_voltage_dependency_tables_with_lookup_table()
2230 mclk_table->entries[entry_id].vddc = in smu7_patch_voltage_dependency_tables_with_lookup_table()
[all …]
Dsmu_helper.c464 uint8_t entry_id; in phm_get_sclk_for_voltage_evv() local
472 for (entry_id = 0; entry_id < table_info->vdd_dep_on_sclk->count; entry_id++) { in phm_get_sclk_for_voltage_evv()
473 voltage_id = table_info->vdd_dep_on_sclk->entries[entry_id].vddInd; in phm_get_sclk_for_voltage_evv()
478 if (entry_id >= table_info->vdd_dep_on_sclk->count) { in phm_get_sclk_for_voltage_evv()
483 *sclk = table_info->vdd_dep_on_sclk->entries[entry_id].clk; in phm_get_sclk_for_voltage_evv()
Dvega10_hwmgr.c528 uint8_t entry_id; in vega10_get_socclk_for_voltage_evv() local
538 for (entry_id = 0; entry_id < table_info->vdd_dep_on_sclk->count; entry_id++) { in vega10_get_socclk_for_voltage_evv()
539 voltage_id = table_info->vdd_dep_on_socclk->entries[entry_id].vddInd; in vega10_get_socclk_for_voltage_evv()
544 PP_ASSERT_WITH_CODE(entry_id < table_info->vdd_dep_on_socclk->count, in vega10_get_socclk_for_voltage_evv()
548 *socclk = table_info->vdd_dep_on_socclk->entries[entry_id].clk; in vega10_get_socclk_for_voltage_evv()
670 uint8_t entry_id, voltage_id; in vega10_patch_voltage_dependency_tables_with_lookup_table() local
690 for (entry_id = 0; entry_id < vdt->count; entry_id++) { in vega10_patch_voltage_dependency_tables_with_lookup_table()
691 voltage_id = vdt->entries[entry_id].vddInd; in vega10_patch_voltage_dependency_tables_with_lookup_table()
692 vdt->entries[entry_id].vddc = in vega10_patch_voltage_dependency_tables_with_lookup_table()
697 for (entry_id = 0; entry_id < mm_table->count; ++entry_id) { in vega10_patch_voltage_dependency_tables_with_lookup_table()
[all …]
Dppatomctrl.c1160 int entry_id; in atomctrl_get_voltage_evv() local
1163 for (entry_id = 0; entry_id < hwmgr->dyn_state.vddc_dependency_on_sclk->count; entry_id++) { in atomctrl_get_voltage_evv()
1164 if (hwmgr->dyn_state.vddc_dependency_on_sclk->entries[entry_id].v == virtual_voltage_id) { in atomctrl_get_voltage_evv()
1170 if (entry_id >= hwmgr->dyn_state.vddc_dependency_on_sclk->count) { in atomctrl_get_voltage_evv()
1179 cpu_to_le32(hwmgr->dyn_state.vddc_dependency_on_sclk->entries[entry_id].clk); in atomctrl_get_voltage_evv()
/openbsd/src/sys/net/
Dpfvar_priv.h112 RBT_ENTRY(pf_state) entry_id; /* [P] */
150 RBT_PROTOTYPE(pf_state_tree_id, pf_state, entry_id, pf_state_compare_id);
Dpf.c315 RBT_GENERATE(pf_state_tree_id, pf_state, entry_id, pf_state_compare_id);
/openbsd/src/sys/dev/pci/drm/radeon/
Dradeon_atombios.c3321 u32 entry_id; in radeon_atom_get_voltage_evv() local
3325 for (entry_id = 0; entry_id < count; entry_id++) { in radeon_atom_get_voltage_evv()
3326 if (rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries[entry_id].v == in radeon_atom_get_voltage_evv()
3331 if (entry_id >= count) in radeon_atom_get_voltage_evv()
3338 cpu_to_le32(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries[entry_id].clk); in radeon_atom_get_voltage_evv()
/openbsd/src/gnu/llvm/llvm/include/llvm/BinaryFormat/
DMachO.h904 uint32_t entry_id; member
1435 sys::swapByteOrder(C.entry_id); in swapStruct()
/openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/
DMachOYAML.cpp630 IO.mapRequired("id", LoadCommand.entry_id); in mapping()