Lines Matching refs:tempWord
137 UINT tempWord; in DecodeNonPCWs() local
186 tempWord = 0xFFFFFFFF; in DecodeNonPCWs()
192 *pCodewordBitfield++ = tempWord; in DecodeNonPCWs()
198 …tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-remainingCodewordsInSet)); /* set a zero at … in DecodeNonPCWs()
200 *pCodewordBitfield++ = tempWord; in DecodeNonPCWs()
201 tempWord = 0x00000000; in DecodeNonPCWs()
226 tempWord = pSegmentBitfield[bitfieldWord] & pCodewordBitfield[bitfieldWord]; in DecodeNonPCWs()
229 if ( tempWord != 0 ) { in DecodeNonPCWs()
236 if ( ( tempWord & interMediateWord ) == interMediateWord ) { in DecodeNonPCWs()
330 UINT tempWord; in InitSegmentBitfield() local
342 tempWord = 0xFFFFFFFF; /* set ones */ in InitSegmentBitfield()
346 …tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-i)); /* set a zero at bit number (N… in InitSegmentBitfield()
352 pSegmentBitfield[bitfieldWord] = tempWord; /* store result */ in InitSegmentBitfield()
358 tempWord = 0xFFFFFFFF; in InitSegmentBitfield()
360 …tempWord = tempWord & ~(1 << i); /* clear bit i in tempWord… in InitSegmentBitfield()
367 …tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-i)); /* set a zero at bit number … in InitSegmentBitfield()
373 pSegmentBitfield[bitfieldWord] = tempWord; /* store result */ in InitSegmentBitfield()