/openbmc/openpower-proc-control/extensions/phal/ |
H A D | phal_error.cpp | 328 pelAdditionalData.emplace_back(ele.first, ele.second); in processNonFunctionalBootProc() 372 std::pair<std::string, std::string>& ele) -> void { in processClockInfoErrorHelper() argument 374 keyWithPrefix.append(ele.first); in processClockInfoErrorHelper() 408 std::pair<std::string, std::string>& ele) -> void { in processClockInfoErrorHelper() argument 409 pelAdditionalData.emplace_back(ele.first, ele.second); in processClockInfoErrorHelper() 538 pelAdditionalData.emplace_back(ele.first, ele.second); in processPoweroffError() 591 keyWithPrefix.append(ele.first); in processBootErrorHelper() 594 ele.second); in processBootErrorHelper() 766 pelAdditionalData.emplace_back(ele.first, ele.second); in processBootErrorHelper() 876 pelAdditionalData.emplace_back(ele.first, ele.second); in processSbeBootError() [all …]
|
/openbmc/linux/arch/um/drivers/ |
H A D | port_kern.c | 131 struct list_head *ele; in port_work_proc() local 135 list_for_each(ele, &ports) { in port_work_proc() 136 port = list_entry(ele, struct port_list, list); in port_work_proc() 160 struct list_head *ele; in port_data() local 166 list_for_each(ele, &ports) { in port_data() 167 port = list_entry(ele, struct port_list, list); in port_data() 293 struct list_head *ele; in free_port() local 296 list_for_each(ele, &ports) { in free_port() 297 port = list_entry(ele, struct port_list, list); in free_port()
|
H A D | chan_kern.c | 112 struct list_head *ele; in open_chan() local 116 list_for_each(ele, chans) { in open_chan() 117 chan = list_entry(ele, struct chan, list); in open_chan() 141 struct list_head *ele; in enable_chan() local 147 list_for_each(ele, &line->chan_list) { in enable_chan() 148 chan = list_entry(ele, struct chan, list); in enable_chan() 187 struct list_head *ele; in free_irqs() local 194 list_for_each(ele, &list) { in free_irqs() 329 struct list_head *ele, *next; in free_chan() local 332 list_for_each_safe(ele, next, chans) { in free_chan() [all …]
|
H A D | net_kern.c | 492 struct list_head *ele; in find_device() local 495 list_for_each(ele, &devices) { in find_device() 575 struct list_head *ele, *next; in register_transport() local 586 list_for_each_safe(ele, next, ð_cmd_line) { in register_transport() 587 eth = list_entry(ele, struct eth_init, list); in register_transport() 602 struct list_head *ele; in eth_setup_common() local 609 list_for_each(ele, &transports) { in eth_setup_common() 763 struct list_head *ele; in inet_register() local 775 list_for_each(ele, &opened) { in inet_register() 805 struct list_head *ele; in close_devices() local [all …]
|
H A D | mconsole_kern.c | 266 struct list_head *ele; in mconsole_find_dev() local 269 list_for_each(ele, &mconsole_devices) { in mconsole_find_dev() 270 dev = list_entry(ele, struct mc_device, list); in mconsole_find_dev() 562 struct list_head *ele; in console_write() local 574 list_for_each(ele, &clients) { in console_write() 577 entry = list_entry(ele, struct mconsole_output, list); in console_write()
|
H A D | line.c | 711 struct list_head *ele, *next; in unregister_winch() local 717 list_for_each_safe(ele, next, &winch_handlers) { in unregister_winch() 718 winch = list_entry(ele, struct winch, list); in unregister_winch()
|
H A D | vector_kern.c | 698 struct list_head *ele; in find_device() local 701 list_for_each(ele, &vector_devices) { in find_device() 702 device = list_entry(ele, struct vector_device, list); in find_device() 1674 struct list_head *ele; in vector_init() local 1678 list_for_each(ele, &vec_cmd_line) { in vector_init() 1679 def = list_entry(ele, struct vector_cmd_line_arg, list); in vector_init()
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | fapi_data_process.cpp | 268 const std::pair<std::string, std::string>& ele) -> void { in processClockInfoErrorHelper() argument 270 keyWithPrefix.append(ele.first); in processClockInfoErrorHelper() 272 ffdcUserData.emplace_back(keyWithPrefix, ele.second); in processClockInfoErrorHelper() 321 [&ffdcUserData](std::pair<std::string, std::string>& ele) -> void { in convertFAPItoPELformat() argument 323 keyWithPrefix.append(ele.first); in convertFAPItoPELformat() 325 ffdcUserData.emplace_back(keyWithPrefix, ele.second); in convertFAPItoPELformat()
|
H A D | phal_service_actions.cpp | 104 std::ranges::for_each(entityPath, [&ss](const auto& ele) { in createGuardRecords() argument 105 ss << std::format("{:02x} ", ele); in createGuardRecords()
|
/openbmc/qemu/target/arm/tcg/ |
H A D | translate-a32.h | 36 void read_neon_element32(TCGv_i32 dest, int reg, int ele, MemOp memop); 37 void read_neon_element64(TCGv_i64 dest, int reg, int ele, MemOp memop); 38 void write_neon_element32(TCGv_i32 src, int reg, int ele, MemOp memop); 39 void write_neon_element64(TCGv_i64 src, int reg, int ele, MemOp memop);
|
H A D | translate-neon.c | 39 static void neon_load_element(TCGv_i32 var, int reg, int ele, MemOp mop) in neon_load_element() argument 41 long offset = neon_element_offset(reg, ele, mop & MO_SIZE); in neon_load_element() 58 static void neon_load_element64(TCGv_i64 var, int reg, int ele, MemOp mop) in neon_load_element64() argument 60 long offset = neon_element_offset(reg, ele, mop & MO_SIZE); in neon_load_element64() 80 static void neon_store_element(int reg, int ele, MemOp size, TCGv_i32 var) in neon_store_element() argument 82 long offset = neon_element_offset(reg, ele, size); in neon_store_element() 99 static void neon_store_element64(int reg, int ele, MemOp size, TCGv_i64 var) in neon_store_element64() argument 101 long offset = neon_element_offset(reg, ele, size); in neon_store_element64()
|
H A D | translate.c | 1185 void read_neon_element32(TCGv_i32 dest, int reg, int ele, MemOp memop) in read_neon_element32() argument 1187 long off = neon_element_offset(reg, ele, memop); in read_neon_element32() 1211 void read_neon_element64(TCGv_i64 dest, int reg, int ele, MemOp memop) in read_neon_element64() argument 1213 long off = neon_element_offset(reg, ele, memop); in read_neon_element64() 1230 void write_neon_element32(TCGv_i32 src, int reg, int ele, MemOp memop) in write_neon_element32() argument 1232 long off = neon_element_offset(reg, ele, memop); in write_neon_element32() 1249 void write_neon_element64(TCGv_i64 src, int reg, int ele, MemOp memop) in write_neon_element64() argument 1251 long off = neon_element_offset(reg, ele, memop); in write_neon_element64()
|
H A D | translate-sve.c | 2488 TCGv_i64 ele; in do_clast_vector() local 2509 ele = load_last_active(s, last, a->rm, esz); in do_clast_vector() 2512 tcg_gen_gvec_dup_i64(esz, vec_full_reg_offset(s, a->rd), vsz, vsz, ele); in do_clast_vector() 2537 TCGv_i64 ele, cmp; in TRANS_FEAT() local 2554 ele = load_last_active(s, last, rm, esz); in TRANS_FEAT() 2557 ele, reg_val); in TRANS_FEAT()
|
/openbmc/linux/arch/xtensa/platforms/iss/ |
H A D | network.c | 577 struct list_head *ele; in iss_net_setup() local 596 list_for_each(ele, ð_cmd_line) { in iss_net_setup() 597 device = list_entry(ele, struct iss_net_init, list); in iss_net_setup() 629 struct list_head *ele, *next; in iss_net_init() local 633 list_for_each_safe(ele, next, ð_cmd_line) { in iss_net_init() 635 eth = list_entry(ele, struct iss_net_init, list); in iss_net_init()
|
/openbmc/linux/drivers/nvmem/ |
H A D | Makefile | 21 obj-$(CONFIG_NVMEM_IMX_OCOTP_ELE) += nvmem-imx-ocotp-ele.o 22 nvmem-imx-ocotp-ele-y := imx-ocotp-ele.o
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | fru_oem_ibm.cpp | 73 for (const auto& ele : pcieData->classCode) in processOEMFRUTable() local 75 classCode += std::format("{:02x}", ele); in processOEMFRUTable()
|
/openbmc/linux/include/dt-bindings/usb/ |
H A D | pd.h | 404 #define VDO_ACABLE2(mtemp, stemp, u3p, trans, phy, ele, u4, hops, u2, u32, lane, iso, gen) \ argument 406 | (trans) << 11 | (phy) << 10 | (ele) << 9 | (u4) << 8 \
|
/openbmc/linux/include/linux/usb/ |
H A D | pd_vdo.h | 429 #define VDO_ACABLE2(mtemp, stemp, u3p, trans, phy, ele, u4, hops, u2, u32, lane, iso, gen) \ argument 431 | (trans) << 11 | (phy) << 10 | (ele) << 9 | (u4) << 8 \
|
/openbmc/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_switch.c | 2365 struct ice_aqc_get_sw_cfg_resp_elem *ele; in ice_get_initial_sw_cfg() local 2373 for (i = 0, ele = rbuf; i < num_elems; i++, ele++) { in ice_get_initial_sw_cfg() 2378 vsi_port_num = le16_to_cpu(ele->vsi_port_num) & in ice_get_initial_sw_cfg() 2381 pf_vf_num = le16_to_cpu(ele->pf_vf_num) & in ice_get_initial_sw_cfg() 2384 swid = le16_to_cpu(ele->swid); in ice_get_initial_sw_cfg() 2386 if (le16_to_cpu(ele->pf_vf_num) & in ice_get_initial_sw_cfg() 2390 res_type = (u8)(le16_to_cpu(ele->vsi_port_num) >> in ice_get_initial_sw_cfg()
|
/openbmc/linux/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_main.c | 14995 struct i40e_aqc_switch_config_element_resp *ele, in i40e_setup_pf_switch_element() argument 14998 u16 downlink_seid = le16_to_cpu(ele->downlink_seid); in i40e_setup_pf_switch_element() 14999 u16 uplink_seid = le16_to_cpu(ele->uplink_seid); in i40e_setup_pf_switch_element() 15000 u8 element_type = ele->element_type; in i40e_setup_pf_switch_element() 15001 u16 seid = le16_to_cpu(ele->seid); in i40e_setup_pf_switch_element() 15116 struct i40e_aqc_switch_config_element_resp *ele = in i40e_fetch_switch_configuration() local 15119 i40e_setup_pf_switch_element(pf, ele, num_reported, in i40e_fetch_switch_configuration()
|
/openbmc/u-boot/common/ |
H A D | dlmalloc.src | 3205 (raymond@es.ele.tue.nl) for the suggestion.
|