Searched refs:uCode (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp2831 * @param uCode The abbreviation code to lookup.
2833 static PCRTDWARFABBREV rtDwarfAbbrev_LookupMiss(PRTDBGMODDWARF pThis, uint32_t uCode) argument
2838 if (!uCode)
2845 if (pThis->cCachedAbbrevsAlloced < uCode)
2847 if (uCode >= _64K)
2851 uint32_t cNew = RT_ALIGN(uCode, 64);
2913 if (uCurCode == uCode)
2965 if (uCurCode == uCode)
2998 * @param uCode The abbreviation code to lookup.
3000 static PCRTDWARFABBREV rtDwarfAbbrev_Lookup(PRTDBGMODDWARF pThis, uint32_t uCode) argument
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDevBusLogic.cpp1208 uint8_t uCode; local
1210 PDMDevHlpPhysRead(pBusLogic->CTX_SUFF(pDevIns), GCPhysAddrMailboxIncoming + uCodeOffs, &uCode, sizeof(uCode));
1211 Assert(uCode == BUSLOGIC_MAILBOX_INCOMING_COMPLETION_FREE);
2624 uint8_t uCode = uBaseCode & MAX_ISA_BASE; local
2625 uint16_t uNewBase = g_aISABases[uCode];
2652 pBusLogic->uISABaseCode = uCode;
/vbox/src/recompiler/
H A DVBoxRecompiler.c4120 * @param uCode The guest address of the code to disassemble. (flat?)
4124 void target_disas(FILE *phFile, target_ulong uCode, target_ulong cb, int fFlags) argument
4143 RTLogPrintf("Guest Code: PC=%llx %llx bytes fFlags=%d\n", (uint64_t)uCode, (uint64_t)cb, fFlags);
4145 eip = uCode - cpu_single_env->segs[R_CS].base;
4158 RTLogPrintf("%llx %s\n", (uint64_t)uCode, szBuf);
4161 RTLogPrintf("%llx %04x:%llx: %s\n", (uint64_t)uCode, cs, (uint64_t)eip, szBuf);
4169 uCode += cbInstr;

Completed in 119 milliseconds