HomeSort by relevance Sort by last modified time
    Searched defs:fCount (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /external/dng_sdk/source/
dng_mosaic_info.cpp 48 uint32 fCount;
60 : fCount (0)
91 for (uint32 j = 0; j < fCount; j++)
107 DNG_ASSERT (fCount < kMaxCount, "Too many kernel entries")
109 fDelta [fCount] = delta;
110 fWeight32 [fCount] = weight;
112 fCount++;
129 for (j = 0; j < fCount; j++)
157 for (j = 1; j < fCount; j++)
193 for (j = 0; j < fCount; j++
    [all...]
dng_string_list.h 31 uint32 fCount;
45 return fCount;
  /external/skia/src/core/
SkColorTable.h 34 int count() const { return fCount; }
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
52 int fCount;
SkVertState.h 31 fCount = indexCount;
33 fCount = vCount;
46 int fCount;
SkMipMap.h 76 int fCount;
SkBigPicture.h 26 SnapshotArray(const SkPicture* pics[], int count) : fPics(pics), fCount(count) {}
27 ~SnapshotArray() { for (int i = 0; i < fCount; i++) { fPics[i]->unref(); } }
30 int count() const { return fCount; }
33 int fCount;
SkRTree.h 50 int getDepth() const { return fCount ? fRoot.fSubtree->fLevel + 1 : 0; }
52 int getCount() const { return fCount; }
89 int fCount;
  /external/skia/src/effects/
SkDashImpl.h 37 int32_t fCount;
  /external/skia/src/gpu/vk/
GrVkDescriptorPool.h 45 uint32_t fCount;
  /external/skqp/src/core/
SkColorTable.h 34 int count() const { return fCount; }
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
52 int fCount;
SkVertState.h 31 fCount = indexCount;
33 fCount = vCount;
46 int fCount;
SkMipMap.h 75 int fCount;
  /external/skqp/src/effects/
SkDashImpl.h 37 int32_t fCount;
  /external/skqp/src/gpu/vk/
GrVkDescriptorPool.h 45 uint32_t fCount;
  /external/icu/icu4c/source/i18n/
nfrlist.h 38 uint32_t fCount;
43 , fCount(0)
47 for(uint32_t i = 0; i < fCount; ++i) {
59 fCount -= 1;
60 for (uint32_t i = index; i < fCount; ++i) { // assumes small arrays
66 if (fCount == fCapacity) {
71 fStuff[fCount++] = thing;
74 fCount = 0;
77 uint32_t size() const { return fCount; }
78 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL;
    [all...]
  /external/skia/bench/
ClipStrategyBench.cpp 22 , fCount(count)
68 auto q = static_cast<float>(this->getSize().x()) / (fCount + 1);
69 for (size_t i = 1; i <= fCount; ++i) {
76 size_t fCount;
  /external/skia/include/core/
SkICC.h 75 int fCount;
SkDataTable.h 25 bool isEmpty() const { return 0 == fCount; }
30 int count() const { return fCount; }
98 int fCount;
  /external/skia/include/ports/
SkRemotableFontMgr.h 40 int count() const { return fCount; }
46 SkRemotableFontIdentitySet() : fCount(0), fData() { }
50 int fCount;
  /external/skia/include/private/
SkSemaphore.h 18 : fCount(count), fOSSemaphore(nullptr) {}
49 std::atomic<int> fCount;
61 int prev = fCount.fetch_add(n, std::memory_order_release);
81 if (fCount.fetch_sub(1, std::memory_order_acquire) <= 0) {
  /external/skqp/bench/
ClipStrategyBench.cpp 22 , fCount(count)
68 auto q = static_cast<float>(this->getSize().x()) / (fCount + 1);
69 for (size_t i = 1; i <= fCount; ++i) {
76 size_t fCount;
  /external/skqp/include/core/
SkICC.h 75 int fCount;
  /external/skqp/include/ports/
SkRemotableFontMgr.h 40 int count() const { return fCount; }
46 SkRemotableFontIdentitySet() : fCount(0), fData() { }
50 int fCount;
  /external/skqp/include/private/
SkSemaphore.h 18 : fCount(count), fOSSemaphore(nullptr) {}
49 std::atomic<int> fCount;
61 int prev = fCount.fetch_add(n, std::memory_order_release);
81 if (fCount.fetch_sub(1, std::memory_order_acquire) <= 0) {
  /external/skia/gm/
gradientDirtyLaundry.cpp 14 int fCount;
39 return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm);
44 return SkGradientShader::MakeRadial(pt, pt.fX, data.fColors, data.fPos, data.fCount, tm);
49 return SkGradientShader::MakeSweep(pt.fX, pt.fY, data.fColors, data.fPos, data.fCount);

Completed in 677 milliseconds

1 2 3 4 5 6 7