HomeSort by relevance Sort by last modified time
    Searched refs:otherBuffer (Results 1 - 23 of 23) sorted by null

  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 139 * @param otherBuffer
147 public int compareTo(DoubleBuffer otherBuffer) {
148 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
149 : otherBuffer.remaining();
151 int otherPos = otherBuffer.position;
155 otherDouble = otherBuffer.get(otherPos);
165 return remaining() - otherBuffer.remaining();
203 DoubleBuffer otherBuffer = (DoubleBuffer) other;
205 if (remaining() != otherBuffer.remaining()) {
210 int otherPosition = otherBuffer.position
    [all...]
FloatBuffer.java 140 * @param otherBuffer
142 * @return a negative value if this is less than {@code otherBuffer}; 0 if
143 * this equals to {@code otherBuffer}; a positive value if this is
144 * greater than {@code otherBuffer}.
146 * if {@code otherBuffer} is not a float buffer.
148 public int compareTo(FloatBuffer otherBuffer) {
149 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
150 : otherBuffer.remaining();
152 int otherPos = otherBuffer.position;
156 otherFloat = otherBuffer.get(otherPos)
    [all...]
IntBuffer.java 136 * @param otherBuffer
144 public int compareTo(IntBuffer otherBuffer) {
145 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
146 : otherBuffer.remaining();
148 int otherPos = otherBuffer.position;
152 otherInt = otherBuffer.get(otherPos);
160 return remaining() - otherBuffer.remaining();
193 IntBuffer otherBuffer = (IntBuffer) other;
195 if (remaining() != otherBuffer.remaining()) {
200 int otherPosition = otherBuffer.position
    [all...]
LongBuffer.java 138 * @param otherBuffer
140 * @return a negative value if this is less than {@code otherBuffer}; 0 if
141 * this equals to {@code otherBuffer}; a positive value if this is
142 * greater than {@code otherBuffer}
144 * if {@code otherBuffer} is not a long buffer.
146 public int compareTo(LongBuffer otherBuffer) {
147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
148 : otherBuffer.remaining();
150 int otherPos = otherBuffer.position;
154 otherLong = otherBuffer.get(otherPos)
    [all...]
ShortBuffer.java 138 * @param otherBuffer
140 * @return a negative value if this is less than {@code otherBuffer}; 0 if
141 * this equals to {@code otherBuffer}; a positive value if this is
142 * greater than {@code otherBuffer}.
144 * if {@code otherBuffer} is not a short buffer.
146 public int compareTo(ShortBuffer otherBuffer) {
147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
148 : otherBuffer.remaining();
150 int otherPos = otherBuffer.position;
154 otherByte = otherBuffer.get(otherPos)
    [all...]
ByteBuffer.java 276 * @param otherBuffer
284 @Override public int compareTo(ByteBuffer otherBuffer) {
285 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
286 : otherBuffer.remaining();
288 int otherPos = otherBuffer.position;
292 otherByte = otherBuffer.get(otherPos);
300 return remaining() - otherBuffer.remaining();
337 ByteBuffer otherBuffer = (ByteBuffer) other;
339 if (remaining() != otherBuffer.remaining()) {
344 int otherPosition = otherBuffer.position
    [all...]
CharBuffer.java 195 * @param otherBuffer
197 * @return a negative value if this is less than {@code otherBuffer}; 0 if
198 * this equals to {@code otherBuffer}; a positive value if this is
199 * greater than {@code otherBuffer}.
201 * if {@code otherBuffer} is not a char buffer.
203 public int compareTo(CharBuffer otherBuffer) {
204 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
205 : otherBuffer.remaining();
207 int otherPos = otherBuffer.position;
211 otherByte = otherBuffer.get(otherPos)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingStateQueryTests.cpp 616 glu::Buffer otherBuffer (m_context.getRenderContext());
623 gl.glBindVertexBuffer(1, *otherBuffer, 0, 32);
634 glw::GLuint otherBuffer = -1;
636 gl.glGenBuffers(1, &otherBuffer);
639 gl.glBindVertexBuffer(1, otherBuffer, 0, 32);
641 gl.glBindVertexBuffer(1, otherBuffer, 0, 32);
644 gl.glDeleteBuffers(1, &otherBuffer);
647 verifyValue(gl, GL_VERTEX_BINDING_BUFFER, 1, otherBuffer);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Deque.h 220 const T* otherBuffer = other.m_buffer.buffer();
222 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
224 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
225 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 733 ByteBuffer otherBuffer = (ByteBuffer) backing.lock(ACCESS_BYTES);
734 mBuffer.put(otherBuffer);
735 otherBuffer.rewind();
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/tools/common/api-versions/android-1/
android.jar 
  /prebuilts/tools/common/api-versions/android-2/
android.jar 
  /prebuilts/tools/common/api-versions/android-3/
android.jar 

Completed in 224 milliseconds