Home
last modified time | relevance | path

Searched refs:writeByte (Results 1 – 24 of 24) sorted by relevance

/dalvik/dx/src/com/android/dex/
DEncodedValueCodec.java51 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeSignedIntegralValue()
55 out.writeByte((byte) value); in writeSignedIntegralValue()
78 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeUnsignedIntegralValue()
82 out.writeByte((byte) value); in writeUnsignedIntegralValue()
108 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeRightZeroExtendedValue()
112 out.writeByte((byte) value); in writeRightZeroExtendedValue()
DLeb128.java108 out.writeByte((byte) ((value & 0x7f) | 0x80)); in writeUnsignedLeb128()
113 out.writeByte((byte) (value & 0x7f)); in writeUnsignedLeb128()
129 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0))); in writeSignedLeb128()
DAnnotation.java50 out.writeByte(visibility); in writeTo()
DDex.java643 public void writeByte(int b) { in writeByte() method in Dex.Section
690 writeByte(0); in writeStringData()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DValueEncoder.java184 out.writeByte(type); in writeConstant()
189 out.writeByte(type); in writeConstant()
195 out.writeByte(type); in writeConstant()
200 out.writeByte(type | (value << 5)); in writeConstant()
410 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeSignedIntegralValue()
414 out.writeByte((byte) value); in writeSignedIntegralValue()
441 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeUnsignedIntegralValue()
445 out.writeByte((byte) value); in writeUnsignedIntegralValue()
475 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeRightZeroExtendedValue()
479 out.writeByte((byte) value); in writeRightZeroExtendedValue()
DAnnotationItem.java199 case BUILD: out.writeByte(VISIBILITY_BUILD); break; in writeTo0()
200 case RUNTIME: out.writeByte(VISIBILITY_RUNTIME); break; in writeTo0()
201 case SYSTEM: out.writeByte(VISIBILITY_SYSTEM); break; in writeTo0()
DDebugInfoEncoder.java200 output.writeByte(DBG_SET_PROLOGUE_END); in convert0()
616 output.writeByte(DBG_RESTART_LOCAL); in emitLocalRestart()
692 output.writeByte(DBG_START_LOCAL); in emitLocalStart()
721 output.writeByte(DBG_START_LOCAL_EXTENDED); in emitLocalStartExtended()
750 output.writeByte(DBG_END_LOCAL); in emitLocalEnd()
809 output.writeByte(opcode); in emitPosition()
853 output.writeByte(DBG_ADVANCE_LINE); in emitAdvanceLine()
877 output.writeByte(DBG_ADVANCE_PC); in emitAdvancePc()
914 output.writeByte(DBG_END_SEQUENCE); in emitEndSequence()
DStringDataItem.java83 out.writeByte(0); in writeTo0()
DHeaderItem.java89 out.writeByte(MAGIC.charAt(i)); in writeTo()
/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationItem.java201 case BUILD: out.writeByte(VISIBILITY_BUILD); break; in writeTo0()
202 case RUNTIME: out.writeByte(VISIBILITY_RUNTIME); break; in writeTo0()
203 case SYSTEM: out.writeByte(VISIBILITY_SYSTEM); break; in writeTo0()
DDebugInfoEncoder.java208 output.writeByte(DBG_SET_PROLOGUE_END); in convert0()
628 output.writeByte(DBG_RESTART_LOCAL); in emitLocalRestart()
704 output.writeByte(DBG_START_LOCAL); in emitLocalStart()
733 output.writeByte(DBG_START_LOCAL_EXTENDED); in emitLocalStartExtended()
762 output.writeByte(DBG_END_LOCAL); in emitLocalEnd()
821 output.writeByte(opcode); in emitPosition()
865 output.writeByte(DBG_ADVANCE_LINE); in emitAdvanceLine()
889 output.writeByte(DBG_ADVANCE_PC); in emitAdvancePc()
926 output.writeByte(DBG_END_SEQUENCE); in emitEndSequence()
DValueEncoder.java201 out.writeByte(type); in writeConstant()
206 out.writeByte(type); in writeConstant()
212 out.writeByte(type); in writeConstant()
217 out.writeByte(type | (value << 5)); in writeConstant()
DStringDataItem.java83 out.writeByte(0); in writeTo0()
DHeaderItem.java81 out.writeByte(magic.charAt(i)); in writeTo()
/dalvik/dx/src/com/android/dex/util/
DByteOutput.java29 void writeByte(int i); in writeByte() method
/dalvik/dexgen/src/com/android/dexgen/util/
DOutput.java47 public void writeByte(int value); in writeByte() method
DByteArrayAnnotatedOutput.java148 public void writeByte(int value) { in writeByte() method in ByteArrayAnnotatedOutput
232 writeByte((value & 0x7f) | 0x80); in writeUnsignedLeb128()
238 writeByte(value & 0x7f); in writeUnsignedLeb128()
253 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0)); in writeSignedLeb128()
/dalvik/dx/src/com/android/dx/util/
DOutput.java50 public void writeByte(int value); in writeByte() method
DByteArrayAnnotatedOutput.java164 public void writeByte(int value) { in writeByte() method in ByteArrayAnnotatedOutput
/dalvik/dx/junit-tests/com/android/dx/util/
DByteArrayAnnotatedOutputTest.java49 output.writeByte(0); in testArrayAligned()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DArrayData.java123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo()
154 out.writeByte(0x00); in writeTo()
/dalvik/dx/src/com/android/dx/dex/code/
DArrayData.java125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo()
156 out.writeByte(0x00); in writeTo()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java386 out.writeByte((arg << 5) | type); in writeTypeAndArg()
DDexMerger.java983 debugInfoOut.writeByte(opcode); in transformDebugInfoItem()