Home
last modified time | relevance | path

Searched refs:byte0 (Results 1 – 11 of 11) sorted by relevance

/openbmc/qemu/hw/intc/
H A Dxics_pnv.c38 bool byte0 = (width == 1 && (addr & 0x3) == 0); in pnv_icp_read() local
44 if (byte0) { in pnv_icp_read()
51 if (byte0) { in pnv_icp_read()
60 if (byte0) { in pnv_icp_read()
101 bool byte0 = (width == 1 && (addr & 0x3) == 0); in pnv_icp_write() local
105 if (byte0) { in pnv_icp_write()
114 if (byte0) { in pnv_icp_write()
/openbmc/qemu/tests/tcg/hexagon/
H A Dv69_hvx.c64 uint8_t byte0; in test_vasrvuhubrndsat() local
68 byte0 = fVSATUB(fVROUND(buffer0[2 * i + 0].uh[j], shamt) >> shamt); in test_vasrvuhubrndsat()
71 expect[i].uh[j] = (byte1 << 8) | (byte0 & 0xff); in test_vasrvuhubrndsat()
101 uint8_t byte0; in test_vasrvuhubsat() local
105 byte0 = fVSATUB(buffer0[2 * i + 0].uh[j] >> shamt); in test_vasrvuhubsat()
108 expect[i].uh[j] = (byte1 << 8) | (byte0 & 0xff); in test_vasrvuhubsat()
/openbmc/pldm/platform-mc/test/
H A Dterminus_manager_test.cpp324 uint8_t byte0 = (1 << (PLDM_BASE % 8)) + (1 << (PLDM_PLATFORM % 8)) + in TEST_F() local
327 getPldmTypesResp0{0x00, 0x02, 0x04, 0x00, byte0, 0x00, in TEST_F()
346 byte0 = (1 << (PLDM_SET_TID % 8)) + (1 << (PLDM_GET_TID % 8)) + in TEST_F()
351 0x00, 0x02, 0x05, 0x00, byte0, 0x00, 0x00, 0x00, 0x00, in TEST_F()
374 byte0 = (1 << (PLDM_SET_EVENT_RECEIVER % 8)); // byte0 = 0x10 in TEST_F()
399 0x00, 0x02, 0x05, 0x00, byte0, byte1, byte2, 0x00, byte4, in TEST_F()
420 byte0 = (0 << (PLDM_GET_BIOS_TABLE % 8)) + in TEST_F()
428 0x00, 0x02, 0x05, 0x00, byte0, byte1, 0x00, 0x00, 0x00, in TEST_F()
450 byte0 = (1 << (PLDM_GET_FRU_RECORD_TABLE_METADATA % 8)) + in TEST_F()
458 0x00, 0x02, 0x05, 0x00, byte0, 0x00, 0x00, 0x00, 0x00, in TEST_F()
/openbmc/openbmc/meta-ampere/meta-common/recipes-ampere/host/ac01-boot-progress/
H A Ddimm_train_fail_log.sh106 byte0=$(((data & 0xff00) >> 8))
124 "$evtdata0" "$evtdata1" "$byte0" "$byte1" \
/openbmc/pldm/oem/ampere/event/
H A Doem_event_manager.cpp310 uint8_t byte0 = (presentReading & 0x000000ff); in handleBootOverallEvent() local
326 if (byte0 >= ddrTrainingMsg.size()) in handleBootOverallEvent()
333 description += ddrTrainingMsg[byte0]; in handleBootOverallEvent()
335 if (0x01 == byte0) in handleBootOverallEvent()
353 if (byte0 >= bootStatMsg.size()) in handleBootOverallEvent()
360 description += bootStatMsg[byte0]; in handleBootOverallEvent()
763 uint8_t byte0 = (byte012 & 0xff); in handleDIMMStatusEvent() local
764 if (byte0 < pmicTempAlertMsg.size()) in handleDIMMStatusEvent()
766 description += ": " + pmicTempAlertMsg[byte0]; in handleDIMMStatusEvent()
/openbmc/dbus-sensors/src/ipmb/
H A DIpmbSensor.hpp47 byte0, enumerator
137 ReadingFormat readingFormat = ReadingFormat::byte0;
H A DIpmbSensor.cpp172 readingFormat = ReadingFormat::byte0; in loadDefaults()
228 readingFormat = ReadingFormat::byte0; in loadDefaults()
301 case (ReadingFormat::byte0): in processReading()
/openbmc/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_training_db.c527 u8 i, byte0 = 0, byte1 = 0; in pattern_table_get_killer_word16() local
534 byte0 |= pattern_killer_pattern_table_map[index * 2][role] << i; in pattern_table_get_killer_word16()
538 return byte0 | (byte0 << 8) | (byte1 << 16) | (byte1 << 24); in pattern_table_get_killer_word16()
/openbmc/qemu/include/hw/i3c/
H A Ddw-i3c.h118 uint8_t byte0; member
/openbmc/dbus-sensors/src/tests/
H A Dtest_IpmbSensor.cpp19 EXPECT_TRUE(IpmbSensor::processReading(ReadingFormat::byte0, 0, data, in TEST()
/openbmc/qemu/hw/i3c/
H A Ddw-i3c.c1231 data[len] += arg.byte0; in dw_i3c_short_transfer()