Home
last modified time | relevance | path

Searched refs:endMatch (Results 1 – 4 of 4) sorted by relevance

/external/skqp/src/pathops/
DSkDLineIntersection.cpp18 bool endMatch = fT[0][1] == 1 || zero_or_one(fT[1][1]); in cleanUpParallelLines() local
19 if ((!startMatch && !endMatch) || approximately_equal(fT[0][0], fT[0][1])) { in cleanUpParallelLines()
20 SkASSERT(startMatch || endMatch); in cleanUpParallelLines()
21 if (startMatch && endMatch && (fT[0][0] != 0 || !zero_or_one(fT[1][0])) in cleanUpParallelLines()
25 removeOne(endMatch); in cleanUpParallelLines()
/external/skia/src/pathops/
DSkDLineIntersection.cpp18 bool endMatch = fT[0][1] == 1 || zero_or_one(fT[1][1]); in cleanUpParallelLines() local
19 if ((!startMatch && !endMatch) || approximately_equal(fT[0][0], fT[0][1])) { in cleanUpParallelLines()
20 SkASSERT(startMatch || endMatch); in cleanUpParallelLines()
21 if (startMatch && endMatch && (fT[0][0] != 0 || !zero_or_one(fT[1][0])) in cleanUpParallelLines()
25 removeOne(endMatch); in cleanUpParallelLines()
/external/fonttools/Lib/fontTools/t1Lib/
D__init__.py316 endMatch = EEXECEND.search(data, eBegin)
317 if endMatch is None:
319 eEnd = endMatch.start()
/external/zstd/lib/legacy/
Dzstd_v01.c1767 …BYTE* const endMatch = op + litLength + sequence.matchLength; /* risk : address space overflow … in ZSTD_execSequence() local
1771 if (endMatch > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ in ZSTD_execSequence()
1788 const U32 overlapRisk = (((size_t)(litEnd - endMatch)) < 12); in ZSTD_execSequence()
1800 if ((endMatch + qutt) > oend) qutt = oend-endMatch; in ZSTD_execSequence()
1801 memcpy(saved, endMatch, qutt); in ZSTD_execSequence()
1817 if (endMatch > oend-(16-MINMATCH)) in ZSTD_execSequence()
1825 while (op<endMatch) *op++ = *match++; in ZSTD_execSequence()
1831 if (overlapRisk) memcpy(endMatch, saved, qutt); in ZSTD_execSequence()
1834 return endMatch-ostart; in ZSTD_execSequence()