Searched refs:pu8Code (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMRC/
H A DTRPMRCHandlers.cpp701 uint8_t *pu8Code = (uint8_t *)(uintptr_t)GCPtr; local
716 if ( pu8Code[0] != 0xf2 /* REPNE/REPNZ */
717 && pu8Code[0] != 0xf3 /* REP/REPE/REPZ */
718 && pu8Code[0] != 0x2e /* CS: */
719 && pu8Code[0] != 0x36 /* SS: */
720 && pu8Code[0] != 0x3e /* DS: */
721 && pu8Code[0] != 0x26 /* ES: */
722 && pu8Code[0] != 0x64 /* FS: */
723 && pu8Code[0] != 0x65 /* GS: */
724 && pu8Code[
[all...]
/vbox/src/VBox/Runtime/common/log/
H A Dlog.cpp818 uint8_t *pu8Code;
861 pu8Code = (uint8_t *)RTMemExecAlloc(64);
862 if (pu8Code)
864 pLogger->pfnLogger = *(PFNRTLOGGER*)&pu8Code;
865 *pu8Code++ = 0x68; /* push imm32 */
866 *(void **)pu8Code = pLogger;
867 pu8Code += sizeof(void *);
868 *pu8Code++ = 0xe8; /* call rel32 */
869 *(uint32_t *)pu8Code = (uintptr_t)RTLogLogger - ((uintptr_t)pu8Code
[all...]

Completed in 47 milliseconds