Searched defs:cbToTryRead (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DIEMAll.cpp926 uint32_t cbToTryRead; local
930 cbToTryRead = PAGE_SIZE;
934 cbToTryRead = PAGE_SIZE - (GCPtrPC & PAGE_OFFSET_MASK);
942 cbToTryRead = pCtx->cs.u32Limit - GCPtrPC32 + 1;
943 if (!cbToTryRead) /* overflowed */
946 cbToTryRead = UINT32_MAX;
1023 if (cbToTryRead > cbLeftOnPage)
1024 cbToTryRead = cbLeftOnPage;
1025 if (cbToTryRead > sizeof(pIemCpu->abOpcode))
1026 cbToTryRead
[all...]

Completed in 52 milliseconds