Searched refs:dec (Results 1 – 2 of 2) sorted by relevance
72 uint8_t dec; in hex2int() local74 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() local100 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 …]
41 #define ZCBOR_MAP_DECODE_KEY_DECODER(k, dec, vp) \ argument47 .decoder = (zcbor_decoder_t *)dec, \67 #define ZCBOR_MAP_DECODE_KEY_VAL(k, dec, vp) \ argument68 ZCBOR_MAP_DECODE_KEY_DECODER(STRINGIFY(k), dec, vp)