Home
last modified time | relevance | path

Searched refs:outAt (Results 1 – 5 of 5) sorted by relevance

/external/smali/util/src/main/java/org/jf/util/
DUtf8Utils.java45 int outAt = 0; in stringToUtf8Bytes() local
50 bytes[outAt] = (byte) c; in stringToUtf8Bytes()
51 outAt++; in stringToUtf8Bytes()
53 bytes[outAt] = (byte) (((c >> 6) & 0x1f) | 0xc0); in stringToUtf8Bytes()
54 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); in stringToUtf8Bytes()
55 outAt += 2; in stringToUtf8Bytes()
57 bytes[outAt] = (byte) (((c >> 12) & 0x0f) | 0xe0); in stringToUtf8Bytes()
58 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); in stringToUtf8Bytes()
59 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); in stringToUtf8Bytes()
60 outAt += 3; in stringToUtf8Bytes()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/util/
DHexParser.java48 int outAt = 0; in parse() local
77 if (alleged != outAt) { in parse()
94 result[outAt] = (byte) c; in parse()
95 outAt++; in parse()
106 "offset " + Hex.u4(outAt)); in parse()
120 result[outAt] = (byte) ((value << 4) | digVal); in parse()
121 outAt++; in parse()
128 Hex.u4(outAt)); in parse()
133 "offset " + Hex.u4(outAt)); in parse()
137 if (outAt < result.length) { in parse()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstString.java49 int outAt = 0; in stringToUtf8Bytes() local
54 bytes[outAt] = (byte) c; in stringToUtf8Bytes()
55 outAt++; in stringToUtf8Bytes()
57 bytes[outAt] = (byte) (((c >> 6) & 0x1f) | 0xc0); in stringToUtf8Bytes()
58 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); in stringToUtf8Bytes()
59 outAt += 2; in stringToUtf8Bytes()
61 bytes[outAt] = (byte) (((c >> 12) & 0x0f) | 0xe0); in stringToUtf8Bytes()
62 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); in stringToUtf8Bytes()
63 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); in stringToUtf8Bytes()
64 outAt += 3; in stringToUtf8Bytes()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DHighRegisterPrefix.java92 for (int i = 0, outAt = 0; i < sz; i++) { in calculateInsnsIfNecessary()
94 insns[i] = moveInsnFor(src, outAt); in calculateInsnsIfNecessary()
95 outAt += src.getCategory(); in calculateInsnsIfNecessary()
118 for (int i = 0, outAt = 0; i < sz; i++) { in listingString0()
120 SimpleInsn insn = moveInsnFor(src, outAt); in listingString0()
128 outAt += src.getCategory(); in listingString0()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DMixedItemSection.java308 int outAt = 0; in placeItems() local
312 int placedAt = one.place(this, outAt); in placeItems()
314 if (placedAt < outAt) { in placeItems()
319 outAt = placedAt + one.writeSize(); in placeItems()
326 writeSize = outAt; in placeItems()