Home
last modified time | relevance | path

Searched refs:v (Results 1 – 12 of 12) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
DHex.java36 public static String u8(long v) { in u8() argument
39 result[15 - i] = Character.forDigit((int) v & 0x0f, 16); in u8()
40 v >>= 4; in u8()
52 public static String u4(int v) { in u4() argument
55 result[7 - i] = Character.forDigit(v & 0x0f, 16); in u4()
56 v >>= 4; in u4()
68 public static String u3(int v) { in u3() argument
71 result[5 - i] = Character.forDigit(v & 0x0f, 16); in u3()
72 v >>= 4; in u3()
84 public static String u2(int v) { in u2() argument
[all …]
/dalvik/dx/src/com/android/dx/util/
DHex.java36 public static String u8(long v) { in u8() argument
39 result[15 - i] = Character.forDigit((int) v & 0x0f, 16); in u8()
40 v >>= 4; in u8()
52 public static String u4(int v) { in u4() argument
55 result[7 - i] = Character.forDigit(v & 0x0f, 16); in u4()
56 v >>= 4; in u4()
68 public static String u3(int v) { in u3() argument
71 result[5 - i] = Character.forDigit(v & 0x0f, 16); in u3()
72 v >>= 4; in u3()
84 public static String u2(int v) { in u2() argument
[all …]
/dalvik/dx/src/com/android/dx/ssa/
DDominators.java126 SsaBasicBlock v = worklist.get(wsize - 1); in compress() local
127 DFSInfo vbbInfo = info[v.getIndex()]; in compress()
153 private SsaBasicBlock eval(SsaBasicBlock v) { in eval() argument
154 DFSInfo bbInfo = info[v.getIndex()]; in eval()
157 return v; in eval()
160 compress(v); in eval()
259 public void visitBlock(SsaBasicBlock v, SsaBasicBlock parent) { in visitBlock() argument
262 bbInfo.rep = v; in visitBlock()
264 vertex.add(v); in visitBlock()
265 info[v.getIndex()] = bbInfo; in visitBlock()
DNormalSsaInsn.java203 public void accept(Visitor v) { in accept() argument
205 v.visitMoveInsn(this); in accept()
207 v.visitNonMoveInsn(this); in accept()
DSsaMethod.java720 public void forEachPhiInsn(PhiInsn.Visitor v) { in forEachPhiInsn() argument
722 block.forEachPhiInsn(v); in forEachPhiInsn()
737 SsaBasicBlock.Visitor v) { in forEachBlockDepthFirst() argument
766 v.visitBlock(cur, parent); in forEachBlockDepthFirst()
778 public void forEachBlockDepthFirstDom(SsaBasicBlock.Visitor v) { in forEachBlockDepthFirstDom() argument
795 v.visitBlock(cur, null); in forEachBlockDepthFirstDom()
DPhiInsn.java326 public void accept(SsaInsn.Visitor v) { in accept() argument
327 v.visitPhiInsn(this); in accept()
DSsaInsn.java269 public abstract void accept(Visitor v); in accept() argument
DSsaBasicBlock.java249 public void forEachPhiInsn(PhiInsn.Visitor v) { in forEachPhiInsn() argument
255 v.visitPhiInsn((PhiInsn) insn); in forEachPhiInsn()
988 void visitBlock (SsaBasicBlock v, SsaBasicBlock parent); in visitBlock() argument
/dalvik/dx/tests/093-ssa-invoke-range/
Dexpected.txt79 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v0:I v1:I=0 v2:I v3:I=1 v
86 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v0:I v1:I=0 v2:I v3:I=1 v
128 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v6:I v7:I=0 v8:I v9:I=1 v
186 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v0:I v1:I=0 v2:I v3:I=0 v
214 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v0:I v1:I=0 v2:I v3:I=1 v
226 rt.methodThatNeedsInvokeRange:(IIIIII)V catch) . <- v5:I v6:I=0 v7:I v8:I=1 v
/dalvik/dx/src/com/android/dx/cf/code/
DRopper.java1758 BasicBlock.Visitor v) { in forEachNonSubBlockDepthFirst() argument
1760 v, new BitSet(maxLabel)); in forEachNonSubBlockDepthFirst() local
1772 BasicBlock next, BasicBlock.Visitor v, BitSet visited) { in forEachNonSubBlockDepthFirst0() argument
1773 v.visitBlock(next); in forEachNonSubBlockDepthFirst0()
1797 forEachNonSubBlockDepthFirst0(result.get(idx), v, visited); in forEachNonSubBlockDepthFirst0() local
/dalvik/dx/tests/092-ssa-cfg-edge-cases/
Dexpected.txt61 Blort.java:9@001c: Rop{move-result-pseudo Ljava/io/PrintStream; <- . flows} v
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java291 T v = read(in, indexMap, index); in readIntoMap() local
292 List<Integer> l = values.get(v); in readIntoMap()
295 values.put(v, l); in readIntoMap()