Home
last modified time | relevance | path

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

/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
DLiteralByteStringTest.java129 int destinationOffset = 50; in testCopyTo_ByteArrayOffsetLength() local
131 byte[] destination = new byte[destinationOffset + length]; in testCopyTo_ByteArrayOffsetLength()
133 stringUnderTest.copyTo(destination, sourceOffset, destinationOffset, length); in testCopyTo_ByteArrayOffsetLength()
136 stillEqual = referenceBytes[i + sourceOffset] == destination[i + destinationOffset]; in testCopyTo_ByteArrayOffsetLength()
142 int destinationOffset = 50; in testCopyTo_ByteArrayOffsetLengthErrors() local
144 byte[] destination = new byte[destinationOffset + length]; in testCopyTo_ByteArrayOffsetLengthErrors()
149 destinationOffset, length); in testCopyTo_ByteArrayOffsetLengthErrors()
158 stringUnderTest.copyTo(destination, -1, destinationOffset, length); in testCopyTo_ByteArrayOffsetLengthErrors()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEGaussianBlur.cpp211 int destinationOffset; in platformApply() local
217 destinationOffset = currentY * scanline; in platformApply()
220 …memcpy(srcPixelArray->data() + destinationOffset, params.srcPixelArray->data() + sourceOffset, siz… in platformApply()