Searched refs:hex (Results 1 – 13 of 13) sorted by relevance
15 static int8_t hex_val(char hex) in hex_val() argument19 if ((hex >= '0') && (hex <= '9')) { in hex_val()20 val = (int8_t)(hex - '0'); in hex_val()21 } else if ((hex >= 'a') && (hex <= 'f')) { in hex_val()22 val = (int8_t)(hex - 'a' + 0xa); in hex_val()23 } else if ((hex >= 'A') && (hex <= 'F')) { in hex_val()24 val = (int8_t)(hex - 'A' + 0xa); in hex_val()
13 #define MHU_TX_ADDR 46040000 /* hex */14 #define MHU_RX_ADDR 46140000 /* hex */16 #define RSE_MHU_TX_ADDR 49010000 /* hex */17 #define RSE_MHU_RX_ADDR 49110000 /* hex */
13 #define MHU_TX_ADDR 46240000 /* hex */14 #define MHU_RX_ADDR 46250000 /* hex */20 #define RSE_MHU_TX_ADDR 49020000 /* hex */21 #define RSE_MHU_RX_ADDR 49030000 /* hex */
57 aarch64-linux-gnu-objcopy -I binary -O ihex --change-addresses 0xffe00000 bl2.bin bl2.hex58 quartus_cpf --bootloader bl2.hex <quartus_generated_sof> <output_sof_with_bl2>
51 tree blob at build time. Takes an initrd size value in hex format58 - ``INITRD_BASE`` : Provide the preloaded initrd base address in memory (hex format).
103 INITRD_SIZE: Set the initrd size in dec or hex format. Hex format must precede with '0x'.
134 {hex(self.time_hi_and_version)}, {[hex(i) for i in self.clock_seq_and_node]}"
172 via using ``cat <filename>`` instead of a hex string.
656 - ``ENC_KEY``: A 32-byte (256-bit) symmetric key in hex string format. It could661 (IV) in hex string format. This value depends on ``DECRYPTION_SUPPORT``
1127 #define print_field(st, type, field, hex, base) \ argument1129 base + offsetof(type, field), sizeof(st->field), hex)
220 corresponding to the size, not the size itself. The decoded hex representations
2429 …- fix message formatting of hex values ([24e1ae2](https://review.trustedfirmware.org/plugins/gitil…9567 …- print event number in hex format ([6b94356](https://review.trustedfirmware.org/plugins/gitiles/T…9834 - Print newline after hex address in aarch64 el3_panic function