Searched refs:tmpStorage (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/ |
H A D | SkottieAnimation.java | 86 byte[] tmpStorage = new byte[4096]; in convertToByteBuffer() 88 while ((bytesRead = is.read(tmpStorage, 0, tmpStorage.length)) != -1) { in convertToByteBuffer() 89 byteStream.write(tmpStorage, 0, bytesRead); in convertToByteBuffer() 93 tmpStorage = byteStream.toByteArray(); in convertToByteBuffer() 95 ByteBuffer buffer = ByteBuffer.allocateDirect(tmpStorage.length); in convertToByteBuffer() 97 buffer.put(tmpStorage, 0, tmpStorage.length); in convertToByteBuffer()
|
/third_party/skia/src/core/ |
H A D | SkRegion.cpp | 459 const SkRegion::RunType* SkRegion::getRuns(RunType tmpStorage[], in getRuns() argument 461 SkASSERT(tmpStorage && intervals); in getRuns() 462 const RunType* runs = tmpStorage; in getRuns() 465 tmpStorage[0] = SkRegion_kRunTypeSentinel; in getRuns() 468 BuildRectRuns(fBounds, tmpStorage); in getRuns()
|
/third_party/skia/include/core/ |
H A D | SkRegion.h | 643 * is empty or a rect. In those 2 cases, we use tmpStorage to hold the 646 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
|
Completed in 5 milliseconds