/[classpath]/classpath/gnu/java/nio/ShortBufferImpl.java
ViewVC logotype

Diff of /classpath/gnu/java/nio/ShortBufferImpl.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by rveldema, Mon Mar 11 16:29:45 2002 UTC revision 1.2 by rveldema, Tue Mar 12 11:36:22 2002 UTC
# Line 1  Line 1 
1  package manta.runtime;  package gnu.java.nio;
2  import java.nio.*;  import java.nio.*;
3  public final class ShortBufferImpl extends java.nio. ShortBuffer  public final class ShortBufferImpl extends java.nio. ShortBuffer
4  {  {
5      private int array_offset;      private int array_offset;
6      short [] backing_buffer;      short [] backing_buffer;
7      private boolean ro;      private boolean ro;
8      ShortBufferImpl(int cap, int off, int lim)    public ShortBufferImpl(int cap, int off, int lim)
9      {      {
10        this.backing_buffer = new short[cap];        this.backing_buffer = new short[cap];
11        this.cap = cap;        this.capacity(cap);
12        this.pos = off;        this.position(off);
13        this.limit = lim;        this.limit(lim);
14      }      }
15      ShortBufferImpl(short[] array, int off, int lim)    public ShortBufferImpl(short[] array, int off, int lim)
16      {      {
17        this.backing_buffer = array;        this.backing_buffer = array;
18        this.cap = array.length;        this.capacity(array.length);
19        this.pos = off;        this.position(off);
20        this.limit = lim;        this.limit(lim);
21      }      }
22      ShortBufferImpl(ShortBufferImpl copy)    public ShortBufferImpl(ShortBufferImpl copy)
23      {      {
24          backing_buffer = copy.backing_buffer;          backing_buffer = copy.backing_buffer;
25          ro = copy.ro;          ro = copy.ro;
26          pos = copy.pos;          position(copy.position());
27          limit = copy.limit;          limit(copy.limit());
28      }      }
29      void inc_pos(int a)      void inc_pos(int a)
30      {      {
31          pos += a;        position(position() + a);
32      }      }
33    private static MantaNative short[] nio_cast(byte[]copy);    private static native short[] nio_cast(byte[]copy);
34    private static MantaNative short[] nio_cast(char[]copy);    private static native short[] nio_cast(char[]copy);
35    private static MantaNative short[] nio_cast(short[]copy);    private static native short[] nio_cast(short[]copy);
36    private static MantaNative short[] nio_cast(long[]copy);    private static native short[] nio_cast(long[]copy);
37    private static MantaNative short[] nio_cast(int[]copy);    private static native short[] nio_cast(int[]copy);
38    private static MantaNative short[] nio_cast(float[]copy);    private static native short[] nio_cast(float[]copy);
39    private static MantaNative short[] nio_cast(double[]copy);    private static native short[] nio_cast(double[]copy);
40    ShortBufferImpl(byte[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative byte nio_get_Byte(ShortBufferImpl b, int index); private static MantaNative void nio_put_Byte(ShortBufferImpl b, int index, byte value); public java.nio. ByteBuffer asByteBuffer() { return new manta.runtime. ByteBufferImpl(backing_buffer); }    ShortBufferImpl(byte[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native byte nio_get_Byte(ShortBufferImpl b, int index); private static native void nio_put_Byte(ShortBufferImpl b, int index, byte value); public java.nio. ByteBuffer asByteBuffer() { return new gnu.java.nio. ByteBufferImpl(backing_buffer); }
41    ShortBufferImpl(char[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative char nio_get_Char(ShortBufferImpl b, int index); private static MantaNative void nio_put_Char(ShortBufferImpl b, int index, char value); public java.nio. CharBuffer asCharBuffer() { return new manta.runtime. CharBufferImpl(backing_buffer); }    ShortBufferImpl(char[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native char nio_get_Char(ShortBufferImpl b, int index); private static native void nio_put_Char(ShortBufferImpl b, int index, char value); public java.nio. CharBuffer asCharBuffer() { return new gnu.java.nio. CharBufferImpl(backing_buffer); }
42    ShortBufferImpl(short[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative short nio_get_Short(ShortBufferImpl b, int index); private static MantaNative void nio_put_Short(ShortBufferImpl b, int index, short value); public java.nio. ShortBuffer asShortBuffer() { return new manta.runtime. ShortBufferImpl(backing_buffer); }    ShortBufferImpl(short[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native short nio_get_Short(ShortBufferImpl b, int index); private static native void nio_put_Short(ShortBufferImpl b, int index, short value); public java.nio. ShortBuffer asShortBuffer() { return new gnu.java.nio. ShortBufferImpl(backing_buffer); }
43    ShortBufferImpl(int[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative int nio_get_Int(ShortBufferImpl b, int index); private static MantaNative void nio_put_Int(ShortBufferImpl b, int index, int value); public java.nio. IntBuffer asIntBuffer() { return new manta.runtime. IntBufferImpl(backing_buffer); }    ShortBufferImpl(int[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native int nio_get_Int(ShortBufferImpl b, int index); private static native void nio_put_Int(ShortBufferImpl b, int index, int value); public java.nio. IntBuffer asIntBuffer() { return new gnu.java.nio. IntBufferImpl(backing_buffer); }
44    ShortBufferImpl(long[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative long nio_get_Long(ShortBufferImpl b, int index); private static MantaNative void nio_put_Long(ShortBufferImpl b, int index, long value); public java.nio. LongBuffer asLongBuffer() { return new manta.runtime. LongBufferImpl(backing_buffer); }    ShortBufferImpl(long[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native long nio_get_Long(ShortBufferImpl b, int index); private static native void nio_put_Long(ShortBufferImpl b, int index, long value); public java.nio. LongBuffer asLongBuffer() { return new gnu.java.nio. LongBufferImpl(backing_buffer); }
45    ShortBufferImpl(float[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative float nio_get_Float(ShortBufferImpl b, int index); private static MantaNative void nio_put_Float(ShortBufferImpl b, int index, float value); public java.nio. FloatBuffer asFloatBuffer() { return new manta.runtime. FloatBufferImpl(backing_buffer); }    ShortBufferImpl(float[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native float nio_get_Float(ShortBufferImpl b, int index); private static native void nio_put_Float(ShortBufferImpl b, int index, float value); public java.nio. FloatBuffer asFloatBuffer() { return new gnu.java.nio. FloatBufferImpl(backing_buffer); }
46    ShortBufferImpl(double[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static MantaNative double nio_get_Double(ShortBufferImpl b, int index); private static MantaNative void nio_put_Double(ShortBufferImpl b, int index, double value); public java.nio. DoubleBuffer asDoubleBuffer() { return new manta.runtime. DoubleBufferImpl(backing_buffer); }    ShortBufferImpl(double[] copy) { this.backing_buffer = copy != null ? nio_cast(copy) : null; } private static native double nio_get_Double(ShortBufferImpl b, int index); private static native void nio_put_Double(ShortBufferImpl b, int index, double value); public java.nio. DoubleBuffer asDoubleBuffer() { return new gnu.java.nio. DoubleBufferImpl(backing_buffer); }
47      public boolean isReadOnly()      public boolean isReadOnly()
48      {      {
49          return ro;          return ro;
# Line 51  public final class ShortBufferImpl exten Line 51  public final class ShortBufferImpl exten
51      public java.nio. ShortBuffer slice()      public java.nio. ShortBuffer slice()
52      {      {
53          ShortBufferImpl A = new ShortBufferImpl(this);          ShortBufferImpl A = new ShortBufferImpl(this);
54          A.array_offset = pos;          A.array_offset = position();
55          return A;          return A;
56      }      }
57      public java.nio. ShortBuffer duplicate()      public java.nio. ShortBuffer duplicate()
# Line 72  public final class ShortBufferImpl exten Line 72  public final class ShortBufferImpl exten
72      {      {
73          return backing_buffer != null;          return backing_buffer != null;
74      }      }
75      public short get()    final public short get()
76      {      {
77          short e = backing_buffer[pos];          short e = backing_buffer[position()];
78          pos++;          position(position()+1);
79          return e;          return e;
80      }      }
81      public java.nio. ShortBuffer put(short b)    final public java.nio. ShortBuffer put(short b)
82      {      {
83          backing_buffer[pos] = b;          backing_buffer[position()] = b;
84          pos++;          position(position()+1);
85          return this;          return this;
86      }      }
87      public short get(int index)    final public short get(int index)
88      {      {
89          return backing_buffer[index];          return backing_buffer[index];
90      }      }
91      public java.nio. ShortBuffer put(int index, short b)     final public java.nio. ShortBuffer put(int index, short b)
92      {      {
93        backing_buffer[index] = b;        backing_buffer[index] = b;
94        return this;        return this;
95      }      }
96    public char getChar() { char a = nio_get_Char(this, pos); inc_pos(2); return a; } public java.nio. ShortBuffer putChar(char value) { nio_put_Char(this, pos, value); inc_pos(2); return this; } public char getChar(int index) { char a = nio_get_Char(this, index); inc_pos(2); return a; } public java.nio. ShortBuffer putChar(int index, char value) { nio_put_Char(this, index, value); inc_pos(2); return this; };    final public char getChar() { char a = nio_get_Char(this, position()); inc_pos(2); return a; } final public java.nio. ShortBuffer putChar(char value) { nio_put_Char(this, position(), value); inc_pos(2); return this; } final public char getChar(int index) { char a = nio_get_Char(this, index); return a; } final public java.nio. ShortBuffer putChar(int index, char value) { nio_put_Char(this, index, value); return this; };
97    public short getShort() { return get(); } public java.nio. ShortBuffer putShort(short value) { return put(value); } public short getShort(int index) { return get(index); } public java.nio. ShortBuffer putShort(int index, short value) { return put(index, value); };    final public short getShort() { return get(); } final public java.nio. ShortBuffer putShort(short value) { return put(value); } final public short getShort(int index) { return get(index); } final public java.nio. ShortBuffer putShort(int index, short value) { return put(index, value); };
98    public int getInt() { int a = nio_get_Int(this, pos); inc_pos(4); return a; } public java.nio. ShortBuffer putInt(int value) { nio_put_Int(this, pos, value); inc_pos(4); return this; } public int getInt(int index) { int a = nio_get_Int(this, index); inc_pos(4); return a; } public java.nio. ShortBuffer putInt(int index, int value) { nio_put_Int(this, index, value); inc_pos(4); return this; };    final public int getInt() { int a = nio_get_Int(this, position()); inc_pos(4); return a; } final public java.nio. ShortBuffer putInt(int value) { nio_put_Int(this, position(), value); inc_pos(4); return this; } final public int getInt(int index) { int a = nio_get_Int(this, index); return a; } final public java.nio. ShortBuffer putInt(int index, int value) { nio_put_Int(this, index, value); return this; };
99    public long getLong() { long a = nio_get_Long(this, pos); inc_pos(8); return a; } public java.nio. ShortBuffer putLong(long value) { nio_put_Long(this, pos, value); inc_pos(8); return this; } public long getLong(int index) { long a = nio_get_Long(this, index); inc_pos(8); return a; } public java.nio. ShortBuffer putLong(int index, long value) { nio_put_Long(this, index, value); inc_pos(8); return this; };    final public long getLong() { long a = nio_get_Long(this, position()); inc_pos(8); return a; } final public java.nio. ShortBuffer putLong(long value) { nio_put_Long(this, position(), value); inc_pos(8); return this; } final public long getLong(int index) { long a = nio_get_Long(this, index); return a; } final public java.nio. ShortBuffer putLong(int index, long value) { nio_put_Long(this, index, value); return this; };
100    public float getFloat() { float a = nio_get_Float(this, pos); inc_pos(4); return a; } public java.nio. ShortBuffer putFloat(float value) { nio_put_Float(this, pos, value); inc_pos(4); return this; } public float getFloat(int index) { float a = nio_get_Float(this, index); inc_pos(4); return a; } public java.nio. ShortBuffer putFloat(int index, float value) { nio_put_Float(this, index, value); inc_pos(4); return this; };    final public float getFloat() { float a = nio_get_Float(this, position()); inc_pos(4); return a; } final public java.nio. ShortBuffer putFloat(float value) { nio_put_Float(this, position(), value); inc_pos(4); return this; } final public float getFloat(int index) { float a = nio_get_Float(this, index); return a; } final public java.nio. ShortBuffer putFloat(int index, float value) { nio_put_Float(this, index, value); return this; };
101    public double getDouble() { double a = nio_get_Double(this, pos); inc_pos(8); return a; } public java.nio. ShortBuffer putDouble(double value) { nio_put_Double(this, pos, value); inc_pos(8); return this; } public double getDouble(int index) { double a = nio_get_Double(this, index); inc_pos(8); return a; } public java.nio. ShortBuffer putDouble(int index, double value) { nio_put_Double(this, index, value); inc_pos(8); return this; };    final public double getDouble() { double a = nio_get_Double(this, position()); inc_pos(8); return a; } final public java.nio. ShortBuffer putDouble(double value) { nio_put_Double(this, position(), value); inc_pos(8); return this; } final public double getDouble(int index) { double a = nio_get_Double(this, index); return a; } final public java.nio. ShortBuffer putDouble(int index, double value) { nio_put_Double(this, index, value); return this; };
102  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26