Home
last modified time | relevance | path

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

/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()
/external/skia/src/core/
DSkLatticeIter.cpp80 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()
DSkBlurImageFilter.cpp307 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()
DSkMaskBlurFilter.cpp24 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/
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()
DSkBlurImageFilter.cpp307 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()
DSkMaskBlurFilter.cpp24 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/
DDecode.java893 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/
Ddecode.js932 var /** !number */ dstEnd = dst + copyLength;
933 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) {
934 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {