Searched refs:tmpStorage (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/ |
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/flutter/skia/src/core/ |
D | SkRegion.cpp | 460 const SkRegion::RunType* SkRegion::getRuns(RunType tmpStorage[], in getRuns() argument 462 SkASSERT(tmpStorage && intervals); in getRuns() 463 const RunType* runs = tmpStorage; in getRuns() 466 tmpStorage[0] = SkRegion_kRunTypeSentinel; in getRuns() 469 BuildRectRuns(fBounds, tmpStorage); in getRuns()
|
/third_party/skia/src/core/ |
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/ |
D | SkRegion.h | 639 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
|
/third_party/flutter/skia/include/core/ |
D | SkRegion.h | 636 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
|