Home
last modified time | relevance | path

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

/external/flac/libFLAC/include/private/
Dbitmath.h48 static const unsigned char byte_to_unary_table[] = { in FLAC__clz_soft_uint32() local
67 return word > 0xffffff ? byte_to_unary_table[word >> 24] : in FLAC__clz_soft_uint32()
68 word > 0xffff ? byte_to_unary_table[word >> 16] + 8 : in FLAC__clz_soft_uint32()
69 word > 0xff ? byte_to_unary_table[word >> 8] + 16 : in FLAC__clz_soft_uint32()
70 byte_to_unary_table[word] + 24; in FLAC__clz_soft_uint32()