Home
last modified time | relevance | path

Searched refs:iEnd (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/src/pathops/
DSkOpAngle.cpp647 SkIntersections iEnd; in endToSide() local
650 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide()
652 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide()
679 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
/third_party/flutter/skia/src/pathops/
DSkOpAngle.cpp647 SkIntersections iEnd; in endToSide() local
650 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide()
652 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide()
679 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
/third_party/lz4/lib/
Dlz4hc.c172 LZ4HC_countPattern(const BYTE* ip, const BYTE* const iEnd, U32 const pattern32) in LZ4HC_countPattern() argument
177 while (likely(ip < iEnd-(sizeof(pattern)-1))) { in LZ4HC_countPattern()
186 while ((ip<iEnd) && (*ip == (BYTE)patternByte)) { in LZ4HC_countPattern()
191 while (ip < iEnd) { in LZ4HC_countPattern()
/third_party/mingw-w64/mingw-w64-headers/include/
Dindexsrv.h181 ULONG iEnd; member
Dwindowsx.h725 #define GET_EM_SETSEL_MPS(iStart,iEnd) (WPARAM)(iStart),(LPARAM)(iEnd) argument
Dwindowsx.h16736 #define GET_EM_SETSEL_MPS(iStart,iEnd) 0,MAKELONG(iStart,iEnd)
/third_party/sqlite/src/
Dsqlite3.c13451 int iEnd /* Byte offset of end of token within input text */
67447 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */
67453 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize );
67484 if( iFreeBlk && iEnd+3>=iFreeBlk ){
67485 nFrag = iFreeBlk - iEnd;
67486 if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage);
67487 iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]);
67488 if( iEnd > pPage->pBt->usableSize ){
67491 iSize = iEnd - iStart;
67504 iSize = iEnd - iPtr;
[all …]
Dshell.c296 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
300 (iEnd - iBegin)*0.001, in endTimer()
6343 int iStart, iEnd, iGoto; in re_subcompile_re() local
6348 iEnd = p->nState; in re_subcompile_re()
6349 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re()
15665 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
/third_party/sqlite/include/
Dsqlite3.h12335 int iEnd /* Byte offset of end of token within input text */