Searched refs:nchars (Results 1 – 1 of 1) sorted by relevance
179 static uint32_t read_hex(const char *str, int nchars) { in read_hex() argument181 assert(nchars > 0 && nchars <= 8 && nchars % 2 == 0); in read_hex()182 for(int pos = 0; pos < nchars; pos += 2) { in read_hex()