儲存庫 vbox 的更動 62401
- 時間撮記:
- 2016-7-21 下午01:52:17 (8 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/include/iprt/uint128.h
r60482 r62401 644 644 pValue1Result->s.Hi--; 645 645 pValue1Result->s.Hi -= pValue2->s.Hi; 646 return pValue1Result; 647 } 648 649 650 /** 651 * Negates a 128 number, storing the result in the input. 652 * 653 * @returns pValueResult. 654 * @param pValueResult The value to negate. 655 */ 656 DECLINLINE(PRTUINT128U) RTUInt128AssignNeg(PRTUINT128U pValueResult) 657 { 658 /* result = 0 - value */ 659 if (pValue1Result->s.Lo != 0) 660 { 661 pValue1Result->s.Lo = UINT64_C(0) - pValue1Result->s.Lo; 662 pValue1Result->s.Hi = UINT64_MAX - pValue1Result->s.Hi; 663 } 664 else 665 pValue1Result->s.Hi = UINT64_C(0) - pValue1Result->s.Hi; 646 666 return pValue1Result; 647 667 }
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器