Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/mtd/
H A Dmw_eeprom.c104 u8 byte2=0; in mw_eeprom_write_word() local
112 byte2 = (EEP_OPC_WRITE << 6)&0xc0; in mw_eeprom_write_word()
113 byte2 |= addr; in mw_eeprom_write_word()
117 byte2 = (EEP_OPC_WRITE << 7)&0x80; in mw_eeprom_write_word()
118 byte2 |= addr; in mw_eeprom_write_word()
122 byte2 = addr; in mw_eeprom_write_word()
127 byte2 = addr & 0xff; in mw_eeprom_write_word()
132 byte2 = addr & 0xff; in mw_eeprom_write_word()
141 ssi_tx_byte(byte2); in mw_eeprom_write_word()
/openbmc/bios-bmc-smm-error-logger/
H A Dmeson.build25 conf_data.set('MAGIC_NUMBER_BYTE2', get_option('magic-number-byte2'))
H A Dmeson.options53 'magic-number-byte2',
/openbmc/qemu/include/hw/i3c/
H A Ddw-i3c.h120 uint8_t byte2; member
/openbmc/pldm/oem/ampere/event/
H A Doem_event_manager.cpp312 uint8_t byte2 = (presentReading & 0x00ff0000) >> 16; in handleBootOverallEvent() local
366 if (boot::status::BOOT_STATUS_FAILURE == byte2) in handleBootOverallEvent()
383 << std::setw(2) << static_cast<uint32_t>(byte2) in handleBootOverallEvent()
/openbmc/pldm/platform-mc/test/
H A Dterminus_manager_test.cpp381 uint8_t byte2 = (1 << (PLDM_GET_SENSOR_READING % 8)); // byte2 = 0x02 in TEST_F() local
399 0x00, 0x02, 0x05, 0x00, byte0, byte1, byte2, 0x00, byte4, in TEST_F()
/openbmc/entity-manager/src/fru_device/
H A Dfru_device.cpp279 int byte2 = i2c_smbus_read_byte_data(file, 0); in isDevice16BitMode1() local
280 if (byte2 < 0) in isDevice16BitMode1()
284 if (byte2 != byte1) in isDevice16BitMode1()
/openbmc/qemu/qga/
H A Dcommands-linux.c2142 unsigned int byte2 = (hex_int >> 16) & 0xFF; in hex_to_ip_address() local
2146 return g_strdup_printf("%u.%u.%u.%u", byte4, byte3, byte2, byte1); in hex_to_ip_address()
/openbmc/qemu/hw/i3c/
H A Ddw-i3c.c1242 data[len] = arg.byte2; in dw_i3c_short_transfer()