| /openbmc/qemu/disas/ |
| H A D | riscv.c | 2541 static void decode_inst_opcode(rv_decode *dec, rv_isa isa) in decode_inst_opcode() argument 2543 rv_inst inst = dec->inst; in decode_inst_opcode() 2616 if (dec->cfg && dec->cfg->ext_zcmop) { in decode_inst_opcode() 2622 if (dec->cfg->ext_zicfiss) { in decode_inst_opcode() 2717 if (dec->cfg && dec->cfg->ext_zcmp && ((inst >> 12) & 0b01)) { in decode_inst_opcode() 2743 if (dec->cfg && !dec->cfg->ext_zcmt) { in decode_inst_opcode() 2753 if (dec->cfg && !dec->cfg->ext_zcmp) { in decode_inst_opcode() 2961 if (dec->cfg && dec->cfg->ext_zicfilp && in decode_inst_opcode() 4063 if (dec->cfg && dec->cfg->ext_zimop) { in decode_inst_opcode() 4073 if (dec->cfg->ext_zicfiss && in decode_inst_opcode() [all …]
|
| H A D | riscv-xthead.c | 249 void decode_xtheadba(rv_decode *dec, rv_isa isa) in decode_xtheadba() argument 251 rv_inst inst = dec->inst; in decode_xtheadba() 275 dec->op = op; in decode_xtheadba() 278 void decode_xtheadbb(rv_decode *dec, rv_isa isa) in decode_xtheadbb() argument 280 rv_inst inst = dec->inst; in decode_xtheadbb() 331 dec->op = op; in decode_xtheadbb() 334 void decode_xtheadbs(rv_decode *dec, rv_isa isa) in decode_xtheadbs() argument 336 rv_inst inst = dec->inst; in decode_xtheadbs() 357 dec->op = op; in decode_xtheadbs() 360 void decode_xtheadcmo(rv_decode *dec, rv_isa isa) in decode_xtheadcmo() argument [all …]
|
| H A D | riscv-xventana.c | 23 void decode_xventanacondops(rv_decode *dec, rv_isa isa) in decode_xventanacondops() argument 25 rv_inst inst = dec->inst; in decode_xventanacondops() 41 dec->op = op; in decode_xventanacondops()
|
| /openbmc/qemu/target/s390x/tcg/ |
| H A D | int_helper.c | 101 void HELPER(cvb)(CPUS390XState *env, uint32_t r1, uint64_t dec) in HELPER() 106 sign = dec & 0xf; in HELPER() 110 dec >>= 4; in HELPER() 112 while (dec) { in HELPER() 113 digit = dec & 0xf; in HELPER() 117 dec >>= 4; in HELPER() 133 uint64_t HELPER(cvbg)(CPUS390XState *env, Int128 dec) in HELPER() 135 uint64_t dec64[] = {int128_getlo(dec), int128_gethi(dec)}; in HELPER() 179 uint64_t dec = 0x0c; in HELPER() local 185 dec = 0x0d; in HELPER() [all …]
|
| /openbmc/libpldm/src/ |
| H A D | utils.c | 190 uint8_t dec2bcd8(uint8_t dec) in dec2bcd8() argument 192 return ((dec / 10) << 4) + (dec % 10); in dec2bcd8() 202 uint16_t dec2bcd16(uint16_t dec) in dec2bcd16() argument 204 return dec2bcd8(dec % 100) | ((uint16_t)(dec2bcd8(dec / 100)) << 8); in dec2bcd16() 214 uint32_t dec2bcd32(uint32_t dec) in dec2bcd32() argument 216 return dec2bcd16(dec % 10000) | in dec2bcd32() 217 ((uint32_t)(dec2bcd16(dec / 10000)) << 16); in dec2bcd32()
|
| /openbmc/libpldm/include/libpldm/ |
| H A D | utils.h | 72 uint8_t dec2bcd8(uint8_t dec); 84 uint16_t dec2bcd16(uint16_t dec); 96 uint32_t dec2bcd32(uint32_t dec);
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-crypto-xts.c | 315 AES_KEY dec; member 336 AES_decrypt(src, dst, &aesctx->dec); in test_xts_aes_decrypt() 349 AES_set_decrypt_key(data->key1, data->keylen / 2 * 8, &aesdata.dec); in test_xts() 351 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts() 385 AES_set_decrypt_key(data->key1, data->keylen / 2 * 8, &aesdata.dec); in test_xts_split() 387 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts_split() 430 AES_set_decrypt_key(data->key1, data->keylen / 2 * 8, &aesdata.dec); in test_xts_unaligned() 432 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts_unaligned()
|
| /openbmc/phosphor-logging/lib/include/phosphor-logging/lg2/ |
| H A D | conversion.hpp | 100 one_from_set(f, dec | hex | bin); in log_convert() 117 one_from_set(f, dec | hex | bin); in log_convert() 130 prohibit(f, dec); in log_convert() 150 prohibit(f, dec); in log_convert() 170 prohibit(f, dec); in log_convert() 190 prohibit(f, dec); in log_convert() 231 prohibit(f, dec); in log_convert() 255 prohibit(f, dec); in log_convert() 275 prohibit(f, dec); in log_convert() 294 prohibit(f, dec); in log_convert() [all …]
|
| H A D | flags.hpp | 75 PHOSPHOR_LOG2_DECLARE_FLAG(dec, bin); 76 PHOSPHOR_LOG2_DECLARE_FLAG(field8, dec); 91 using lg2::dec; \
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | buildstats-diff | 139 dec = int(math.log(val, 2) / 10) 140 prec = 1 if dec > 0 else 0 141 return "{:.{prec}f}{}B".format(val / (2 ** (10 * dec)), 142 prefix[dec], prec=prec) 145 dec = int(math.log(val, 1000)) 146 prec = 1 if dec > 0 else 0 147 return "{:.{prec}f}{}ops".format(val / (1000 ** dec), 148 prefix[dec], prec=prec)
|
| /openbmc/u-boot/doc/device-tree-bindings/misc/ |
| H A D | intel-lpc.txt | 11 - intel,gen-dec : Specifies the values for the gen-dec registers. Up to four 49 intel,gen-dec = <0x800 0xfc 0x900 0xfc>;
|
| /openbmc/qemu/tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/ |
| H A D | BiosTablesTest.inf | 42 MdePkg/MdePkg.dec 43 UefiTestToolsPkg/UefiTestToolsPkg.dec
|
| /openbmc/qemu/util/ |
| H A D | qdist.c | 256 int dec; in qdist_pr_label() local 263 dec = opt & QDIST_PR_NODECIMAL ? 0 : 1; in qdist_pr_label() 289 g_string_append_printf(s, "%s%.*f", lparen, dec, x1); in qdist_pr_label() 291 g_string_append_printf(s, ",%.*f%s", dec, x2, rparen); in qdist_pr_label()
|
| /openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/ |
| H A D | 0004-mmal_20.patch | 568 -static int OpenDecoder(decoder_t *dec); 569 -static void CloseDecoder(decoder_t *dec); 621 -static int change_output_format(decoder_t *dec); 622 -static int send_output_buffer(decoder_t *dec); 623 -static void fill_output_port(decoder_t *dec); 626 -static int decode(decoder_t *dec, block_t *block); 627 -static void flush_decoder(decoder_t *dec); 634 -static int OpenDecoder(decoder_t *dec) 654 - if (dec->fmt_in.i_codec != VLC_CODEC_MPGV && 655 - dec->fmt_in.i_codec != VLC_CODEC_H264) [all …]
|
| /openbmc/qemu/include/hw/acpi/ |
| H A D | aml-build.h | 339 Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base, 356 AmlDecode dec, uint16_t addr_gran, 360 AmlDecode dec, AmlISARanges isa_ranges, 365 AmlDecode dec, AmlISARanges isa_ranges, 369 Aml *aml_dword_memory(AmlDecode dec, AmlMinFixed min_fixed, 375 Aml *aml_qword_memory(AmlDecode dec, AmlMinFixed min_fixed,
|
| /openbmc/phosphor-networkd/src/ |
| H A D | ncsi_util.cpp | 447 << std::dec << std::endl; in sendCommand() 468 << package << " , INTERFACE : " << this << std::dec << std::endl; in setChannel() 489 << " , INTERFACE: " << this << std::dec << std::endl; in getInfo() 511 << " MASK: " << std::hex << mask << std::dec << std::endl; in setPackageMask() 525 << std::dec << std::endl; in setChannelMask() 696 << std::dec << " in response" << std::endl; in sendCommand() 703 << std::dec << " in response" << std::endl; in sendCommand() 710 << std::dec << " in response" << std::endl; in sendCommand()
|
| /openbmc/phosphor-power/phosphor-regulators/src/actions/ |
| H A D | i2c_compare_bit_action.cpp | 58 << static_cast<uint16_t>(reg) << ", position: " << std::dec in toString()
|
| H A D | i2c_write_bit_action.cpp | 66 << static_cast<uint16_t>(reg) << ", position: " << std::dec in toString()
|
| H A D | pmbus_read_sensor_action.cpp | 83 ss << "command: 0x" << static_cast<uint16_t>(command) << ", " << std::dec in toString()
|
| H A D | i2c_capture_bytes_action.cpp | 58 << static_cast<uint16_t>(reg) << ", count: " << std::dec in toString()
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-wpa-supplicant_0.2.bb | 9 SRC_URI += "file://0001-cli-drop-the-second-argument-from-click.argument-dec.patch"
|
| /openbmc/qemu/hw/acpi/ |
| H A D | aml-build.c | 1024 Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base, in aml_io() argument 1029 build_append_byte(var->buf, dec); in aml_io() 1354 AmlMaxFixed max_fixed, AmlDecode dec, in aml_as_desc_header() argument 1357 uint8_t flags = max_fixed | min_fixed | dec; in aml_as_desc_header() 1368 AmlMaxFixed max_fixed, AmlDecode dec, in aml_word_as_desc() argument 1381 aml_as_desc_header(type, min_fixed, max_fixed, dec, type_flags)); in aml_word_as_desc() 1392 AmlMaxFixed max_fixed, AmlDecode dec, in aml_dword_as_desc() argument 1406 aml_as_desc_header(type, min_fixed, max_fixed, dec, type_flags)); in aml_dword_as_desc() 1417 AmlMaxFixed max_fixed, AmlDecode dec, in aml_qword_as_desc() argument 1430 aml_as_desc_header(type, min_fixed, max_fixed, dec, type_flags)); in aml_qword_as_desc() [all …]
|
| H A D | aml-build-stub.c | 59 Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base, in aml_io() argument
|
| /openbmc/phosphor-logging/lib/ |
| H A D | lg2_logger.cpp | 24 switch (f & (hex | bin | dec).value) in value_to_string() 96 case dec.value: in value_to_string()
|
| /openbmc/phosphor-power/tools/i2c/ |
| H A D | i2c_interface.hpp | 27 ss << std::dec << ", errno " << errorCode << ": " in I2CException()
|