Searched refs:dstEnd (Results 1 – 11 of 11) sorted by relevance
/external/llvm/test/CodeGen/Hexagon/ |
D | swp-epilog-reuse.ll | 15 %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/ |
D | lz4frame.c | 317 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()
|
D | lz4.c | 250 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() argument 254 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy()
|
/external/skia/src/core/ |
D | SkLatticeIter.cpp | 80 int srcScalable, int srcStart, int srcEnd, float dstStart, float dstEnd, in set_points() argument 82 float dstLen = dstEnd - dstStart; in set_points() 111 dst[divCount + 1] = dstEnd; in set_points()
|
D | SkBlurImageFilter.cpp | 307 dstEnd = dstRight; in blur_one_direction() local 367 auto loopEnd = std::min(dstEnd, srcEnd); in blur_one_direction() 379 loopEnd = dstEnd; in blur_one_direction()
|
D | SkMaskBlurFilter.cpp | 24 uint8_t* dst, int dstStride, uint8_t* dstEnd) const = 0; 28 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur4Transpose() 161 uint8_t* dst, int dstStride, uint8_t* dstEnd) const override { in blur() 224 uint8_t* dstCursor = dstEnd; in blur()
|
/external/skqp/src/core/ |
D | SkLatticeIter.cpp | 80 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()
|
D | SkBlurImageFilter.cpp | 307 dstEnd = dstRight; in blur_one_direction() local 367 auto loopEnd = std::min(dstEnd, srcEnd); in blur_one_direction() 379 loopEnd = dstEnd; in blur_one_direction()
|
D | SkMaskBlurFilter.cpp | 24 uint8_t* dst, int dstStride, uint8_t* dstEnd) const = 0; 28 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur4Transpose() 161 uint8_t* dst, int dstStride, uint8_t* dstEnd) const override { in blur() 224 uint8_t* dstCursor = dstEnd; in blur()
|
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 893 int dstEnd = dst + copyLength; in decompress() local 894 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { in decompress() 895 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) { in decompress()
|
/external/brotli/js/ |
D | decode.js | 932 var /** !number */ dstEnd = dst + copyLength; 933 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { 934 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {
|