/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | tzdst.c | 470 INT64 dstStart, dstEnd; in DstConfigCheck() local 478 dstEnd = DstConfigDecode(year, strDstEnd); in DstConfigCheck() 479 if ((dstStart < 0) || (dstEnd < 0)) { in DstConfigCheck() 483 if (dstStart >= dstEnd) { in DstConfigCheck() 490 …C BOOL CheckDstPeriodInner(const struct tm * const tm, INT64 seconds, INT64 dstStart, INT64 dstEnd) in CheckDstPeriodInner() argument 500 if ((seconds > dstEnd) && (seconds <= dstEnd + g_dstForwardSeconds)) { in CheckDstPeriodInner() 512 if ((seconds < dstStart) || (seconds >= dstEnd)) { in CheckDstPeriodInner() 521 INT64 dstStart, dstEnd; in CheckWithinDstPeriod() local 545 dstEnd = DstConfigDecode(time.tm_year, g_strDstEnd); in CheckWithinDstPeriod() 546 if ((dstStart == -1) || (dstEnd == -1)) { in CheckWithinDstPeriod() [all …]
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
D | tzdst.h | 130 int dst_inquire(int year, struct tm *dstStart, struct tm *dstEnd);
|
/third_party/flutter/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 | SkMaskBlurFilter.cpp | 110 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur() 172 uint8_t* dstCursor = dstEnd; in blur()
|
/third_party/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 | SkMaskBlurFilter.cpp | 111 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur() 173 uint8_t* dstCursor = dstEnd; in blur()
|
/third_party/lz4/lib/ |
D | lz4frame.c | 383 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame_usingCDict() local 407 assert(dstEnd >= dstPtr); in LZ4F_compressFrame_usingCDict() 408 …{ size_t const cSize = LZ4F_compressUpdate(cctx, dstPtr, (size_t)(dstEnd-dstPtr), srcBuffer, srcSi… in LZ4F_compressFrame_usingCDict() 412 assert(dstEnd >= dstPtr); in LZ4F_compressFrame_usingCDict() 413 …{ size_t const tailSize = LZ4F_compressEnd(cctx, dstPtr, (size_t)(dstEnd-dstPtr), &options); /* … in LZ4F_compressFrame_usingCDict() 417 assert(dstEnd >= dstStart); in LZ4F_compressFrame_usingCDict() 1394 BYTE* const dstEnd = dstStart ? dstStart + *dstSizePtr : NULL; in LZ4F_decompress() local 1527 if (dstPtr==dstEnd || srcPtr==srcEnd) { in LZ4F_decompress() 1540 … size_t const minBuffSize = MIN((size_t)(srcEnd-srcPtr), (size_t)(dstEnd-dstPtr)); in LZ4F_decompress() 1654 if ((size_t)(dstEnd-dstPtr) >= dctx->maxBlockSize) { in LZ4F_decompress() [all …]
|
D | lz4.c | 408 void LZ4_wildCopy8(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy8() argument 412 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy8() 437 LZ4_memcpy_using_offset_base(BYTE* dstPtr, const BYTE* srcPtr, BYTE* dstEnd, const size_t offset) in LZ4_memcpy_using_offset_base() argument 456 LZ4_wildCopy8(dstPtr, srcPtr, dstEnd); in LZ4_memcpy_using_offset_base() 463 LZ4_wildCopy32(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy32() argument 467 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy32() 476 LZ4_memcpy_using_offset(BYTE* dstPtr, const BYTE* srcPtr, BYTE* dstEnd, const size_t offset) in LZ4_memcpy_using_offset() argument 480 assert(dstEnd >= dstPtr + MINMATCH); in LZ4_memcpy_using_offset() 496 LZ4_memcpy_using_offset_base(dstPtr, srcPtr, dstEnd, offset); in LZ4_memcpy_using_offset() 502 while (dstPtr < dstEnd) { in LZ4_memcpy_using_offset()
|
/third_party/flutter/skia/src/effects/imagefilters/ |
D | SkBlurImageFilter.cpp | 306 dstEnd = dstRight; in blur_one_direction() local 366 auto loopEnd = std::min(dstEnd, srcEnd); in blur_one_direction() 378 loopEnd = dstEnd; in blur_one_direction()
|
/third_party/skia/src/effects/imagefilters/ |
D | SkBlurImageFilter.cpp | 126 dstEnd = dstRight, in blur() local 164 if (int commonEnd = std::min(dstEnd, srcEnd); dstIdx < commonEnd) { in blur() 174 if (dstIdx < dstEnd) { in blur() 175 int n = dstEnd - dstIdx; in blur()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
D | Decode.java | 1254 int dstEnd = dst + copyLength; in decompress() local 1255 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { in decompress() 1256 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) { in decompress()
|
/third_party/skia/third_party/externals/brotli/js/ |
D | decode.js | 1122 var /** number */ dstEnd = dst + copyLength; 1123 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { 1124 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {
|