Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 – 12 of 12) sorted by relevance

/openbmc/u-boot/drivers/mtd/
H A Dmw_eeprom.c103 u8 byte1=0; in mw_eeprom_write_word() local
111 byte1 = EEP_OPC_WRITE >> 2; in mw_eeprom_write_word()
116 byte1 = EEP_OPC_WRITE >> 1; in mw_eeprom_write_word()
121 byte1 = EEP_OPC_WRITE; in mw_eeprom_write_word()
125 byte1 = EEP_OPC_WRITE << 1; in mw_eeprom_write_word()
126 byte1 |= addr >> 8; in mw_eeprom_write_word()
130 byte1 = EEP_OPC_WRITE << 2; in mw_eeprom_write_word()
131 byte1 |= addr >> 8; in mw_eeprom_write_word()
140 ssi_tx_byte(byte1); in mw_eeprom_write_word()
/openbmc/qemu/tests/tcg/hexagon/
H A Dv69_hvx.c65 uint8_t byte1; in test_vasrvuhubrndsat() local
70 byte1 = fVSATUB(fVROUND(buffer0[2 * i + 1].uh[j], shamt) >> shamt); in test_vasrvuhubrndsat()
71 expect[i].uh[j] = (byte1 << 8) | (byte0 & 0xff); in test_vasrvuhubrndsat()
102 uint8_t byte1; in test_vasrvuhubsat() local
107 byte1 = fVSATUB(buffer0[2 * i + 1].uh[j] >> shamt); in test_vasrvuhubsat()
108 expect[i].uh[j] = (byte1 << 8) | (byte0 & 0xff); in test_vasrvuhubsat()
/openbmc/openbmc/meta-ampere/meta-common/recipes-ampere/host/ac01-boot-progress/
H A Ddimm_train_fail_log.sh107 byte1=$((data & 0xff))
124 "$evtdata0" "$evtdata1" "$byte0" "$byte1" \
/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
535 byte1 |= pattern_killer_pattern_table_map[index * 2 + 1][role] << i; in pattern_table_get_killer_word16()
538 return byte0 | (byte0 << 8) | (byte1 << 16) | (byte1 << 24); in pattern_table_get_killer_word16()
/openbmc/bios-bmc-smm-error-logger/
H A Dmeson.build24 conf_data.set('MAGIC_NUMBER_BYTE1', get_option('magic-number-byte1'))
H A Dmeson.options47 'magic-number-byte1',
/openbmc/pldm/platform-mc/test/
H A Dterminus_manager_test.cpp376 uint8_t byte1 = (1 << (PLDM_PLATFORM_EVENT_MESSAGE % 8)) + in TEST_F() local
399 0x00, 0x02, 0x05, 0x00, byte0, byte1, byte2, 0x00, byte4, in TEST_F()
424 byte1 = (0 << (PLDM_GET_BIOS_ATTRIBUTE_CURRENT_VALUE_BY_HANDLE % 8)) + in TEST_F()
428 0x00, 0x02, 0x05, 0x00, byte0, byte1, 0x00, 0x00, 0x00, in TEST_F()
455 byte1 = 0; in TEST_F()
/openbmc/qemu/include/hw/i3c/
H A Ddw-i3c.h119 uint8_t byte1; member
/openbmc/pldm/oem/ampere/event/
H A Doem_event_manager.cpp311 uint8_t byte1 = (presentReading & 0x0000ff00) >> 8; in handleBootOverallEvent() local
338 description += " at " + std::to_string(byte1) + "%"; in handleBootOverallEvent()
/openbmc/entity-manager/src/fru_device/
H A Dfru_device.cpp269 int byte1 = i2c_smbus_read_byte_data(file, 0); in isDevice16BitMode1() local
270 if (byte1 < 0) in isDevice16BitMode1()
284 if (byte2 != byte1) in isDevice16BitMode1()
/openbmc/qemu/qga/
H A Dcommands-linux.c2141 unsigned int byte1 = (hex_int >> 24) & 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.c1238 data[len] = arg.byte1; in dw_i3c_short_transfer()