Home
last modified time | relevance | path

Searched refs:kH (Results 1 – 25 of 211) sorted by relevance

123456789

/external/skia/tests/
DCopySurfaceTest.cpp32 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 …]
DVkWrapTests.cpp31 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 …]
DClearTest.cpp67 static const int kH = 10; in clear_op_test() local
69 SkIRect fullRect = SkIRect::MakeWH(kW, kH); in clear_op_test()
74 SkIRect mid1Rect = SkIRect::MakeXYWH(1, 1, kW-2, kH-2); in clear_op_test()
75 SkIRect outerLeftEdge = SkIRect::MakeXYWH(0, 0, 1, kH); in clear_op_test()
77 SkIRect outerRightEdge = SkIRect::MakeXYWH(kW-1, 0, 1, kH); in clear_op_test()
78 SkIRect outerBottomEdge = SkIRect::MakeXYWH(0, kH-1, kW, 1); in clear_op_test()
82 SkIRect mid2Rect = SkIRect::MakeXYWH(2, 2, kW-4, kH-4); in clear_op_test()
83 SkIRect innerLeftEdge = SkIRect::MakeXYWH(1, 1, 1, kH-2); in clear_op_test()
85 SkIRect innerRightEdge = SkIRect::MakeXYWH(kW-2, 1, 1, kH-2); in clear_op_test()
86 SkIRect innerBottomEdge = SkIRect::MakeXYWH(1, kH-2, kW-2, 1); in clear_op_test()
[all …]
DApplyGammaTest.cpp99 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()
DSRGBReadWritePixelsTest.cpp185 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()
DSurfaceTest.cpp810 const int kH = surface->height(); in test_surface_draw_partially() local
814 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2), in test_surface_draw_partially()
816 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]); in test_surface_draw_partially()
817 sk_memset32(pixels.get(), ~origColor, kW * kH); in test_surface_draw_partially()
819 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType); in test_surface_draw_partially()
830 for (int y = 0; y < kH/2 && !stop; ++y) { in test_surface_draw_partially()
839 for (int y = kH/2; y < kH && !stop; ++y) { in test_surface_draw_partially()
/external/skqp/tests/
DCopySurfaceTest.cpp32 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 …]
DVkWrapTests.cpp31 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 …]
DClearTest.cpp68 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 …]
DApplyGammaTest.cpp99 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()
DSRGBReadWritePixelsTest.cpp185 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()
DSurfaceTest.cpp811 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/boringssl/src/crypto/fipsmodule/modes/
Dgcm_test.cc124 static const uint64_t kH[2] = { in TEST() local
138 CHECK_ABI(gcm_init_4bit, Htable, kH); in TEST()
153 CHECK_ABI_SEH(gcm_init_ssse3, Htable, kH); in TEST()
161 CHECK_ABI_SEH(gcm_init_clmul, Htable, kH); in TEST()
169 CHECK_ABI_SEH(gcm_init_avx, Htable, kH); in TEST()
182 memcpy(&gcm.gcm_key.H, kH, sizeof(kH)); in TEST()
209 CHECK_ABI(gcm_init_neon, Htable, kH); in TEST()
217 CHECK_ABI(gcm_init_v8, Htable, kH); in TEST()
/external/skqp/gm/
Ddrawimageset.cpp188 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()
Dshadowutils.cpp27 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
Dcirculararcs.cpp18 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/
Ddrawimageset.cpp188 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()
Dshadowutils.cpp27 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
Dcirculararcs.cpp18 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/honggfuzz/examples/apache-httpd/corpus_http2/
D6c420cedffa9a613d46708c89a060d78.000099f7.honggfuzz.cov26 …�I�)�P^3��F��اv3����n� %�����ի!_�PcY�`���=-�.O��|w� +Mȏ?'���&8��F����kH�`�ӚQ�Ol�<�cm�J\…
40 …�I�)�P^3��F��اv3����n� %�����ի!_�PcY�`���=-�.O��|w� +Mȏ?'���&8��F����kH�`�ӚQ�Ol�<�cm�J\…
55 …�I�)�P^3��F��اv3����n� %�����ի!_�PcY�`���=-�.O��|w� +Mȏ?'���&8��F����kH�`�ӚQ�Ol�<�cm�J\…
/external/skia/include/docs/
DSkPDFDocument.h31 kH, //!< Heading enumerator
/external/skqp/include/docs/
DSkPDFDocument.h31 kH, //!< Heading enumerator
/external/python/cpython3/Lib/test/
Dkeycert.passwd.pem18 kH/qdiC7QIkRKtsrawW4vEDna3YtxIYhQqz9+KwO6u/0gzooZtv1RU4U3ifMDB5u
/external/ImageMagick/PerlMagick/t/reference/filter/
DChannel.miff12 …-052Ex��cJK]�lY,,012202222113333457:>@CHEUm�����칥�����������É<;951-,/103Il�kH=5>IY,+.//-,,...//00/…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D879eea3a04fd753260a5ad4183be70e4.00000ba8.honggfuzz.cov18 :3P��i:��M*��B��kH=A

123456789