Home | History | Annotate | Download | only in src

Lines Matching refs:tempWord

137   UINT    tempWord;
186 tempWord = 0xFFFFFFFF;
192 *pCodewordBitfield++ = tempWord;
196 /* prepare last tempWord */
198 tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-remainingCodewordsInSet)); /* set a zero at bit number (NUMBER_OF_BIT_IN_WORD-1-i) in tempWord */
200 *pCodewordBitfield++ = tempWord;
201 tempWord = 0x00000000;
225 /* derive tempWord with bitwise and */
226 tempWord = pSegmentBitfield[bitfieldWord] & pCodewordBitfield[bitfieldWord];
228 /* if tempWord is not zero, decode something */
229 if ( tempWord != 0 ) {
232 /* loop over all bits in tempWord; start state machine if & is true */
236 if ( ( tempWord & interMediateWord ) == interMediateWord ) {
330 UINT tempWord;
342 tempWord = 0xFFFFFFFF; /* set ones */
346 tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-i)); /* set a zero at bit number (NUMBER_OF_BIT_IN_WORD-1-i) in tempWord */
352 pSegmentBitfield[bitfieldWord] = tempWord; /* store result */
357 /* calculate last word: prepare special tempWord */
358 tempWord = 0xFFFFFFFF;
360 tempWord = tempWord & ~(1 << i); /* clear bit i in tempWord */
367 tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-i)); /* set a zero at bit number (NUMBER_OF_BIT_IN_WORD-1-i) in tempWord */
373 pSegmentBitfield[bitfieldWord] = tempWord; /* store result */