Exemplo n.º 1
0
  public LongBuffer put(int i, long x) {

    Bits.putLongB(bb, ix(checkIndex(i)), x);
    return this;
  }
Exemplo n.º 2
0
  public LongBuffer put(long x) {

    Bits.putLongB(bb, ix(nextPutIndex()), x);
    return this;
  }