Package com.kenai.jnr.x86asm
Class CodeBuffer
- java.lang.Object
-
- com.kenai.jnr.x86asm.CodeBuffer
-
@Deprecated final class CodeBuffer extends java.lang.ObjectDeprecated.
-
-
Field Summary
Fields Modifier and Type Field Description private java.nio.ByteBufferbufDeprecated.
-
Constructor Summary
Constructors Constructor Description CodeBuffer()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intcapacity()Deprecated.(package private) voidcopyTo(java.nio.ByteBuffer dst)Deprecated.voidemitByte(byte x)Deprecated.voidemitData(java.nio.ByteBuffer data, int len)Deprecated.voidemitDWord(int x)Deprecated.voidemitQWord(long x)Deprecated.voidemitWord(short x)Deprecated.voidensureSpace()Deprecated.bytegetByteAt(int pos)Deprecated.intgetDWordAt(int pos)Deprecated.longgetQWordAt(int pos)Deprecated.shortgetWordAt(int pos)Deprecated.voidgrow()Deprecated.intoffset()Deprecated.voidsetByteAt(int pos, byte x)Deprecated.voidsetDWordAt(int pos, int x)Deprecated.voidsetQWordAt(int pos, long x)Deprecated.voidsetWordAt(int pos, short x)Deprecated.
-
-
-
Method Detail
-
ensureSpace
public final void ensureSpace()
Deprecated.
-
grow
public void grow()
Deprecated.
-
copyTo
final void copyTo(java.nio.ByteBuffer dst)
Deprecated.
-
offset
public final int offset()
Deprecated.
-
capacity
public int capacity()
Deprecated.
-
emitByte
public final void emitByte(byte x)
Deprecated.
-
emitWord
public final void emitWord(short x)
Deprecated.
-
emitDWord
public final void emitDWord(int x)
Deprecated.
-
emitQWord
public final void emitQWord(long x)
Deprecated.
-
emitData
public final void emitData(java.nio.ByteBuffer data, int len)Deprecated.
-
getByteAt
public final byte getByteAt(int pos)
Deprecated.
-
getWordAt
public final short getWordAt(int pos)
Deprecated.
-
getDWordAt
public final int getDWordAt(int pos)
Deprecated.
-
getQWordAt
public final long getQWordAt(int pos)
Deprecated.
-
setByteAt
public final void setByteAt(int pos, byte x)Deprecated.
-
setWordAt
public final void setWordAt(int pos, short x)Deprecated.
-
setDWordAt
public final void setDWordAt(int pos, int x)Deprecated.
-
setQWordAt
public final void setQWordAt(int pos, long x)Deprecated.
-
-