Searched refs:pFinal (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/linux-user/arm/nwfpe/ |
H A D | fpa11_cpdt.c | 217 target_ulong pBase, pAddress, pFinal; in PerformLDF() local 230 pFinal = pBase; in PerformLDF() 232 pFinal += getOffset(opcode) * 4; in PerformLDF() 234 pFinal -= getOffset(opcode) * 4; in PerformLDF() 236 if (PREINDEXED(opcode)) pAddress = pFinal; else pAddress = pBase; in PerformLDF() 246 if (write_back) writeRegister(getRn(opcode),(unsigned int)pFinal); in PerformLDF() 252 target_ulong pBase, pAddress, pFinal; in PerformSTF() local 266 pFinal = pBase; in PerformSTF() 268 pFinal += getOffset(opcode) * 4; in PerformSTF() 270 pFinal -= getOffset(opcode) * 4; in PerformSTF() [all …]
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | fpa11_cpdt.c | 214 unsigned int __user *pBase, *pAddress, *pFinal; in PerformLDF() local 223 pFinal = pBase; in PerformLDF() 225 pFinal += getOffset(opcode); in PerformLDF() 227 pFinal -= getOffset(opcode); in PerformLDF() 230 pAddress = pFinal; in PerformLDF() 251 writeRegister(getRn(opcode), (unsigned long) pFinal); in PerformLDF() 257 unsigned int __user *pBase, *pAddress, *pFinal; in PerformSTF() local 271 pFinal = pBase; in PerformSTF() 273 pFinal += getOffset(opcode); in PerformSTF() 275 pFinal -= getOffset(opcode); in PerformSTF() [all …]
|