Home
last modified time | relevance | path

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

/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DBufferUtils.java68 dst.limit(dst.position() + bytesToElements(dst, numElements)); in copy()
82 dst.limit(dst.position() + bytesToElements(dst, numElements << 1)); in copy()
156 dst.limit(dst.position() + bytesToElements(dst, numElements << 1)); in copy()
170 dst.limit(dst.position() + bytesToElements(dst, numElements << 2)); in copy()
184 dst.limit(dst.position() + bytesToElements(dst, numElements << 3)); in copy()
198 dst.limit(dst.position() + bytesToElements(dst, numElements << 2)); in copy()
212 dst.limit(dst.position() + bytesToElements(dst, numElements << 3)); in copy()
227 dst.limit(dst.position() + bytesToElements(dst, numBytes)); in copy()
416 private static int bytesToElements (Buffer dst, int bytes) { in bytesToElements() method in BufferUtils