Home
last modified time | relevance | path

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

/mcuboot-latest/ext/tinycrypt/tests/
Dtest_ecc_utils.c72 uint8_t dec; in hex2int() local
74 if ('0' <= hex && hex <= '9') dec = hex - '0'; in hex2int()
75 else if ('a' <= hex && hex <= 'f') dec = hex - 'a' + 10; in hex2int()
76 else if ('A' <= hex && hex <= 'F') dec = hex - 'A' + 10; in hex2int()
79 return dec; in hex2int()
90 int dec; in hex2bin() local
100 dec = hex2int(hex[0]); in hex2bin()
101 if (dec == -1) in hex2bin()
103 buf[0] = dec; in hex2bin()
111 dec = hex2int(hex[2 * i]); in hex2bin()
[all …]
/mcuboot-latest/boot/boot_serial/src/
Dzcbor_bulk.h41 #define ZCBOR_MAP_DECODE_KEY_DECODER(k, dec, vp) \ argument
47 .decoder = (zcbor_decoder_t *)dec, \
67 #define ZCBOR_MAP_DECODE_KEY_VAL(k, dec, vp) \ argument
68 ZCBOR_MAP_DECODE_KEY_DECODER(STRINGIFY(k), dec, vp)