This action will force synchronization from Stefan/Java8Source, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/** Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/// -- This file was mechanically generated: Do not edit! -- //package java.nio;import java.io.FileDescriptor;import sun.misc.Cleaner;import sun.misc.Unsafe;import sun.misc.VM;import sun.nio.ch.DirectBuffer;class DirectIntBufferUextends IntBufferimplements DirectBuffer{// Cached unsafe-access objectprotected static final Unsafe unsafe = Bits.unsafe();// Cached array base offsetprivate static final long arrayBaseOffset = (long)unsafe.arrayBaseOffset(int[].class);// Cached unaligned-access capabilityprotected static final boolean unaligned = Bits.unaligned();// Base address, used in all indexing calculations// NOTE: moved up to Buffer.java for speed in JNI GetDirectBufferAddress// protected long address;// An object attached to this buffer. If this buffer is a view of another// buffer then we use this field to keep a reference to that buffer to// ensure that its memory isn't freed before we are done with it.private final Object att;public Object attachment() {return att;}public Cleaner cleaner() { return null; }// For duplicates and slices//DirectIntBufferU(DirectBuffer db, // package-privateint mark, int pos, int lim, int cap,int off){super(mark, pos, lim, cap);address = db.address() + off;att = db;}public IntBuffer slice() {int pos = this.position();int lim = this.limit();assert (pos <= lim);int rem = (pos <= lim ? lim - pos : 0);int off = (pos << 2);assert (off >= 0);return new DirectIntBufferU(this, -1, 0, rem, rem, off);}public IntBuffer duplicate() {return new DirectIntBufferU(this,this.markValue(),this.position(),this.limit(),this.capacity(),0);}public IntBuffer asReadOnlyBuffer() {return new DirectIntBufferRU(this,this.markValue(),this.position(),this.limit(),this.capacity(),0);}public long address() {return address;}private long ix(int i) {return address + ((long)i << 2);}public int get() {return ((unsafe.getInt(ix(nextGetIndex()))));}public int get(int i) {return ((unsafe.getInt(ix(checkIndex(i)))));}public IntBuffer get(int[] dst, int offset, int length) {if (((long)length << 2) > Bits.JNI_COPY_TO_ARRAY_THRESHOLD) {checkBounds(offset, length, dst.length);int pos = position();int lim = limit();assert (pos <= lim);int rem = (pos <= lim ? lim - pos : 0);if (length > rem)throw new BufferUnderflowException();if (order() != ByteOrder.nativeOrder())Bits.copyToIntArray(ix(pos), dst,(long)offset << 2,(long)length << 2);elseBits.copyToArray(ix(pos), dst, arrayBaseOffset,(long)offset << 2,(long)length << 2);position(pos + length);} else {super.get(dst, offset, length);}return this;}public IntBuffer put(int x) {unsafe.putInt(ix(nextPutIndex()), ((x)));return this;}public IntBuffer put(int i, int x) {unsafe.putInt(ix(checkIndex(i)), ((x)));return this;}public IntBuffer put(IntBuffer src) {if (src instanceof DirectIntBufferU) {if (src == this)throw new IllegalArgumentException();DirectIntBufferU sb = (DirectIntBufferU)src;int spos = sb.position();int slim = sb.limit();assert (spos <= slim);int srem = (spos <= slim ? slim - spos : 0);int pos = position();int lim = limit();assert (pos <= lim);int rem = (pos <= lim ? lim - pos : 0);if (srem > rem)throw new BufferOverflowException();unsafe.copyMemory(sb.ix(spos), ix(pos), (long)srem << 2);sb.position(spos + srem);position(pos + srem);} else if (src.hb != null) {int spos = src.position();int slim = src.limit();assert (spos <= slim);int srem = (spos <= slim ? slim - spos : 0);put(src.hb, src.offset + spos, srem);src.position(spos + srem);} else {super.put(src);}return this;}public IntBuffer put(int[] src, int offset, int length) {if (((long)length << 2) > Bits.JNI_COPY_FROM_ARRAY_THRESHOLD) {checkBounds(offset, length, src.length);int pos = position();int lim = limit();assert (pos <= lim);int rem = (pos <= lim ? lim - pos : 0);if (length > rem)throw new BufferOverflowException();if (order() != ByteOrder.nativeOrder())Bits.copyFromIntArray(src,(long)offset << 2,ix(pos),(long)length << 2);elseBits.copyFromArray(src, arrayBaseOffset,(long)offset << 2,ix(pos),(long)length << 2);position(pos + length);} else {super.put(src, offset, length);}return this;}public IntBuffer compact() {int pos = position();int lim = limit();assert (pos <= lim);int rem = (pos <= lim ? lim - pos : 0);unsafe.copyMemory(ix(pos), ix(0), (long)rem << 2);position(rem);limit(capacity());discardMark();return this;}public boolean isDirect() {return true;}public boolean isReadOnly() {return false;}public ByteOrder order() {return ((ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN)? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。