/external/skqp/tests/ |
D | CopySurfaceTest.cpp | 32 static const int kH = 10; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 35 SkAutoTMalloc<uint32_t> srcPixels(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 36 for (int i = 0; i < kW * kH; ++i) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 40 SkAutoTMalloc<uint32_t> dstPixels(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 41 for (int i = 0; i < kW * kH; ++i) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 46 { 0, 0, kW , kH }, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 47 {-1, -1, kW+1, kH+1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 48 { 1, 1, kW-1, kH-1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 55 { kW/2, kH/4}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 56 { kW-1, kH-1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all …]
|
D | VkWrapTests.cpp | 31 const int kH = 1024; variable 39 GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, in wrap_tex_test() 53 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 67 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 80 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 92 GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, in wrap_rt_test() 99 GrBackendRenderTarget origBackendRT(kW, kH, 1, 0, imageInfo); in wrap_rt_test() 109 GrBackendRenderTarget backendRT(kW, kH, 1, 0, backendCopy); in wrap_rt_test() 120 GrBackendRenderTarget backendRT(kW, kH, 1, 0, backendCopy); in wrap_rt_test() 134 GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, in wrap_trt_test() [all …]
|
D | ClearTest.cpp | 68 static const int kH = 10; in clear_op_test() local 70 SkIRect fullRect = SkIRect::MakeWH(kW, kH); in clear_op_test() 75 SkIRect mid1Rect = SkIRect::MakeXYWH(1, 1, kW-2, kH-2); in clear_op_test() 76 SkIRect outerLeftEdge = SkIRect::MakeXYWH(0, 0, 1, kH); in clear_op_test() 78 SkIRect outerRightEdge = SkIRect::MakeXYWH(kW-1, 0, 1, kH); in clear_op_test() 79 SkIRect outerBottomEdge = SkIRect::MakeXYWH(0, kH-1, kW, 1); in clear_op_test() 83 SkIRect mid2Rect = SkIRect::MakeXYWH(2, 2, kW-4, kH-4); in clear_op_test() 84 SkIRect innerLeftEdge = SkIRect::MakeXYWH(1, 1, 1, kH-2); in clear_op_test() 86 SkIRect innerRightEdge = SkIRect::MakeXYWH(kW-2, 1, 1, kH-2); in clear_op_test() 87 SkIRect innerBottomEdge = SkIRect::MakeXYWH(1, kH-2, kW-2, 1); in clear_op_test() [all …]
|
D | ApplyGammaTest.cpp | 99 static const int kH = 256; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 105 baseDesc.fHeight = kH; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 107 const SkImageInfo ii = SkImageInfo::MakeN32Premul(kW, kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 109 SkAutoTMalloc<uint32_t> srcPixels(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 110 for (int y = 0; y < kH; ++y) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 119 SkAutoTMalloc<uint32_t> read(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 145 sk_memset32(read.get(), 0, kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 153 for (int y = 0; y < kH && !abort; ++y) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
D | SRGBReadWritePixelsTest.cpp | 185 static constexpr int kH = 255; variable 188 std::unique_ptr<uint32_t[]> data(new uint32_t[kW * kH]); in make_data() 189 for (int j = 0; j < kH; ++j) { in make_data() 202 desc.fHeight = kH; in make_surface_context() 226 auto writeII = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType, in test_write_read() 235 auto readII = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType, in test_write_read()
|
D | SurfaceTest.cpp | 811 const int kH = surface->height(); in test_surface_draw_partially() local 815 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2), in test_surface_draw_partially() 817 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]); in test_surface_draw_partially() 818 sk_memset32(pixels.get(), ~origColor, kW * kH); in test_surface_draw_partially() 820 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType); in test_surface_draw_partially() 831 for (int y = 0; y < kH/2 && !stop; ++y) { in test_surface_draw_partially() 840 for (int y = kH/2; y < kH && !stop; ++y) { in test_surface_draw_partially()
|
/external/skia/tests/ |
D | CopySurfaceTest.cpp | 37 static const int kH = 10; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 40 SkAutoTMalloc<uint32_t> srcPixels(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 41 for (int i = 0; i < kW * kH; ++i) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 45 SkAutoTMalloc<uint32_t> dstPixels(kW * kH); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 46 for (int i = 0; i < kW * kH; ++i) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 51 { 0, 0, kW , kH }, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 52 {-1, -1, kW+1, kH+1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 53 { 1, 1, kW-1, kH-1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 60 { kW/2, kH/4}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 61 { kW-1, kH-1}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all …]
|
D | ClearTest.cpp | 71 static const int kH = 10; in clear_op_test() local 73 SkIRect fullRect = SkIRect::MakeWH(kW, kH); in clear_op_test() 78 SkIRect mid1Rect = SkIRect::MakeXYWH(1, 1, kW-2, kH-2); in clear_op_test() 79 SkIRect outerLeftEdge = SkIRect::MakeXYWH(0, 0, 1, kH); in clear_op_test() 81 SkIRect outerRightEdge = SkIRect::MakeXYWH(kW-1, 0, 1, kH); in clear_op_test() 82 SkIRect outerBottomEdge = SkIRect::MakeXYWH(0, kH-1, kW, 1); in clear_op_test() 86 SkIRect mid2Rect = SkIRect::MakeXYWH(2, 2, kW-4, kH-4); in clear_op_test() 87 SkIRect innerLeftEdge = SkIRect::MakeXYWH(1, 1, 1, kH-2); in clear_op_test() 89 SkIRect innerRightEdge = SkIRect::MakeXYWH(kW-2, 1, 1, kH-2); in clear_op_test() 90 SkIRect innerBottomEdge = SkIRect::MakeXYWH(1, kH-2, kW-2, 1); in clear_op_test() [all …]
|
D | VkWrapTests.cpp | 31 const int kH = 1024; variable 38 dContext, kW, kH, kRGBA_8888_SkColorType, GrMipmapped::kNo, GrRenderable::kNo); in wrap_tex_test() 59 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 72 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 84 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test() 106 gpu->createTestingOnlyBackendRenderTarget({kW, kH}, ct, sampleCnt); in wrap_rt_test() 121 GrBackendRenderTarget backendRT(kW, kH, 1, backendCopy); in wrap_rt_test() 131 GrBackendRenderTarget backendRT(kW, kH, 1, backendCopy); in wrap_rt_test() 144 dContext, kW, kH, kRGBA_8888_SkColorType, GrMipmapped::kNo, GrRenderable::kYes); in wrap_trt_test() 162 GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_trt_test() [all …]
|
D | VkProtectedContextTest.cpp | 30 const int kH = 8; in create_protected_sksurface() local 35 {kW, kH}, in create_protected_sksurface() 45 {kW, kH}, in create_protected_sksurface() 103 const int kH = 8; in DEF_GPUTEST() local 106 kW, kH, kRGBA_8888_SkColorType, GrMipmapped::kNo, GrRenderable::kNo, in DEF_GPUTEST() 119 const int kH = 8; in DEF_GPUTEST() local 122 kW, kH, kRGBA_8888_SkColorType, GrMipmapped::kNo, GrRenderable::kNo, in DEF_GPUTEST()
|
D | SRGBReadWritePixelsTest.cpp | 179 static constexpr int kH = 255; variable 182 std::unique_ptr<uint32_t[]> data(new uint32_t[kW * kH]); in make_data() 183 for (int j = 0; j < kH; ++j) { in make_data() 196 SkBackingFit::kExact, {kW, kH}, SkSurfaceProps(), 1, GrMipmapped::kNo, GrProtected::kNo, in make_surface_context() 211 auto writeII = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType, in test_write_read() 221 auto readII = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType, in test_write_read()
|
D | ReadWritePixelsGpuTest.cpp | 387 static constexpr int kH = 16; in gpu_read_pixels_test_driver() local 389 const std::vector<SkIRect> longRectArray = make_long_rect_array(kW, kH); in gpu_read_pixels_test_driver() 390 const std::vector<SkIRect> shortRectArray = make_short_rect_array(kW, kH); in gpu_read_pixels_test_driver() 410 auto refInfo = SkImageInfo::Make(kW, kH, in gpu_read_pixels_test_driver() 973 static constexpr int kH = 16; in gpu_write_pixels_test_driver() local 975 const std::vector<SkIRect> longRectArray = make_long_rect_array(kW, kH); in gpu_write_pixels_test_driver() 976 const std::vector<SkIRect> shortRectArray = make_short_rect_array(kW, kH); in gpu_write_pixels_test_driver() 992 const auto dstInfo = SkImageInfo::Make(kW, kH, dstCT, dstAT, SkColorSpace::MakeSRGB()); in gpu_write_pixels_test_driver() 1104 kH = 37; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 1105 SkAutoPixmapStorage refP = make_ref_data(SkImageInfo::Make({kW, kH}, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all …]
|
D | SurfaceTest.cpp | 843 const int kH = surface->height(); in test_surface_draw_partially() local 847 surface->getCanvas()->drawRect(SkRect::MakeIWH(kW, kH/2), paint); in test_surface_draw_partially() 850 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType); in test_surface_draw_partially() 869 for (int y = 0; y < kH/2 && !stop; ++y) { in test_surface_draw_partially() 880 for (int y = kH/2; y < kH && !stop; ++y) { in test_surface_draw_partially()
|
/external/skia/docs/examples/ |
D | skbug6031.cpp | 7 constexpr float kH = 512; in draw() local 12 canvas->clipRect(SkRect{0, 0, 2 * kW, 2 * kH}, replaceClipOp); in draw() 16 canvas->clipRect(SkRect{0, 0, kW, kH}, replaceClipOp); in draw() 20 canvas->clipRect(SkRect{0, kH, kW, 3 * kH}, replaceClipOp); in draw() 24 canvas->clipRect(SkRect{kW, 0, 3 * kW, kH}, replaceClipOp); in draw() 28 canvas->clipRect(SkRect{kW, kH, 3 * kW, 3 * kH}, replaceClipOp); in draw()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/modes/ |
D | gcm_test.cc | 124 static const uint64_t kH[2] = { in TEST() local 140 CHECK_ABI_SEH(gcm_init_ssse3, Htable, kH); in TEST() 148 CHECK_ABI_SEH(gcm_init_clmul, Htable, kH); in TEST() 156 CHECK_ABI_SEH(gcm_init_avx, Htable, kH); in TEST() 169 memcpy(&gcm.gcm_key.H, kH, sizeof(kH)); in TEST() 196 CHECK_ABI(gcm_init_neon, Htable, kH); in TEST() 204 CHECK_ABI(gcm_init_v8, Htable, kH); in TEST() 214 CHECK_ABI(gcm_init_p8, Htable, kH); in TEST()
|
/external/boringssl/src/crypto/fipsmodule/modes/ |
D | gcm_test.cc | 124 static const uint64_t kH[2] = { in TEST() local 140 CHECK_ABI_SEH(gcm_init_ssse3, Htable, kH); in TEST() 148 CHECK_ABI_SEH(gcm_init_clmul, Htable, kH); in TEST() 156 CHECK_ABI_SEH(gcm_init_avx, Htable, kH); in TEST() 169 memcpy(&gcm.gcm_key.H, kH, sizeof(kH)); in TEST() 196 CHECK_ABI(gcm_init_neon, Htable, kH); in TEST() 204 CHECK_ABI(gcm_init_v8, Htable, kH); in TEST() 214 CHECK_ABI(gcm_init_p8, Htable, kH); in TEST()
|
/external/skqp/gm/ |
D | drawimageset.cpp | 188 static constexpr SkScalar kH = kN * kTileH; in onDraw() local 193 matrices[1].setRotate(90, kW / 2.f, kH / 2.f); in onDraw() 198 matrices[3].postTranslate(kW, kH); in onDraw() 201 matrices[4].postTranslate(0, kH); in onDraw() 202 matrices[4].postRotate(90, kW / 2.f, kH / 2.f); in onDraw() 205 static constexpr SkScalar kTranslate = SkTMax(kW, kH) * 2.f + 10.f; in onDraw()
|
D | shadowutils.cpp | 27 static constexpr int kH = 960; variable 204 DEF_SIMPLE_GM(shadow_utils, canvas, kW, kH) { in DEF_SIMPLE_GM() argument 208 DEF_SIMPLE_GM(shadow_utils_occl, canvas, kW, kH) { in DEF_SIMPLE_GM() argument 212 DEF_SIMPLE_GM(shadow_utils_gray, canvas, kW, kH) { in DEF_SIMPLE_GM() argument
|
D | circulararcs.cpp | 18 constexpr int kH = 1000; variable 54 constexpr SkScalar kGridH = kH / 2.f; in draw_arcs() 63 canvas->drawLine(kGridW, 0.f , kGridW, SkIntToScalar(kH), linePaint); in draw_arcs() 67 #define DEF_ARC_GM(name) DEF_SIMPLE_GM(circular_arcs_##name, canvas, kW, kH)
|
/external/skia/gm/ |
D | drawimageset.cpp | 222 static constexpr SkScalar kH = kN * kTileH; in onDraw() local 227 matrices[1].setRotate(90, kW / 2.f, kH / 2.f); in onDraw() 232 matrices[3].postTranslate(kW, kH); in onDraw() 235 matrices[4].postTranslate(0, kH); in onDraw() 236 matrices[4].postRotate(90, kW / 2.f, kH / 2.f); in onDraw() 242 static constexpr SkScalar kTranslate = std::max(kW, kH) * 2.f + 10.f; in onDraw()
|
D | circulararcs.cpp | 35 constexpr int kH = 1000; variable 71 constexpr SkScalar kGridH = kH / 2.f; in draw_arcs() 80 canvas->drawLine(kGridW, 0.f , kGridW, SkIntToScalar(kH), linePaint); in draw_arcs() 84 #define DEF_ARC_GM(name) DEF_SIMPLE_GM(circular_arcs_##name, canvas, kW, kH)
|
D | shadowutils.cpp | 40 static constexpr int kH = 960; variable 227 DEF_SIMPLE_GM(shadow_utils, canvas, kW, kH) { in DEF_SIMPLE_GM() argument 231 DEF_SIMPLE_GM(shadow_utils_occl, canvas, kW, kH) { in DEF_SIMPLE_GM() argument 235 DEF_SIMPLE_GM(shadow_utils_gray, canvas, kW, kH) { in DEF_SIMPLE_GM() argument
|
/external/skqp/include/docs/ |
D | SkPDFDocument.h | 31 kH, //!< Heading enumerator
|
/external/skia/include/docs/ |
D | SkPDFDocument.h | 41 kH, //!< Heading enumerator
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Channel.miff | 12 …-052Ex��cJK]�lY,,012202222113333457:>@CHEUm�����칥�����������É<;951-,/103Il�kH=5>IY,+.//-,,...//00/…
|