Searched refs:tmpStorage (Results 1 – 3 of 3) sorted by relevance
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()
459 const SkRegion::RunType* SkRegion::getRuns(RunType tmpStorage[], in getRuns() argument461 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()
646 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;