Home
last modified time | relevance | path

Searched refs:lastChunkEntries (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DObjectBuffer.java132 public Object[] completeAndClearBuffer(Object[] lastChunk, int lastChunkEntries) in completeAndClearBuffer() argument
134 int totalSize = lastChunkEntries + _size; in completeAndClearBuffer()
136 _copyTo(result, totalSize, lastChunk, lastChunkEntries); in completeAndClearBuffer()
149 …public <T> T[] completeAndClearBuffer(Object[] lastChunk, int lastChunkEntries, Class<T> component… in completeAndClearBuffer() argument
151 int totalSize = lastChunkEntries + _size; in completeAndClearBuffer()
154 _copyTo(result, totalSize, lastChunk, lastChunkEntries); in completeAndClearBuffer()
159 …public void completeAndClearBuffer(Object[] lastChunk, int lastChunkEntries, List<Object> resultLi… in completeAndClearBuffer() argument
168 for (int i = 0; i < lastChunkEntries; ++i) { in completeAndClearBuffer()
208 Object[] lastChunk, int lastChunkEntries) in _copyTo() argument
218 System.arraycopy(lastChunk, 0, resultArray, ptr, lastChunkEntries); in _copyTo()
[all …]
DPrimitiveArrayBuilder.java85 public T completeAndClearBuffer(T lastChunk, int lastChunkEntries) in completeAndClearBuffer() argument
87 int totalSize = lastChunkEntries + _bufferedEntryCount; in completeAndClearBuffer()
95 System.arraycopy(lastChunk, 0, resultArray, ptr, lastChunkEntries); in completeAndClearBuffer()
96 ptr += lastChunkEntries; in completeAndClearBuffer()