Home
last modified time | relevance | path

Searched refs:fCurrent (Results 1 – 25 of 28) sorted by relevance

12

/third_party/flutter/skia/src/sksl/
DSkSLCFGGenerator.cpp35 this->addExit(fCurrent, result); in newBlock()
37 fCurrent = result; in newBlock()
308 BlockId start = cfg.fCurrent; in addExpression()
312 cfg.addExit(start, cfg.fCurrent); in addExpression()
313 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ in addExpression()
324 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ in addExpression()
335 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ in addExpression()
349 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind, in addExpression()
358 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind, in addExpression()
367 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind, in addExpression()
[all …]
DSkSLCFGGenerator.h128 BlockId fCurrent;
/third_party/flutter/skia/modules/skshaper/src/
DSkShaper.cpp48 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in FontMgrRunIterator()
58 SkASSERT(fCurrent < fEnd); in consume()
59 SkUnichar u = utf8_next(&fCurrent, fEnd); in consume()
78 while (fCurrent < fEnd) { in consume()
79 const char* prev = fCurrent; in consume()
80 u = utf8_next(&fCurrent, fEnd); in consume()
84 fCurrent = prev; in consume()
93 fCurrent = prev; in consume()
100 return fCurrent - fBegin; in endOfCurrentRun()
103 return fCurrent == fEnd; in atEnd()
[all …]
DSkShaper_harfbuzz.cpp369 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in HbIcuScriptRunIterator()
383 SkASSERT(fCurrent < fEnd); in consume()
384 SkUnichar u = utf8_next(&fCurrent, fEnd); in consume()
386 while (fCurrent < fEnd) { in consume()
387 const char* prev = fCurrent; in consume()
388 u = utf8_next(&fCurrent, fEnd); in consume()
396 fCurrent = prev; in consume()
406 return fCurrent - fBegin; in endOfCurrentRun()
409 return fCurrent == fEnd; in atEnd()
416 char const * fCurrent; member in __anoncbcc1cba0111::HbIcuScriptRunIterator
/third_party/skia/src/core/
DSkStream.cpp159 , fCurrent(SkTPin(current, fStart, fEnd)) in SkFILEStream()
162 SkASSERT(fCurrent == current); in SkFILEStream()
195 fCurrent = 0; in close()
199 if (size > fEnd - fCurrent) { in read()
200 size = fEnd - fCurrent; in read()
204 bytesRead = sk_qread(fFILE.get(), buffer, size, fCurrent); in read()
209 fCurrent += bytesRead; in read()
214 if (fCurrent == fEnd) { in isAtEnd()
217 return fCurrent >= sk_fgetsize(fFILE.get()); in isAtEnd()
221 fCurrent = fStart; in rewind()
[all …]
DSkPathMakers.h18 : fCurrent(startIndex % N) in SkPath_PointIterator()
22 SkASSERT(fCurrent < N); in current()
23 return fPts[fCurrent]; in current()
27 fCurrent = (fCurrent + fAdvance) % N; in next()
35 unsigned fCurrent;
DSkPathBuilder.cpp591 : fCurrent(startIndex % N) in PointIterator()
596 SkASSERT(fCurrent < N); in current()
597 return fPts[fCurrent]; in current()
601 fCurrent = (fCurrent + fAdvance) % N; in next()
609 unsigned fCurrent; member in __anon6f5c726b0311::PointIterator
/third_party/skia/src/utils/win/
DSkDWriteGeometrySink.h24 D2D1_POINT_2F fCurrent; variable
29 fPath->moveTo(fCurrent.x, fCurrent.y); in goingTo()
31 fCurrent = pt; in goingTo()
35 return fCurrent.x != pt.x || fCurrent.y != pt.y; in currentIsNot()
DSkDWriteGeometrySink.cpp20 : fRefCount{1}, fPath{path}, fStarted{false}, fCurrent{0,0} {} in SkDWriteGeometrySink()
75 fCurrent = startPoint; in SK_STDMETHODIMP_()
122 Cubic cubic = { { fCurrent.x, fCurrent.y }, in SK_STDMETHODIMP_()
/third_party/icu/icu4c/source/test/intltest/
Dsfwdchit.cpp36 fCurrent = fStart;
57 fCurrent = fStart; in SimpleFwdCharIterator()
61 fCurrent = fStart = s; in SimpleFwdCharIterator()
109 if(fCurrent == fEnd) { in nextPostInc()
112 return *(fCurrent)++; in nextPostInc()
121 return fCurrent < fEnd; in hasNext()
Dsfwdchit.h73 UChar *fStart, *fEnd, *fCurrent; variable
/third_party/skia/modules/skshaper/src/
DSkShaper.cpp95 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in FontMgrRunIterator()
114 SkASSERT(fCurrent < fEnd); in consume()
116 SkUnichar u = utf8_next(&fCurrent, fEnd); in consume()
137 while (fCurrent < fEnd) { in consume()
138 const char* prev = fCurrent; in consume()
139 u = utf8_next(&fCurrent, fEnd); in consume()
143 fCurrent = prev; in consume()
154 fCurrent = prev; in consume()
161 return fCurrent - fBegin; in endOfCurrentRun()
164 return fCurrent == fEnd; in atEnd()
[all …]
DSkShaper_harfbuzz.cpp394 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in SkUnicodeHbScriptRunIterator()
401 SkASSERT(fCurrent < fEnd); in consume()
402 SkUnichar u = utf8_next(&fCurrent, fEnd); in consume()
404 while (fCurrent < fEnd) { in consume()
405 const char* prev = fCurrent; in consume()
406 u = utf8_next(&fCurrent, fEnd); in consume()
414 fCurrent = prev; in consume()
424 return fCurrent - fBegin; in endOfCurrentRun()
427 return fCurrent == fEnd; in atEnd()
434 char const * fCurrent; member in __anond40e83c50111::SkUnicodeHbScriptRunIterator
/third_party/skia/src/pathops/
DSkPathWriter.cpp21 if (fCurrent.isEmpty()) { in close()
28 fCurrent.close(); in close()
29 fPathPtr->addPath(fCurrent); in close()
30 fCurrent.reset(); in close()
40 fCurrent.conicTo(pt1, pt2pt, weight); in conicTo()
49 fCurrent.cubicTo(pt1, pt2, pt3pt); in cubicTo()
93 if (fCurrent.isEmpty()) { in finishContour()
102 fPartials.push_back(fCurrent); in finishContour()
108 fCurrent.reset(); in init()
117 if (fCurrent.isEmpty()) { in lineTo()
[all …]
DSkPathWriter.h46 SkPath fCurrent; // contour under construction variable
/third_party/flutter/skia/src/pathops/
DSkPathWriter.cpp21 if (fCurrent.isEmpty()) { in close()
28 fCurrent.close(); in close()
29 fPathPtr->addPath(fCurrent); in close()
30 fCurrent.reset(); in close()
40 fCurrent.conicTo(pt1, pt2pt, weight); in conicTo()
49 fCurrent.cubicTo(pt1, pt2, pt3pt); in cubicTo()
93 if (fCurrent.isEmpty()) { in finishContour()
102 fPartials.push_back(fCurrent); in finishContour()
108 fCurrent.reset(); in init()
117 if (fCurrent.isEmpty()) { in lineTo()
[all …]
DSkPathWriter.h46 SkPath fCurrent; // contour under construction variable
/third_party/flutter/skia/tests/
DGrTRecorderTest.cpp164 void reset() { fCurrent = 0; } in reset()
166 fCurrent = 1664525 * fCurrent + 1013904223; in next()
167 return static_cast<ClassType>(fCurrent % kNumClassTypes); in next()
170 uint32_t fCurrent; member in Order
/third_party/flutter/skia/src/core/
DSkStream.cpp745 : fBlockMemory(std::move(headRef)), fCurrent(fBlockMemory->fHead) in SkBlockMemoryStream()
754 while (fCurrent != nullptr) { in read()
755 size_t bytesLeftInCurrent = fCurrent->written() - fCurrentOffset; in read()
758 memcpy(buffer, fCurrent->start() + fCurrentOffset, bytesFromCurrent); in read()
767 fCurrent = fCurrent->fNext; in read()
785 const SkDynamicMemoryWStream::Block* current = fCurrent; in peek()
800 fCurrent = fBlockMemory->fHead; in rewind()
837 that->fCurrent = this->fCurrent; in onFork()
856 SkDynamicMemoryWStream::Block const * fCurrent; member in SkBlockMemoryStream
/third_party/skia/src/ports/
DSkScalerContext_mac_ct.cpp535 CGPoint fCurrent; member in __anon7e01216b0111::SkCTPathGeometrySink
540 fBuilder.moveTo(fCurrent.x, -fCurrent.y); in goingTo()
542 fCurrent = pt; in goingTo()
546 return fCurrent.x != pt.x || fCurrent.y != pt.y; in currentIsNot()
550 SkCTPathGeometrySink() : fStarted{false}, fCurrent{0,0} {} in SkCTPathGeometrySink()
561 self.fCurrent = points[0]; in ApplyElement()
DSkFontHost_win.cpp1321 POINTFX fCurrent; member in __anon559c36680311::SkGDIGeometrySink
1326 fPath->moveTo( SkFIXEDToScalar(fCurrent.x), in goingTo()
1327 -SkFIXEDToScalar(fCurrent.y)); in goingTo()
1329 fCurrent = pt; in goingTo()
1333 return fCurrent.x.value != pt.x.value || fCurrent.x.fract != pt.x.fract || in currentIsNot()
1334 fCurrent.y.value != pt.y.value || fCurrent.y.fract != pt.y.fract; in currentIsNot()
1359 fCurrent = th->pfxStart; in process()
1430 fCurrent = {th->pfxStart.x, hintedPoint->y}; in process()
/third_party/skia/src/pdf/
DSkPDFFont.cpp420 fCurrent = (0 == fCurrent) ? fFirst : fCurrent + 1; in operator ++()
423 SkGlyphID operator*() const { return (SkGlyphID)fCurrent; } in operator *()
425 return fCurrent != rhs.fCurrent; in operator !=()
427 Iter(SkGlyphID f, int c) : fFirst(f), fCurrent(c) {} in Iter()
430 int fCurrent; // must be int to make fLast+1 to fit member
/third_party/flutter/skia/src/pdf/
DSkPDFFont.cpp417 fCurrent = (0 == fCurrent) ? fFirst : fCurrent + 1; in operator ++()
420 SkGlyphID operator*() const { return (SkGlyphID)fCurrent; } in operator *()
422 return fCurrent != rhs.fCurrent; in operator !=()
424 Iter(SkGlyphID f, int c) : fFirst(f), fCurrent(c) {} in Iter()
427 int fCurrent; // must be int to make fLast+1 to fit member
/third_party/skia/src/utils/
DSkPatchUtils.cpp88 fCurrent = 0; in restart()
104 return fCurrent > fMax; in done()
115 fCurrent++; in next()
125 int fMax, fCurrent, fDivisions; member in FwDCubicEvaluator
/third_party/flutter/skia/src/utils/
DSkPatchUtils.cpp86 fCurrent = 0; in restart()
102 return fCurrent > fMax; in done()
113 fCurrent++; in next()
123 int fMax, fCurrent, fDivisions; member in FwDCubicEvaluator

12