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.h50 static const unsigned char byte_to_unary_table[] = { in FLAC__clz_soft_uint32() local
69 return (word) > 0xffffff ? byte_to_unary_table[(word) >> 24] : in FLAC__clz_soft_uint32()
70 (word) > 0xffff ? byte_to_unary_table[(word) >> 16] + 8 : in FLAC__clz_soft_uint32()
71 (word) > 0xff ? byte_to_unary_table[(word) >> 8] + 16 : in FLAC__clz_soft_uint32()
72 byte_to_unary_table[(word)] + 24; in FLAC__clz_soft_uint32()