/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A 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 STATIC 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 in CheckWithinDstPeriod() 603 INT64 dstStart, dstEnd; dst_inquire() local [all...] |
/third_party/skia/src/core/ |
H A D | SkLatticeIter.cpp | 80 int srcScalable, int srcStart, int srcEnd, float dstStart, float dstEnd, in set_points() 82 float dstLen = dstEnd - dstStart; in set_points() 111 dst[divCount + 1] = dstEnd; in set_points() 79 set_points(float* dst, int* src, const int* divs, int divCount, int srcFixed, int srcScalable, int srcStart, int srcEnd, float dstStart, float dstEnd, bool isScalable) set_points() argument
|
H A D | SkMaskBlurFilter.cpp | 111 uint8_t* dst, int dstStride, uint8_t* dstEnd) const { in blur() 173 uint8_t* dstCursor = dstEnd; in blur()
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
H A D | tzdst.h | 125 * @param dstEnd Used to store daylight savings time end time 130 int dst_inquire(int year, struct tm *dstStart, struct tm *dstEnd);
|
/third_party/lz4/lib/ |
H A D | lz4frame.c | 430 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame_usingCDict() local 453 assert(dstEnd >= dstPtr); in LZ4F_compressFrame_usingCDict() 454 { size_t const cSize = LZ4F_compressUpdate(cctx, dstPtr, (size_t)(dstEnd-dstPtr), srcBuffer, srcSize, &options); in LZ4F_compressFrame_usingCDict() 458 assert(dstEnd >= dstPtr); in LZ4F_compressFrame_usingCDict() 459 { size_t const tailSize = LZ4F_compressEnd(cctx, dstPtr, (size_t)(dstEnd-dstPtr), &options); /* flush last block, and generate suffix */ in LZ4F_compressFrame_usingCDict() 463 assert(dstEnd >= dstStart); in LZ4F_compressFrame_usingCDict() 1566 BYTE* const dstEnd = dstStart ? dstStart + *dstSizePtr : NULL; in LZ4F_decompress() local 1696 if (dstPtr==dstEnd || srcPtr==srcEnd) { in LZ4F_decompress() 1709 size_t const minBuffSize = MIN((size_t)(srcEnd-srcPtr), (size_t)(dstEnd-dstPtr)); in LZ4F_decompress() 1829 if ( ((size_t)(dstEnd in LZ4F_decompress() [all...] |
H A D | lz4.c | 442 /* customized variant of memcpy, which can overwrite up to 8 bytes beyond dstEnd */ 444 void LZ4_wildCopy8(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy8() argument 448 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy8() 475 LZ4_memcpy_using_offset_base(BYTE* dstPtr, const BYTE* srcPtr, BYTE* dstEnd, const size_t offset) in LZ4_memcpy_using_offset_base() argument 494 LZ4_wildCopy8(dstPtr, srcPtr, dstEnd); in LZ4_memcpy_using_offset_base() 497 /* customized variant of memcpy, which can overwrite up to 32 bytes beyond dstEnd 501 LZ4_wildCopy32(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy32() argument 505 BYTE* const e = (BYTE*)dstEnd; in LZ4_wildCopy32() 511 * - dstEnd >= dstPtr + MINMATCH 512 * - there is at least 8 bytes available to write after dstEnd */ 514 LZ4_memcpy_using_offset(BYTE* dstPtr, const BYTE* srcPtr, BYTE* dstEnd, const size_t offset) LZ4_memcpy_using_offset() argument [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A 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/ |
H A D | Decode.java | 1254 int dstEnd = dst + copyLength; in decompress() 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/ |
H A D | decode.js | 1122 var /** number */ dstEnd = dst + copyLength; variable 1123 if ((srcEnd < ringBufferMask) && (dstEnd < ringBufferMask)) { 1124 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {
|