HomeSort by relevance Sort by last modified time
    Searched refs:fCurrent (Results 1 - 24 of 24) sorted by null

  /external/icu/icu4c/source/test/intltest/
sfwdchit.cpp 36 fCurrent = fStart;
57 fCurrent = fStart;
61 fCurrent = fStart = s;
109 if(fCurrent == fEnd) {
112 return *(fCurrent)++;
121 return fCurrent < fEnd;
sfwdchit.h 73 UChar *fStart, *fEnd, *fCurrent;
  /external/skia/src/sksl/
SkSLCFGGenerator.cpp 34 this->addExit(fCurrent, result);
36 fCurrent = result;
306 BlockId start = cfg.fCurrent;
310 cfg.addExit(start, cfg.fCurrent);
311 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
322 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
333 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
347 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind,
356 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind,
362 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind
    [all...]
SkSLCFGGenerator.h 128 BlockId fCurrent;
  /external/skqp/src/sksl/
SkSLCFGGenerator.cpp 34 this->addExit(fCurrent, result);
36 fCurrent = result;
306 BlockId start = cfg.fCurrent;
310 cfg.addExit(start, cfg.fCurrent);
311 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
322 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
333 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({
347 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind,
356 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind,
362 cfg.fBlocks[cfg.fCurrent].fNodes.push_back({ BasicBlock::Node::kExpression_Kind
    [all...]
SkSLCFGGenerator.h 128 BlockId fCurrent;
  /external/skia/src/pathops/
SkPathWriter.cpp 20 if (fCurrent.isEmpty()) {
27 fCurrent.close();
28 fPathPtr->addPath(fCurrent);
29 fCurrent.reset();
39 fCurrent.conicTo(pt1, pt2->fPt, weight);
48 fCurrent.cubicTo(pt1, pt2, pt3->fPt);
92 if (fCurrent.isEmpty()) {
101 fPartials.push_back(fCurrent);
107 fCurrent.reset();
116 if (fCurrent.isEmpty())
    [all...]
SkPathWriter.h 46 SkPath fCurrent; // contour under construction
  /external/skqp/src/pathops/
SkPathWriter.cpp 20 if (fCurrent.isEmpty()) {
27 fCurrent.close();
28 fPathPtr->addPath(fCurrent);
29 fCurrent.reset();
39 fCurrent.conicTo(pt1, pt2->fPt, weight);
48 fCurrent.cubicTo(pt1, pt2, pt3->fPt);
92 if (fCurrent.isEmpty()) {
101 fPartials.push_back(fCurrent);
107 fCurrent.reset();
116 if (fCurrent.isEmpty())
    [all...]
SkPathWriter.h 46 SkPath fCurrent; // contour under construction
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/
PVRScopeComms.h 81 float fCurrent; ///< Current value
  /external/skia/tools/shape/
SkShaper_harfbuzz.cpp 178 : fCurrent(utf8), fEnd(fCurrent + utf8Bytes)
183 SkASSERT(fCurrent < fEnd);
184 SkUnichar u = SkUTF8_NextUnichar(&fCurrent);
186 while (fCurrent < fEnd) {
187 const char* prev = fCurrent;
188 u = SkUTF8_NextUnichar(&fCurrent);
196 fCurrent = prev;
206 return fCurrent;
209 return fCurrent == fEnd
    [all...]
  /external/skqp/tools/shape/
SkShaper_harfbuzz.cpp 176 : fCurrent(utf8), fEnd(fCurrent + utf8Bytes)
181 SkASSERT(fCurrent < fEnd);
182 SkUnichar u = SkUTF8_NextUnichar(&fCurrent);
184 while (fCurrent < fEnd) {
185 const char* prev = fCurrent;
186 u = SkUTF8_NextUnichar(&fCurrent);
194 fCurrent = prev;
204 return fCurrent;
207 return fCurrent == fEnd
    [all...]
  /external/skia/tests/
GrTRecorderTest.cpp 213 void reset() { fCurrent = 0; }
215 fCurrent = 1664525 * fCurrent + 1013904223;
216 return static_cast<ClassType>(fCurrent % kNumClassTypes);
219 uint32_t fCurrent;
  /external/skqp/tests/
GrTRecorderTest.cpp 213 void reset() { fCurrent = 0; }
215 fCurrent = 1664525 * fCurrent + 1013904223;
216 return static_cast<ClassType>(fCurrent % kNumClassTypes);
219 uint32_t fCurrent;
  /external/skia/src/core/
SkStream.cpp 691 : fBlockMemory(std::move(headRef)), fCurrent(fBlockMemory->fHead)
700 while (fCurrent != nullptr) {
701 size_t bytesLeftInCurrent = fCurrent->written() - fCurrentOffset;
704 memcpy(buffer, fCurrent->start() + fCurrentOffset, bytesFromCurrent);
713 fCurrent = fCurrent->fNext;
731 const SkDynamicMemoryWStream::Block* current = fCurrent;
746 fCurrent = fBlockMemory->fHead;
783 that->fCurrent = this->fCurrent;
    [all...]
SkPath.cpp 917 : fCurrent(startIndex % N)
921 SkASSERT(fCurrent < N);
922 return fPts[fCurrent];
926 fCurrent = (fCurrent + fAdvance) % N;
934 unsigned fCurrent;
    [all...]
  /external/skqp/src/core/
SkStream.cpp 673 : fBlockMemory(std::move(headRef)), fCurrent(fBlockMemory->fHead)
682 while (fCurrent != nullptr) {
683 size_t bytesLeftInCurrent = fCurrent->written() - fCurrentOffset;
686 memcpy(buffer, fCurrent->start() + fCurrentOffset, bytesFromCurrent);
695 fCurrent = fCurrent->fNext;
713 const SkDynamicMemoryWStream::Block* current = fCurrent;
728 fCurrent = fBlockMemory->fHead;
765 that->fCurrent = this->fCurrent;
    [all...]
SkPath.cpp 908 : fCurrent(startIndex % N)
912 SkASSERT(fCurrent < N);
913 return fPts[fCurrent];
917 fCurrent = (fCurrent + fAdvance) % N;
925 unsigned fCurrent;
    [all...]
  /external/skia/src/pdf/
SkPDFFont.cpp 599 fCurrent = (0 == fCurrent) ? fFirst : fCurrent + 1;
602 SkGlyphID operator*() const { return (SkGlyphID)fCurrent; }
604 return fCurrent != rhs.fCurrent;
606 Iter(SkGlyphID f, int c) : fFirst(f), fCurrent(c) {}
609 int fCurrent; // must be int to make fLast+1 to fit
  /external/skqp/src/pdf/
SkPDFFont.cpp 599 fCurrent = (0 == fCurrent) ? fFirst : fCurrent + 1;
602 SkGlyphID operator*() const { return (SkGlyphID)fCurrent; }
604 return fCurrent != rhs.fCurrent;
606 Iter(SkGlyphID f, int c) : fFirst(f), fCurrent(c) {}
609 int fCurrent; // must be int to make fLast+1 to fit
  /external/skia/src/utils/
SkPatchUtils.cpp 83 fCurrent = 0;
99 return fCurrent > fMax;
110 fCurrent++;
120 int fMax, fCurrent, fDivisions;
  /external/skqp/src/utils/
SkPatchUtils.cpp 83 fCurrent = 0;
99 return fCurrent > fMax;
110 fCurrent++;
120 int fMax, fCurrent, fDivisions;
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.text_3.5.400.v20150505-1044.jar 

Completed in 778 milliseconds