Home
last modified time | relevance | path

Searched refs:dstEnd (Results 1 – 14 of 14) 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/swiftshader/third_party/llvm-7.0/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/syzkaller/vendor/golang.org/x/net/internal/timeseries/
Dtimeseries.go418 dstEnd := dstStart.Add(dstInterval)
419 for srcIndex < ts.numBuckets && srcStart.Before(dstEnd) {
427 if !srcStart.Before(dstStart) && !srcEnd.After(dstEnd) {
435 overlapEnd := minTime(srcEnd, dstEnd)
447 if srcEnd.After(dstEnd) {
/external/skqp/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()
DSkMaskBlurFilter.cpp110 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur()
172 uint8_t* dstCursor = dstEnd; in blur()
/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()
DSkMaskBlurFilter.cpp110 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur()
172 uint8_t* dstCursor = dstEnd; in blur()
/external/u-boot/lib/
Dlz4.c17 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() argument
21 BYTE* e = (BYTE*)dstEnd; in LZ4_wildCopy()
/external/lz4/lib/
Dlz4frame.c367 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame_usingCDict() local
391 …{ size_t const cSize = LZ4F_compressUpdate(cctx, dstPtr, dstEnd-dstPtr, srcBuffer, srcSize, &optio… in LZ4F_compressFrame_usingCDict()
395 …{ size_t const tailSize = LZ4F_compressEnd(cctx, dstPtr, dstEnd-dstPtr, &options); /* flush last… in LZ4F_compressFrame_usingCDict()
1320 BYTE* const dstEnd = dstStart + *dstSizePtr; in LZ4F_decompress() local
1442 if (dstPtr==dstEnd) { in LZ4F_decompress()
1450 { size_t const minBuffSize = MIN((size_t)(srcEnd-srcPtr), (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()
1545 if ((size_t)(dstEnd-dstPtr) >= dctx->maxBlockSize) { in LZ4F_decompress()
1614 … { size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()
Dlz4.c284 void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() argument
288 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy()
/external/skqp/src/effects/imagefilters/
DSkBlurImageFilter.cpp305 dstEnd = dstRight; in blur_one_direction() local
365 auto loopEnd = std::min(dstEnd, srcEnd); in blur_one_direction()
377 loopEnd = dstEnd; in blur_one_direction()
/external/skia/src/effects/imagefilters/
DSkBlurImageFilter.cpp305 dstEnd = dstRight; in blur_one_direction() local
365 auto loopEnd = std::min(dstEnd, srcEnd); in blur_one_direction()
377 loopEnd = dstEnd; in blur_one_direction()
/external/brotli/java/org/brotli/dec/
DDecode.java897 int dstEnd = dst + copyLength; in decompress() local
898 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { in decompress()
899 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) { in decompress()
/external/brotli/js/
Ddecode.js938 var /** !number */ dstEnd = dst + copyLength;
939 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) {
940 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {