Home
last modified time | relevance | path

Searched refs:vB (Results 1 – 4 of 4) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
DSCCP.java305 int vB = ((CstInteger) cB).getValue(); in simulateBranch() local
308 constantSuccessor = (vA == vB); in simulateBranch()
311 constantSuccessor = (vA != vB); in simulateBranch()
314 constantSuccessor = (vA < vB); in simulateBranch()
317 constantSuccessor = (vA >= vB); in simulateBranch()
320 constantSuccessor = (vA <= vB); in simulateBranch()
323 constantSuccessor = (vA > vB); in simulateBranch()
402 int vB = ((CstInteger) cB).getValue(); in simulateMath() local
406 vR = vA + vB; in simulateMath()
411 vR = vB - vA; in simulateMath()
[all …]
/dalvik/libdex/
DInstrUtils.cpp506 pDec->vB = INST_B(inst); in dexDecodeInstruction()
510 pDec->vB = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value in dexDecodeInstruction()
525 pDec->vB = FETCH(1); in dexDecodeInstruction()
530 pDec->vB = (s2) FETCH(1); // sign-extend 16-bit value in dexDecodeInstruction()
539 pDec->vB = FETCH(1); in dexDecodeInstruction()
543 pDec->vB = FETCH(1) & 0xff; in dexDecodeInstruction()
548 pDec->vB = FETCH(1) & 0xff; in dexDecodeInstruction()
554 pDec->vB = INST_B(inst); in dexDecodeInstruction()
560 pDec->vB = INST_B(inst); in dexDecodeInstruction()
569 pDec->vB = FETCH_u4(1); // 32-bit value in dexDecodeInstruction()
[all …]
DInstrUtils.h137 u4 vB; member
/dalvik/dexdump/
DDexDump.cpp792 index = pDecInsn->vB; in indexString()
796 index = pDecInsn->vB; in indexString()
806 index = pDecInsn->vB; // method index in indexString()
1006 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction()
1010 pDecInsn->vA, (s4)pDecInsn->vB, (u1)pDecInsn->vB); in dumpInstruction()
1026 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction()
1030 s4 targ = (s4) pDecInsn->vB; in dumpInstruction()
1039 pDecInsn->vA, (s4)pDecInsn->vB, (u2)pDecInsn->vB); in dumpInstruction()
1044 s4 value = pDecInsn->vB << 16; in dumpInstruction()
1046 pDecInsn->vA, value, (u2)pDecInsn->vB); in dumpInstruction()
[all …]