Lines Matching refs:Hi

54     return pValue->s.Hi == 0
74 pResult->s.Hi = 0;
95 pResult->s.Hi = UINT64_MAX;
119 pResult->s.Hi = pValue1->s.Hi + pValue2->s.Hi;
122 pResult->s.Hi++;
137 pResult->s.Hi = pValue1->s.Hi;
140 pResult->s.Hi++;
156 pResult->s.Hi = pValue1->s.Hi - pValue2->s.Hi;
158 pResult->s.Hi--;
186 pResult->s.Hi += (uint64_t)pValue1->DWords.dw2 * pValue2->DWords.dw0;
200 pResult->s.Hi += (uint64_t)pValue1->DWords.dw1 * pValue2->DWords.dw1;
204 pResult->s.Hi += (uint64_t)pValue1->DWords.dw0 * pValue2->DWords.dw2;
242 pResult->s.Hi += (uint64_t)pValue1->DWords.dw2 * uLoValue2;
256 pResult->s.Hi += (uint64_t)pValue1->DWords.dw1 * uHiValue2;
275 pResult->s.Lo = ASMMult2xU64Ret2xU64(uValue1, uValue2, &pResult->s.Hi);
305 pResult->s.Hi += (uint64_t)uHiValue1 * uHiValue2;
354 pResult->s.Hi = pValue1->s.Hi & pValue2->s.Hi;
370 pResult->s.Hi = pValue1->s.Hi | pValue2->s.Hi;
386 pResult->s.Hi = pValue1->s.Hi ^ pValue2->s.Hi;
406 pResult->s.Hi = (pValue->s.Hi << cBits) | (pValue->s.Lo >> (64 - cBits));
411 pResult->s.Hi = pValue->s.Lo << (cBits - 64);
430 pResult->s.Hi = pValue->s.Hi >> cBits;
431 pResult->s.Lo = (pValue->s.Lo >> cBits) | (pValue->s.Hi << (64 - cBits));
435 pResult->s.Hi = 0;
436 pResult->s.Lo = pValue->s.Hi >> (cBits - 64);
451 pResult->s.Hi = 0;
452 pResult->s.Lo = pValue->s.Lo || pValue->s.Hi ? 0 : 1;
466 pResult->s.Hi = ~pValue->s.Hi;
482 pResult->s.Hi = pValue->s.Hi;
505 pValueResult->s.Hi = 0;
527 pValueResult->s.Hi = 0;
549 pValueResult->s.Hi = 0;
571 pValueResult->s.Hi = 0;
592 pValueResult->s.Hi = 0;
609 pValue1Result->s.Hi++;
610 pValue1Result->s.Hi += pValue2->s.Hi;
627 pValue1Result->s.Hi++;
645 pValue1Result->s.Hi--;
646 pValue1Result->s.Hi -= pValue2->s.Hi;
715 pValue1Result->s.Hi &= pValue2->s.Hi;
742 pValueResult->s.Hi = 0;
745 pValueResult->s.Hi &= (RT_BIT_64(cBits - 64) - 1);
762 pValue1Result->s.Hi |= pValue2->s.Hi;
785 pValue1Result->s.Hi |= RT_BIT_64(iBit - 64);
820 pValue1Result->s.Hi ^= pValue2->s.Hi;
852 pValueResult->s.Hi = InVal.s.Lo << (cBits - 64);
856 pValueResult->s.Hi = InVal.s.Hi << cBits;
857 pValueResult->s.Hi |= InVal.s.Lo >> (64 - cBits);
869 pValueResult->s.Hi = 0;
870 pValueResult->s.Lo = InVal.s.Hi >> (cBits - 64);
875 pValueResult->s.Lo |= InVal.s.Hi << (64 - cBits);
876 pValueResult->s.Hi = InVal.s.Hi >> cBits;
907 pValueResult->s.Hi = ~pValueResult->s.Hi;
945 if (pValue1->s.Hi != pValue2->s.Hi)
946 return pValue1->s.Hi > pValue2->s.Hi ? 1 : -1;
974 return pValue1->s.Hi < pValue2->s.Hi
975 || ( pValue1->s.Hi == pValue2->s.Hi
999 return pValue1->s.Hi > pValue2->s.Hi
1000 || ( pValue1->s.Hi == pValue2->s.Hi
1024 return pValue1->s.Hi > pValue2->s.Hi
1025 || ( pValue1->s.Hi == pValue2->s.Hi
1049 return pValue1->s.Hi == pValue2->s.Hi
1096 pValueResult->s.Hi |= RT_BIT_64(iBit - 64);
1131 pValueResult->s.Hi &= ~RT_BIT_64(iBit - 64);
1167 fRc = RT_BOOL(pValueResult->s.Hi & RT_BIT_64(iBit - 64));
1201 pValueResult->s.Hi |= (RT_BIT_64(cBits) - 1) << (iFirstBit - 64);
1230 return pValue->s.Hi == UINT64_MAX
1250 return pValue->s.Hi == 0
1264 if (pValue->s.Hi != 0)
1300 if (!pValue2->s.Hi)