Home
last modified time | relevance | path

Searched refs:kFixed (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/gm/
Dninepatchstretch.cpp28 const int kFixed = 28; in make_image() local
30 const int kSize = 2*kFixed + kStretchy; in make_image()
37 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2; in make_image()
39 center->setXYWH(kFixed, kFixed, kStretchy, kStretchy); in make_image()
46 r.setXYWH(SkIntToScalar(kFixed), 0, SkIntToScalar(kStretchy), SkIntToScalar(kSize)); in make_image()
49 r.setXYWH(0, SkIntToScalar(kFixed), SkIntToScalar(kSize), SkIntToScalar(kStretchy)); in make_image()
/third_party/flutter/skia/gm/
Dninepatchstretch.cpp29 const int kFixed = 28; in make_image() local
31 const int kSize = 2*kFixed + kStretchy; in make_image()
38 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2; in make_image()
40 center->setXYWH(kFixed, kFixed, kStretchy, kStretchy); in make_image()
47 r.setXYWH(SkIntToScalar(kFixed), 0, SkIntToScalar(kStretchy), SkIntToScalar(kSize)); in make_image()
50 r.setXYWH(0, SkIntToScalar(kFixed), SkIntToScalar(kSize), SkIntToScalar(kStretchy)); in make_image()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/
Dfont_data.h37 kFixed = 4, enumerator
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/data/
Dfont_data.h37 kFixed = 4, enumerator
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
Debdt_table.h32 kHeaderLength = DataSize::kFixed,
Debsc_table.h31 kNumSizes = DataSize::kFixed,
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
Debdt_table.h32 kHeaderLength = DataSize::kFixed,
Debsc_table.h31 kNumSizes = DataSize::kFixed,
/third_party/skia/src/core/
DSkBlockAllocator.cpp131 SkASSERT(gp != GrowthPolicy::kFixed); // fixed never needs undoing, fN0 always is 0 in releaseBlock()
225 if (gp == GrowthPolicy::kFixed || gp == GrowthPolicy::kLinear) { in addBlock()
DSkBlockAllocator.h60 kFixed, // Next block size = N enumerator
485 new (fStorage) SkBlockAllocator(GrowthPolicy::kFixed, N, N - sizeof(SkBlockAllocator)); in SkSBlockAllocator()
DSkTBlockList.h64 SkBlockAllocator::GrowthPolicy::kFixed)
/third_party/skia/src/gpu/
DGrMemoryPool.cpp33 : fAllocator(SkBlockAllocator::GrowthPolicy::kFixed, minAllocSize, in GrMemoryPool()
/third_party/skia/tests/
DSkBlockAllocatorTest.cpp77 SkBlockAllocator stack{GrowthPolicy::kFixed, 2048}; in DEF_TEST()