Lines Matching refs:iBit

5161     for (uint32_t iBit = 0; iBit < 32; iBit++)
5162 if (RT_BIT_32(iBit) & uVal)
5165 && iBit >= (uint32_t)pDesc->iFirstBit + pDesc->cBits)
5168 && iBit - (uint32_t)pDesc->iFirstBit < (uint32_t)pDesc->cBits)
5178 iBit = pDesc->iFirstBit + pDesc->cBits - 1;
5182 pHlp->pfnPrintf(pHlp, " %u", iBit);
5195 for (uint32_t iBit = 0; iBit < 64; iBit++)
5196 if (RT_BIT_64(iBit) & uVal)
5199 && iBit >= (uint32_t)pDesc->iFirstBit + pDesc->cBits)
5202 && iBit - (uint32_t)pDesc->iFirstBit < (uint32_t)pDesc->cBits)
5212 iBit = pDesc->iFirstBit + pDesc->cBits - 1;
5216 pHlp->pfnPrintf(pHlp, " %u", iBit);
5241 for (uint32_t iBit = 0; iBit < 32; iBit++)
5242 if ( (RT_BIT_32(iBit) & uCombined)
5243 || (iBit == pDesc->iFirstBit && pDesc->pszName) )
5246 && iBit >= (uint32_t)pDesc->iFirstBit + pDesc->cBits)
5250 && iBit - (uint32_t)pDesc->iFirstBit < (uint32_t)pDesc->cBits)
5268 iBit = pDesc->iFirstBit + pDesc->cBits - 1U;
5272 pHlp->pfnPrintf(pHlp, " %2u - Reserved%*s= %u (%u)\n", iBit, 13 < cchWidth ? cchWidth - 13 : 1, "",
5273 RT_BOOL(uVal1 & RT_BIT_32(iBit)), RT_BOOL(uVal2 & RT_BIT_32(iBit)));
5842 for (unsigned iBit = 13; iBit < 32; iBit++)
5843 if (uEDX & RT_BIT(iBit))
5844 pHlp->pfnPrintf(pHlp, " %d", iBit);
5922 for (unsigned iBit = 14; iBit < 32; iBit++)
5923 if (uEdxGst & RT_BIT(iBit))
5924 pHlp->pfnPrintf(pHlp, " %d", iBit);
5958 for (unsigned iBit = 27; iBit < 32; iBit++)
5959 if ((uEdxGst | uEdxHst) & RT_BIT(iBit))
5960 pHlp->pfnPrintf(pHlp, "Bit %d = %d (%d)\n", iBit, !!(uEdxGst & RT_BIT(iBit)), !!(uEdxHst & RT_BIT(iBit)));