Searched defs:targetOffset (Results 1 - 3 of 3) sorted by relevance

/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java135 * @param targetOffset offset within the target buffer
139 final int targetOffset,
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
138 copyTo(final byte[] target, final int sourceOffset, final int targetOffset, final int size) argument
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java187 * @param targetOffset offset within the target buffer
191 final int targetOffset,
193 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
190 copyTo(final byte[] target, final int sourceOffset, final int targetOffset, final int size) argument
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEConvolveMatrix.cpp38 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
44 , m_targetOffset(targetOffset)
53 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
56 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
107 IntPoint FEConvolveMatrix::targetOffset() const function in class:WebCore::FEConvolveMatrix
112 bool FEConvolveMatrix::setTargetOffset(const IntPoint& targetOffset) argument
114 if (m_targetOffset == targetOffset)
116 m_targetOffset = targetOffset;
37 FEConvolveMatrix(Filter* filter, const IntSize& kernelSize, float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode, const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix) argument
52 create(Filter* filter, const IntSize& kernelSize, float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode, const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix) argument

Completed in 275 milliseconds