Home
last modified time | relevance | path

Searched refs:dstEnd (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/core/
DSkMaskBlurFilter.cpp142 auto dstEnd = &dst->fImage[dst->fRowBytes * dstH]; in blur() local
145 dstStart, dst->fRowBytes, dstEnd); in blur()
166 uint8_t* dst, size_t dstStride, uint8_t* dstEnd) const { in blurOneScan()
243 uint8_t* dstCursor = dstEnd; in blurOneScan()
DSkLatticeIter.cpp80 int srcScalable, float srcStart, float srcEnd, float dstStart, float dstEnd, in set_points() argument
83 float dstLen = dstEnd - dstStart; in set_points()
112 dst[divCount + 1] = dstEnd; in set_points()
DSkMaskBlurFilter.h57 uint8_t* dst, size_t dstStride, uint8_t* dstEnd) const;
/external/llvm/test/CodeGen/Hexagon/
Dswp-epilog-reuse.ll15 %dstEnd.01519 = phi float* [ %add.ptr725, %while.end712 ], [ undef, %entry.split ]
50 %cmp660.ur = icmp ult float* %incdec.ptr674.ur, %dstEnd.01519
59 %add.ptr725 = getelementptr inbounds float, float* %dstEnd.01519, i32 %shr
/external/lz4/lib/
Dlz4frame.c317 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame() local
351 …{ size_t const cSize = LZ4F_compressUpdate(&cctxI, dstPtr, dstEnd-dstPtr, srcBuffer, srcSize, &opt… in LZ4F_compressFrame()
355 …{ size_t const tailSize = LZ4F_compressEnd(&cctxI, dstPtr, dstEnd-dstPtr, &options); /* flush la… in LZ4F_compressFrame()
1054 BYTE* const dstEnd = dstStart + *dstSizePtr; in LZ4F_decompress() local
1140 if (dstPtr==dstEnd) { in LZ4F_decompress()
1150 if ((size_t)(dstEnd-dstPtr) < sizeToCopy) sizeToCopy = dstEnd - dstPtr; in LZ4F_decompress()
1199 …if ((size_t)(dstEnd-dstPtr) < dctxPtr->maxBlockSize) /* not enough place into dst : decode into … in LZ4F_decompress()
1266 if (sizeToCopy > (size_t)(dstEnd-dstPtr)) sizeToCopy = dstEnd-dstPtr; in LZ4F_decompress()
Dlz4.c250 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() argument
254 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy()