Searched refs:hex (Results 1 – 8 of 8) sorted by relevance
142 Base64 encode hex #1145 Base64 encode hex #2 (buffer too small)148 Base64 encode hex #3151 Base64 encode hex #4154 Base64 decode hex #1157 Base64 decode hex #2 (buffer too small)160 Base64 decode hex #3163 Base64 decode hex #4166 Base64 decode hex #5 (buffer too small)
26 int hex = 0;39 hex = 1;44 ( hex && ( ( str[i] >= 'a' && str[i] <= 'f' ) ||54 if( hex )
16 Base test mpi_read_write_string #3 (Negative hex)43 Test mpi_read_write_string #8 (Empty MPI -> hex)
229 * Allocate and fill a buffer from hex data.
123 const unsigned char hex[] = "0123456789ABCDEF"; in print_readable() local143 *result++ = hex[(*data & 0xf0) >> 4]; in print_readable()144 *result++ = hex[*data & 0x0f]; in print_readable()210 const unsigned char hex[] = "0123456789ABCDEF"; in coap_print_addr()221 *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4]; in coap_print_addr()222 *p++ = hex[(addr->addr.u8[i] & 0x0f)]; in coap_print_addr()223 *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4]; in coap_print_addr()224 *p++ = hex[(addr->addr.u8[i+1] & 0x0f)]; in coap_print_addr()
169 const char hex[] = "0123456789ABCDEF"; in dsrv_print_addr()180 *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4]; in dsrv_print_addr()181 *p++ = hex[(addr->addr.u8[i] & 0x0f)]; in dsrv_print_addr()182 *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4]; in dsrv_print_addr()183 *p++ = hex[(addr->addr.u8[i+1] & 0x0f)]; in dsrv_print_addr()
136 \*.d \*.hex \*.elf \*.map obj_\* tinydtls.h dtls_config.h \
793 * Fix mpi_write_string() to write "00" as hex output for empty MPI (found