/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_bitmask.c | 66 struct util_bitmask *bm; in util_bitmask_create() local 68 bm = MALLOC_STRUCT(util_bitmask); in util_bitmask_create() 69 if (!bm) in util_bitmask_create() 72 bm->words = (util_bitmask_word *) in util_bitmask_create() 74 if (!bm->words) { in util_bitmask_create() 75 FREE(bm); in util_bitmask_create() 79 bm->size = UTIL_BITMASK_INITIAL_WORDS * UTIL_BITMASK_BITS_PER_WORD; in util_bitmask_create() 80 bm->filled = 0; in util_bitmask_create() 82 return bm; in util_bitmask_create() 90 util_bitmask_resize(struct util_bitmask *bm, in util_bitmask_resize() argument 137 util_bitmask_filled_set(struct util_bitmask *bm, unsigned index) util_bitmask_filled_set() argument 154 util_bitmask_filled_unset(struct util_bitmask *bm, unsigned index) util_bitmask_filled_unset() argument 166 util_bitmask_add(struct util_bitmask *bm) util_bitmask_add() argument 204 util_bitmask_set(struct util_bitmask *bm, unsigned index) util_bitmask_set() argument 230 util_bitmask_clear(struct util_bitmask *bm, unsigned index) util_bitmask_clear() argument 253 util_bitmask_get(struct util_bitmask *bm, unsigned index) util_bitmask_get() argument 280 util_bitmask_get_next_index(struct util_bitmask *bm, unsigned index) util_bitmask_get_next_index() argument 320 util_bitmask_get_first_index(struct util_bitmask *bm) util_bitmask_get_first_index() argument 327 util_bitmask_destroy(struct util_bitmask *bm) util_bitmask_destroy() argument [all...] |
H A D | u_bitmask.h | 69 util_bitmask_add(struct util_bitmask *bm); 78 util_bitmask_set(struct util_bitmask *bm, 82 util_bitmask_clear(struct util_bitmask *bm, 86 util_bitmask_get(struct util_bitmask *bm, 91 util_bitmask_destroy(struct util_bitmask *bm); 100 util_bitmask_get_first_index(struct util_bitmask *bm); 109 util_bitmask_get_next_index(struct util_bitmask *bm,
|
/third_party/skia/tests/ |
H A D | BitmapTest.cpp | 28 SkBitmap bm; in test_peekpixels() local 31 REPORTER_ASSERT(reporter, !bm.peekPixels(nullptr)); in test_peekpixels() 32 REPORTER_ASSERT(reporter, !bm.peekPixels(&pmap)); in test_peekpixels() 35 bm.setInfo(SkImageInfo::MakeN32Premul(10, 10)); in test_peekpixels() 36 REPORTER_ASSERT(reporter, !bm.peekPixels(nullptr)); in test_peekpixels() 37 REPORTER_ASSERT(reporter, !bm.peekPixels(&pmap)); in test_peekpixels() 40 bm.allocPixels(info); in test_peekpixels() 41 REPORTER_ASSERT(reporter, bm.peekPixels(nullptr)); in test_peekpixels() 42 REPORTER_ASSERT(reporter, bm.peekPixels(&pmap)); in test_peekpixels() 43 REPORTER_ASSERT(reporter, pmap.info() == bm in test_peekpixels() 54 SkBitmap bm; test_bigalloc() local 67 SkBitmap bm; test_allocpixels() local 134 SkBitmap bm; test_bigwidth() local 154 SkBitmap bm; DEF_TEST() local 193 SkBitmap bm; test_erasecolor_premul() local 217 SkBitmap bm; DEF_TEST() local 234 SkBitmap bm; DEF_TEST() local 256 SkBitmap bm; DEF_TEST() local 269 SkBitmap bm; DEF_TEST() local 291 SkBitmap bm; DEF_TEST() local 307 check_alphas(skiatest::Reporter* reporter, const SkBitmap& bm, bool (*pred)(float expected, float actual), SkColorType ct) check_alphas() argument 347 SkBitmap bm; DEF_TEST() local 437 SkBitmap bm; DEF_TEST() local [all...] |
H A D | GifTest.cpp | 58 SkBitmap bm; in test_gif_data_no_colormap() local 59 bool imageDecodeSuccess = decode_memory(data, size, &bm); in test_gif_data_no_colormap() 61 REPORTER_ASSERT(r, bm.width() == 1); in test_gif_data_no_colormap() 62 REPORTER_ASSERT(r, bm.height() == 1); in test_gif_data_no_colormap() 63 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data_no_colormap() 64 if (!(bm.empty())) { in test_gif_data_no_colormap() 65 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0x00000000); in test_gif_data_no_colormap() 69 SkBitmap bm; in test_gif_data() local 70 bool imageDecodeSuccess = decode_memory(data, size, &bm); in test_gif_data() 72 REPORTER_ASSERT(r, bm in test_gif_data() 89 SkBitmap bm; test_gif_data_dims() local 99 SkBitmap bm; test_interlaced_gif_data() local 131 SkBitmap bm; test_gif_data_short() local 217 SkBitmap bm; DEF_TEST() local 267 SkBitmap bm; DEF_TEST() local 305 SkBitmap bm; DEF_TEST() local 450 SkBitmap bm; DEF_TEST() local 489 SkBitmap bm; DEF_TEST() local 540 SkBitmap bm; DEF_TEST() local 631 SkBitmap bm; DEF_TEST() local [all...] |
H A D | NdkDecodeTest.cpp | 52 SkBitmap bm; in DEF_TEST() local 53 bm.allocPixels(info); in DEF_TEST() 54 REPORTER_ASSERT(r, gen->getPixels(bm.pixmap())); in DEF_TEST() 58 bm.allocPixels(unpremulInfo); in DEF_TEST() 59 REPORTER_ASSERT(r, gen->getPixels(bm.pixmap())); in DEF_TEST() 87 SkBitmap bm; in DEF_TEST() local 88 bm.allocPixels(SkImageInfo::Make(10, 10, kRGBA_F16_SkColorType, kOpaque_SkAlphaType, cs)); in DEF_TEST() 89 bm.eraseColor(SK_ColorBLUE); in DEF_TEST() 94 auto data = SkEncodeBitmap(bm, format, 80); in DEF_TEST() 133 SkBitmap bm; in DEF_TEST() local 174 SkBitmap bm; DEF_TEST() local 249 SkBitmap bm; DEF_TEST() local 278 SkBitmap bm; DEF_TEST() local 309 SkBitmap bm; DEF_TEST() local 370 SkBitmap bm; DEF_TEST() local 404 SkBitmap bm; DEF_TEST() local 440 SkBitmap bm; DEF_TEST() local 478 SkBitmap bm; DEF_TEST() local 535 SkBitmap bm; DEF_TEST() local [all...] |
H A D | SpecialImageTest.cpp | 39 SkBitmap bm; in create_bm() local 40 bm.allocPixels(ii); in create_bm() 42 SkCanvas temp(bm); in create_bm() 53 bm.setImmutable(); in create_bm() 54 return bm; in create_bm() 97 SkBitmap bm; in test_image() local 98 bm.allocN32Pixels(kFullSize, kFullSize, false); in test_image() 100 bool result = canvas->readPixels(bm.info(), bm.getPixels(), bm in test_image() 139 SkBitmap bm = create_bm(); DEF_TEST() local 160 SkBitmap bm = create_bm(); test_specialimage_image() local 190 SkBitmap bm = create_bm(); DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local [all...] |
H A D | CodecTest.cpp | 68 static SkMD5::Digest md5(const SkBitmap& bm) { in md5() argument 69 SkASSERT(bm.getPixels()); in md5() 71 size_t rowLen = bm.info().bytesPerPixel() * bm.width(); in md5() 72 for (int y = 0; y < bm.height(); ++y) { in md5() 73 md5.write(bm.getAddr(0, y), rowLen); in md5() 79 * Compute the digest for bm and compare it to a known good digest. 80 * @param r Reporter to assert that bm's digest matches goodDigest. 82 * @param bm The bitmap to test. 85 const SkBitmap& bm) { in compare_to_good_digest() 84 compare_to_good_digest(skiatest::Reporter* r, const SkMD5::Digest& goodDigest, const SkBitmap& bm) compare_to_good_digest() argument 99 SkBitmap bm; test_info() local 124 SkBitmap bm; test_incremental_decode() local 138 SkBitmap bm; test_in_stripes() local 178 test_codec(skiatest::Reporter* r, const char* path, Codec* codec, SkBitmap& bm, const SkImageInfo& info, const SkISize& size, SkCodec::Result expectedResult, SkMD5::Digest* digest, const SkMD5::Digest* goodDigest) test_codec() argument 296 SkBitmap bm; check_scanline_decode() local 399 SkBitmap bm; check_subset_decode() local 434 SkBitmap bm; check_android_codec() local 454 SkBitmap bm; check_codec_image_generator() local 748 SkBitmap bm; DEF_TEST() local 1193 SkBitmap bm; test_conversion_possible() local 1239 SkBitmap bm; decode_frame() local 1354 SkBitmap bm; DEF_TEST() local 1389 SkBitmap bm; DEF_TEST() local 1416 SkBitmap bm; DEF_TEST() local 1554 SkBitmap bm; DEF_TEST() local 1719 SkBitmap bm; DEF_TEST() local 1763 SkBitmap bm; DEF_TEST() local 1789 SkBitmap bm; DEF_TEST() local 1809 SkBitmap bm; DEF_TEST() local 1876 SkBitmap bm; DEF_TEST() local [all...] |
H A D | PinnedImageTest.cpp | 23 SkBitmap bm; in surface_is_expected_color() local 24 bm.allocPixels(ii); in surface_is_expected_color() 26 surf->readPixels(bm, 0, 0); in surface_is_expected_color() 28 for (int y = 0; y < bm.height(); ++y) { in surface_is_expected_color() 29 for (int x = 0; x < bm.width(); ++x) { in surface_is_expected_color() 30 if (bm.getColor(x, y) != color) { in surface_is_expected_color() 42 SkBitmap bm; in basic_test() local 43 bm.allocPixels(ii); in basic_test() 45 SkCanvas bmCanvas(bm); in basic_test() 49 sk_sp<SkImage> img = SkMakeImageFromRasterBitmap(bm, kNever_SkCopyPixelsMod in basic_test() 92 SkBitmap bm; cleanup_test() local [all...] |
H A D | NdkEncodeTest.cpp | 49 SkBitmap bm; in DEF_TEST() local 50 bm.allocPixels(SkImageInfo::Make(10, 10, ct, kOpaque_SkAlphaType)); in DEF_TEST() 51 bm.eraseColor(SK_ColorBLUE); in DEF_TEST() 53 auto encoded = encode_ndk(bm.pixmap(), rec.format, rec.quality); in DEF_TEST() 65 if (rec.name == kPng && bm.colorType() == kRGB_565_SkColorType) { in DEF_TEST() 72 bm2.allocPixels(bm.info()); in DEF_TEST() 75 for (int x = 0; x < bm.width(); x++) in DEF_TEST() 76 for (int y = 0; y < bm.height(); y++) { in DEF_TEST() 77 SkColor orig = bm .getColor(x, y); in DEF_TEST() 100 SkBitmap bm; in DEF_TEST() local 121 SkBitmap bm; DEF_TEST() local 191 SkBitmap bm; DEF_TEST() local 282 SkBitmap bm; DEF_TEST() local 346 SkBitmap bm; DEF_TEST() local [all...] |
H A D | ImageBitmapTest.cpp | 18 SkBitmap bm, a, b; in DEF_TEST() local 19 bm.allocN32Pixels(32, 64); in DEF_TEST() 20 bm.eraseColor(SK_ColorBLACK); in DEF_TEST() 21 bm.setImmutable(); in DEF_TEST() 22 (void)bm.extractSubset(&a, SkIRect::MakeXYWH(0, 0, 32, 32)); in DEF_TEST() 23 (void)bm.extractSubset(&b, SkIRect::MakeXYWH(0, 32, 32, 32)); in DEF_TEST() 25 auto img = bm.asImage(); in DEF_TEST() 28 REPORTER_ASSERT(r, img->uniqueID() == bm.getGenerationID()); in DEF_TEST()
|
H A D | DeviceTest.cpp | 26 static sk_sp<SkSpecialImage> MakeSpecial(SkBaseDevice* dev, const SkBitmap& bm) { in MakeSpecial() argument 27 return dev->makeSpecial(bm); in MakeSpecial() 49 SkBitmap bm; 50 bm.tryAllocN32Pixels(kWidth, kHeight); 53 sk_sp<SkSpecialImage> special = DeviceTestingAccess::MakeSpecial(bmDev.get(), bm); 57 SkASSERT(bm.getGenerationID() == special->uniqueID()); 61 sk_sp<SkImage> image(SkImage::MakeFromBitmap(bm)); 66 SkASSERT(bm.getGenerationID() == special->uniqueID()); 92 SkBitmap bm; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 93 SkAssertResult(bm in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all...] |
/third_party/skia/gm/ |
H A D | spritebitmap.cpp | 23 static void make_bm(SkBitmap* bm) { in make_bm() argument 24 bm->allocN32Pixels(100, 100); in make_bm() 25 bm->eraseColor(SK_ColorBLUE); in make_bm() 27 SkCanvas canvas(*bm); in make_bm() 34 static void draw_1_bitmap(SkCanvas* canvas, const SkBitmap& bm, bool doClip, in draw_1_bitmap() argument 41 SkIntToScalar(bm.width()), in draw_1_bitmap() 42 SkIntToScalar(bm.height())); in draw_1_bitmap() 47 canvas->translate(SkIntToScalar(bm.width() + 20), 0); in draw_1_bitmap() 53 canvas->drawImage(bm.asImage(), SkIntToScalar(dx), SkIntToScalar(dy), in draw_1_bitmap() 78 SkBitmap bm; variable 79 make_bm(&bm); global() variable [all...] |
H A D | alpha_image.cpp | 22 SkBitmap bm; in make_alpha_image() local 23 bm.allocPixels(SkImageInfo::MakeA8(w, h)); in make_alpha_image() 24 bm.eraseARGB(10, 0, 0 , 0); in make_alpha_image() 25 for (int y = 0; y < bm.height(); ++y) { in make_alpha_image() 26 for (int x = y; x < bm.width(); ++x) { in make_alpha_image() 27 *bm.getAddr8(x, y) = 0xFF; in make_alpha_image() 30 bm.setImmutable(); in make_alpha_image() 31 return bm; in make_alpha_image() 67 SkBitmap bm; in DEF_SIMPLE_GM() local 68 bm in DEF_SIMPLE_GM() [all...] |
/third_party/benchmark/test/ |
H A D | user_counters_test.cc | 125 namespace bm = benchmark; in BM_Counters_Rate() 126 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate() 127 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate() 169 namespace bm = benchmark; in BM_Invert() 170 state.counters["foo"] = bm::Counter{0.0001, bm::Counter::kInvert}; in BM_Invert() 171 state.counters["bar"] = bm::Counter{10000, bm in BM_Invert() [all...] |
H A D | user_counters_tabular_test.cc | 67 namespace bm = benchmark; in BM_Counters_Tabular() 69 {"Foo", {1, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 70 {"Bar", {2, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 71 {"Baz", {4, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 72 {"Bat", {8, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 73 {"Frob", {16, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 74 {"Lob", {32, bm::Counter::kAvgThreads}}, in BM_Counters_Tabular() 378 namespace bm = benchmark; in BM_CounterRates_Tabular() 380 {"Foo", {1, bm::Counter::kAvgThreadsRate}}, in BM_CounterRates_Tabular() 381 {"Bar", {2, bm in BM_CounterRates_Tabular() [all...] |
H A D | user_counters_thousands_test.cc | 14 namespace bm = benchmark; in BM_Counters_Thousands() 17 bm::Counter(1000 * 1000, bm::Counter::kDefaults)}, in BM_Counters_Thousands() 18 {"t1_1000000Base1000", bm::Counter(1000 * 1000, bm::Counter::kDefaults, in BM_Counters_Thousands() 19 bm::Counter::OneK::kIs1000)}, in BM_Counters_Thousands() 20 {"t2_1000000Base1024", bm::Counter(1000 * 1000, bm::Counter::kDefaults, in BM_Counters_Thousands() 21 bm::Counter::OneK::kIs1024)}, in BM_Counters_Thousands() 22 {"t3_1048576Base1000", bm in BM_Counters_Thousands() [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | test-bimap.cc | 33 hb_bimap_t bm; in main() local 35 assert (bm.is_empty () == true); in main() 36 bm.set (1, 4); in main() 37 bm.set (2, 5); in main() 38 bm.set (3, 6); in main() 39 assert (bm.get_population () == 3); in main() 40 assert (bm.has (1) == true); in main() 41 assert (bm.has (4) == false); in main() 42 assert (bm[2] == 5); in main() 43 assert (bm in main() [all...] |
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_mem.c | 195 BUF_MEM *bm = bbm->readp; in mem_read() local 198 bm = bbm->buf; in mem_read() 200 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl; in mem_read() 202 memcpy(out, bm->data, ret); in mem_read() 203 bm->length -= ret; in mem_read() 204 bm->max -= ret; in mem_read() 205 bm->data += ret; in mem_read() 206 } else if (bm->length == 0) { in mem_read() 247 BUF_MEM *bm, *b in mem_ctrl() local 347 BUF_MEM *bm = bbm->readp; mem_gets() local [all...] |
/third_party/openssl/crypto/bio/ |
H A D | bss_mem.c | 195 BUF_MEM *bm = bbm->readp; in mem_read() local 198 bm = bbm->buf; in mem_read() 200 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl; in mem_read() 202 memcpy(out, bm->data, ret); in mem_read() 203 bm->length -= ret; in mem_read() 204 bm->max -= ret; in mem_read() 205 bm->data += ret; in mem_read() 206 } else if (bm->length == 0) { in mem_read() 247 BUF_MEM *bm, *b in mem_ctrl() local 347 BUF_MEM *bm = bbm->readp; mem_gets() local [all...] |
/third_party/skia/fuzz/oss_fuzz/ |
H A D | FuzzIncrementalImage.cpp | 18 SkBitmap bm; in FuzzIncrementalImageDecode() local 19 if (!bm.tryAllocPixels(codec->getInfo())) { in FuzzIncrementalImageDecode() 24 auto result = codec->startIncrementalDecode(bm.info(), bm.getPixels(), bm.rowBytes()); in FuzzIncrementalImageDecode() 36 if (rowsDecoded < bm.height()) { in FuzzIncrementalImageDecode() 37 void* dst = SkTAddOffset<void>(bm.getPixels(), rowsDecoded * bm.rowBytes()); in FuzzIncrementalImageDecode() 38 sk_bzero(dst, (bm.height() - rowsDecoded) * bm in FuzzIncrementalImageDecode() [all...] |
/third_party/skia/src/utils/mac/ |
H A D | SkCreateCGImageRef.cpp | 86 static std::unique_ptr<SkBitmap> prepare_for_image_ref(const SkBitmap& bm, in prepare_for_image_ref() argument 90 if (!get_bitmap_info(bm.colorType(), bm.alphaType(), bitsPerComponent, info, &upscaleTo32)) { in prepare_for_image_ref() 97 copy->allocPixels(bm.info().makeColorType(kRGBA_8888_SkColorType)); in prepare_for_image_ref() 98 bm.readPixels(copy->info(), copy->getPixels(), copy->rowBytes(), 0, 0); in prepare_for_image_ref() 101 return std::make_unique<SkBitmap>(bm); in prepare_for_image_ref() 104 CGImageRef SkCreateCGImageRefWithColorspace(const SkBitmap& bm, in SkCreateCGImageRefWithColorspace() argument 106 if (bm.drawsNothing()) { in SkCreateCGImageRefWithColorspace() 112 std::unique_ptr<SkBitmap> bitmap = prepare_for_image_ref(bm, &bitsPerComponent, &info); in SkCreateCGImageRefWithColorspace() 136 void SkCGDrawBitmap(CGContextRef cg, const SkBitmap& bm, floa argument 244 SkBitmap bm; SkMakeImageFromCGImage() local [all...] |
/third_party/skia/tools/ |
H A D | image_diff_metric.cpp | 24 SkBitmap bm[2]; in main() local 29 bm[i].allocN32Pixels(codec->dimensions().fWidth, codec->dimensions().fHeight); in main() 30 if (SkCodec::kSuccess == codec->getPixels(bm[i].pixmap())) { in main() 37 SkISize dim = bm[0].dimensions(); in main() 38 if (dim != bm[1].dimensions()) { in main() 40 dim.fWidth, dim.fHeight, bm[1].dimensions().fWidth, bm[1].dimensions().fHeight); in main() 45 const uint8_t* row1 = reinterpret_cast<const uint8_t*>(bm[0].pixmap().addr32(0, y)); in main() 46 const uint8_t* row2 = reinterpret_cast<const uint8_t*>(bm[1].pixmap().addr32(0, y)); in main()
|
/third_party/skia/src/core/ |
H A D | SkSpecialImage.cpp | 93 bool SkSpecialImage::getROPixels(SkBitmap* bm) const { in getROPixels() 94 return as_SIB(this)->onGetROPixels(bm); in getROPixels() 175 SkBitmap bm; in MakeFromImage() local 176 if (as_IB(image)->getROPixels(nullptr, &bm)) { in MakeFromImage() 177 return MakeFromRaster(subset, bm, props); in MakeFromImage() 186 SkSpecialImage_Raster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps& props) in SkSpecialImage_Raster() argument 187 : INHERITED(subset, bm.getGenerationID(), props) in SkSpecialImage_Raster() 188 , fBitmap(bm) in SkSpecialImage_Raster() 190 SkASSERT(bm.pixelRef()); in SkSpecialImage_Raster() 209 bool onGetROPixels(SkBitmap* bm) cons 269 MakeFromRaster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps& props) MakeFromRaster() argument 292 CopyFromRaster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps& props) CopyFromRaster() argument [all...] |
/third_party/skia/tools/skqp/ |
H A D | make_skqp_model.cpp | 9 static bool update(SkBitmap* maxBitmap, SkBitmap* minBitmap, const SkBitmap& bm) { in update() argument 10 SkASSERT(!bm.drawsNothing()); in update() 11 SkASSERT(4 == bm.bytesPerPixel()); in update() 13 maxBitmap->allocPixels(bm.info()); in update() 15 minBitmap->allocPixels(bm.info()); in update() 18 if (maxBitmap->dimensions() != bm.dimensions()) { in update() 21 SkASSERT_RELEASE(maxBitmap->info() == bm.info()); in update() 24 const SkPixmap& pm = bm.pixmap(); in update() 78 SkBitmap bm = decode_to_srgb_8888_unpremul(name.c_str()); in main() local 79 if (bm in main() [all...] |
/third_party/skia/fuzz/ |
H A D | FuzzEncoders.cpp | 27 SkBitmap bm; in make_fuzzed_bitmap() local 31 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(w, h))) { in make_fuzzed_bitmap() 32 return bm; in make_fuzzed_bitmap() 35 fuzz->nextN((SkPMColor*)bm.getPixels(), n); in make_fuzzed_bitmap() 36 return bm; in make_fuzzed_bitmap() 40 auto bm = make_fuzzed_bitmap(fuzz); in DEF_FUZZ() local 46 SkPngEncoder::Encode(&dest, bm.pixmap(), opts); in DEF_FUZZ() 50 auto bm = make_fuzzed_bitmap(fuzz); in DEF_FUZZ() local 56 (void)SkJpegEncoder::Encode(&dest, bm.pixmap(), opts); in DEF_FUZZ() 60 auto bm in DEF_FUZZ() local [all...] |