Lines Matching defs:bits
354 Upper 8 bits give the index k and
355 Lower 8 bits give the difference, which needs
887 int16_t bits;
890 bits = 16;
892 bits = 0;
895 if (0x0000FF00 & (n >> bits)) bits += 8;
896 if (0x000000F0 & (n >> bits)) bits += 4;
897 if (0x0000000C & (n >> bits)) bits += 2;
898 if (0x00000002 & (n >> bits)) bits += 1;
899 if (0x00000001 & (n >> bits)) bits += 1;
901 return bits;