Changeset 106341 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 16, 2024 8:24:59 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 165154
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/acpi.cpp
r106337 r106341 87 87 uint8_t *pbTblBuf; 88 88 /** Size of the table buffer. */ 89 size_tcbTblBuf;89 uint32_t cbTblBuf; 90 90 /** Current offset into the table buffer. */ 91 91 uint32_t offTblBuf; … … 162 162 * @param cbAdd How many bytes to add to the package length. 163 163 */ 164 DECL_FORCE_INLINE(void) rtAcpiTblUpdatePkgLength(PRTACPITBLINT pThis, size_t cbAdd)164 DECL_FORCE_INLINE(void) rtAcpiTblUpdatePkgLength(PRTACPITBLINT pThis, uint32_t cbAdd) 165 165 { 166 166 PRTACPITBLSTACKELEM pPkgElem = &pThis->paPkgStack[pThis->idxPkgStackElem]; … … 176 176 * @param cbReq Amount of bytes requested. 177 177 */ 178 static uint8_t *rtAcpiTblBufEnsureSpace(PRTACPITBLINT pThis, size_t cbReq)178 static uint8_t *rtAcpiTblBufEnsureSpace(PRTACPITBLINT pThis, uint32_t cbReq) 179 179 { 180 180 if (RT_LIKELY(pThis->cbTblBuf - pThis->offTblBuf >= cbReq)) … … 185 185 } 186 186 187 size_t const cbNew = RT_ALIGN_Z(pThis->cbTblBuf + cbReq, _4K);187 uint32_t const cbNew = RT_ALIGN_32(pThis->cbTblBuf + cbReq, _4K); 188 188 uint8_t *pbNew = (uint8_t *)RTMemRealloc(pThis->pbTblBuf, cbNew); 189 189 if (RT_UNLIKELY(!pbNew)) … … 324 324 * Note! PkgLength will also include its own length. 325 325 */ 326 uint8_t *pbPkgLength = pPkgElem->pbPkgLength;327 size_tcbThisPkg = pPkgElem->cbPkg;326 uint8_t *pbPkgLength = pPkgElem->pbPkgLength; 327 uint32_t cbThisPkg = pPkgElem->cbPkg; 328 328 if (cbThisPkg + 1 <= 63) 329 329 { … … 419 419 DECLINLINE(void) rtAcpiTblAppendNameString(PRTACPITBLINT pThis, const char *pszName) 420 420 { 421 size_t cbName = *pszName == '\\' ? 5 : 4;421 uint32_t cbName = *pszName == '\\' ? 5 : 4; 422 422 uint8_t *pb = rtAcpiTblBufEnsureSpace(pThis, cbName); 423 423 if (pb) … … 548 548 { 549 549 PRTACPITBLINT pThis = hAcpiTbl; 550 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);550 AssertPtrReturn(pThis, 0); 551 551 AssertRCReturn(pThis->rcErr, 0); 552 552 AssertReturn(pThis->fFinalized, 0); … … 707 707 708 708 rtAcpiTblAppendByte(pThis, ACPI_AML_BYTE_CODE_PREFIX_STRING); 709 rtAcpiTblAppendData(pThis, psz, strlen(psz) + 1);709 rtAcpiTblAppendData(pThis, psz, (uint32_t)strlen(psz) + 1); 710 710 return pThis->rcErr; 711 711 } … … 761 761 AssertPtrReturn(pThis, VERR_INVALID_HANDLE); 762 762 AssertReturn(!cbBuf || RT_VALID_PTR(pvBuf), VERR_INVALID_PARAMETER); 763 AssertReturn(cbBuf <= UINT32_MAX, VERR_BUFFER_OVERFLOW); 763 764 764 765 rtAcpiTblPkgStart(pThis, ACPI_AML_BYTE_CODE_OP_BUFFER); 765 766 RTAcpiTblIntegerAppend(hAcpiTbl, cbBuf); 766 767 if (pvBuf) 767 rtAcpiTblAppendData(pThis, pvBuf, cbBuf);768 rtAcpiTblAppendData(pThis, pvBuf, (uint32_t)cbBuf); 768 769 return rtAcpiTblPkgFinish(pThis, ACPI_AML_BYTE_CODE_OP_BUFFER); 769 770 } … … 814 815 * @param cbReq Number of free bytes required. 815 816 */ 816 static uint8_t *rtAcpiResBufEnsureSpace(PRTACPIRESINT pThis, size_t cbReq)817 static uint8_t *rtAcpiResBufEnsureSpace(PRTACPIRESINT pThis, uint32_t cbReq) 817 818 { 818 819 if (RT_LIKELY(pThis->cbResBuf - pThis->offResBuf >= cbReq))
Note:
See TracChangeset
for help on using the changeset viewer.