Searched refs:hex (Results 1 – 8 of 8) sorted by relevance
16 static int8_t hex_val(char hex) in hex_val() argument20 if ((hex >= '0') && (hex <= '9')) { in hex_val()21 val = (int8_t)(hex - '0'); in hex_val()22 } else if ((hex >= 'a') && (hex <= 'f')) { in hex_val()23 val = (int8_t)(hex - 'a' + 0xa); in hex_val()24 } else if ((hex >= 'A') && (hex <= 'F')) { in hex_val()25 val = (int8_t)(hex - 'A' + 0xa); in hex_val()
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>
172 via using ``cat <filename>`` instead of a hex string.
455 - ``ENC_KEY``: A 32-byte (256-bit) symmetric key in hex string format. It could460 (IV) in hex string format. This value depends on ``DECRYPTION_SUPPORT``
1131 #define print_field(st, type, field, hex, base) \ argument1133 base + offsetof(type, field), sizeof(st->field), hex)
190 corresponding to the size, not the size itself. The decoded hex representations
3048 …- print event number in hex format ([6b94356](https://review.trustedfirmware.org/plugins/gitiles/T…3315 - Print newline after hex address in aarch64 el3_panic function
Completed in 18 milliseconds