Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 25 of 67) sorted by relevance

123

/openbmc/qemu/disas/
H A Driscv.c2541 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 Driscv-xthead.c249 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 Driscv-xventana.c23 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 Dint_helper.c101 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 Dutils.c190 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 Dutils.h72 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 Dtest-crypto-xts.c315 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 Dconversion.hpp100 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 Dflags.hpp75 PHOSPHOR_LOG2_DECLARE_FLAG(dec, bin);
76 PHOSPHOR_LOG2_DECLARE_FLAG(field8, dec);
91 using lg2::dec; \
/openbmc/openbmc/poky/scripts/
H A Dbuildstats-diff139 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/openbmc/meta-facebook/meta-santabarbara/recipes-santabarbara/plat-svc/files/
H A Dsantabarbara-tray-location-init34 dec=$((2#$binary))
36 Hex=$(printf "0x%02X" "$dec")
/openbmc/u-boot/doc/device-tree-bindings/misc/
H A Dintel-lpc.txt11 - 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 DBiosTablesTest.inf42 MdePkg/MdePkg.dec
43 UefiTestToolsPkg/UefiTestToolsPkg.dec
/openbmc/qemu/util/
H A Dqdist.c256 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 D0004-mmal_20.patch568 -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 Daml-build.h339 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 Dncsi_util.cpp447 << 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 Di2c_compare_bit_action.cpp58 << static_cast<uint16_t>(reg) << ", position: " << std::dec in toString()
H A Di2c_write_bit_action.cpp66 << static_cast<uint16_t>(reg) << ", position: " << std::dec in toString()
H A Dpmbus_read_sensor_action.cpp83 ss << "command: 0x" << static_cast<uint16_t>(command) << ", " << std::dec in toString()
H A Di2c_capture_bytes_action.cpp58 << static_cast<uint16_t>(reg) << ", count: " << std::dec in toString()
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-wpa-supplicant_0.2.bb9 SRC_URI += "file://0001-cli-drop-the-second-argument-from-click.argument-dec.patch"
/openbmc/qemu/hw/acpi/
H A Daml-build.c1024 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 Daml-build-stub.c59 Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base, in aml_io() argument
/openbmc/phosphor-logging/lib/
H A Dlg2_logger.cpp24 switch (f & (hex | bin | dec).value) in value_to_string()
96 case dec.value: in value_to_string()

123