Home
last modified time | relevance | path

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

/external/libgsm/tls/
Dsour.c43 #define WORD_BITS 16 /* sizeof(uword) * CHAR_BIT on the macro
72 WORD_BITS - sp->varsize);
78 WORD_BITS - n_in);
84 printf("*c++ = sr >> %d;\n", WORD_BITS - n_in);
Dginger.c21 #define WORD_BITS 16 /* sizeof(uword) * CHAR_BIT on the macro
/external/deqp/framework/common/
DtcuAstcUtil.cpp198 WORD_BITS = 8*WORD_BYTES, enumerator
199 NUM_WORDS = 128 / WORD_BITS
202 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()
1609 WORD_BITS = 8*WORD_BYTES, enumerator
[all …]
/external/elfutils/src/
Delfcompress.c281 #define WORD_BITS (8U * sizeof (unsigned int)) in process_file() macro
284 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()