Searched refs:dstEnd (Results 1 - 5 of 5) sorted by relevance

/external/skia/src/core/
H A DSkMaskBlurFilter.h57 uint8_t* dst, size_t dstStride, uint8_t* dstEnd) const;
H A DSkMaskBlurFilter.cpp142 auto dstEnd = &dst->fImage[dst->fRowBytes * dstH]; local
145 dstStart, dst->fRowBytes, dstEnd);
166 uint8_t* dst, size_t dstStride, uint8_t* dstEnd) const {
243 uint8_t* dstCursor = dstEnd;
H A DSkLatticeIter.cpp80 int srcScalable, float srcStart, float srcEnd, float dstStart, float dstEnd,
83 float dstLen = dstEnd - dstStart;
112 dst[divCount + 1] = dstEnd;
79 set_points(float* dst, float* src, const int* divs, int divCount, int srcFixed, int srcScalable, float srcStart, float srcEnd, float dstStart, float dstEnd, bool isScalable) argument
/external/lz4/lib/
H A Dlz4frame.c317 BYTE* const dstEnd = dstStart + dstCapacity; local
351 { size_t const cSize = LZ4F_compressUpdate(&cctxI, dstPtr, dstEnd-dstPtr, srcBuffer, srcSize, &options);
355 { size_t const tailSize = LZ4F_compressEnd(&cctxI, dstPtr, dstEnd-dstPtr, &options); /* flush last block, and generate suffix */
1054 BYTE* const dstEnd = dstStart + *dstSizePtr; local
1140 if (dstPtr==dstEnd) {
1150 if ((size_t)(dstEnd-dstPtr) < sizeToCopy) sizeToCopy = dstEnd - dstPtr;
1199 if ((size_t)(dstEnd-dstPtr) < dctxPtr->maxBlockSize) /* not enough place into dst : decode into tmpOut */
1266 if (sizeToCopy > (size_t)(dstEnd-dstPtr)) sizeToCopy = dstEnd
[all...]
H A Dlz4.c249 /* customized variant of memcpy, which can overwrite up to 8 bytes beyond dstEnd */
250 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) argument
254 BYTE* const e = (BYTE*)dstEnd;

Completed in 112 milliseconds