Searched refs:WORD_BITS (Results 1 – 2 of 2) sorted by relevance
198 WORD_BITS = 8*WORD_BYTES, enumerator199 NUM_WORDS = 128 / WORD_BITS202 DE_STATIC_ASSERT(128 % WORD_BITS == 0);218 return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1; in getBit()230 const int word0Ndx = low / WORD_BITS; in getBits()231 const int word1Ndx = high / WORD_BITS; in getBits()236 … (deUint32)((m_words[word0Ndx] & ((((Word)1 << high%WORD_BITS << 1) - 1))) >> ((Word)low % WORD_BI… in getBits()241 return (deUint32)(m_words[word0Ndx] >> (low%WORD_BITS)) | in getBits()242 …(deUint32)((m_words[word1Ndx] & (((Word)1 << high%WORD_BITS << 1) - 1)) << (high-low - high%WORD_B… in getBits()1595 WORD_BITS = 8*WORD_BYTES, enumerator[all …]
281 #define WORD_BITS (8U * sizeof (unsigned int)) in process_file() macro284 sections[ndx / WORD_BITS] |= (1U << (ndx % WORD_BITS)); in process_file()289 return (sections[ndx / WORD_BITS] & (1U << (ndx % WORD_BITS))) != 0; in process_file()