Home
last modified time | relevance | path

Searched refs:MakeWithProc (Results 1 – 9 of 9) sorted by relevance

/external/skia/tests/
DMallocPixelRefTest.cpp69 SkMallocPixelRef::MakeWithProc(info, rowBytes, addr, delete_uint8_proc, nullptr)); in DEF_TEST()
77 SkMallocPixelRef::MakeWithProc(info, rowBytes, in DEF_TEST()
91 SkMallocPixelRef::MakeWithProc(SkImageInfo::MakeN32Premul(-1, -1), rowBytes, in DEF_TEST()
102 SkMallocPixelRef::MakeWithProc(info, rowBytes, addr, in DEF_TEST()
DDataRefTest.cpp183 sk_sp<SkData> r2(SkData::MakeWithProc(new int[N], N*sizeof(int), delete_int_proc, gGlobal)); in DEF_TEST()
/external/skia/include/core/
DSkMallocPixelRef.h61 static sk_sp<SkPixelRef> MakeWithProc(const SkImageInfo& info, size_t rowBytes, void* addr,
85 static sk_sp<SkPixelRef> MakeWithProc(const SkImageInfo& info, in MakeWithProc() function
89 return MakeWithProc(info, rowBytes, addr, proc, context); in MakeWithProc()
DSkData.h101 static sk_sp<SkData> MakeWithProc(const void* ptr, size_t length, ReleaseProc proc, void* ctx);
108 return MakeWithProc(data, length, DummyReleaseProc, nullptr); in MakeWithoutCopy()
/external/skia/src/core/
DSkData.cpp110 sk_sp<SkData> SkData::MakeWithProc(const void* ptr, size_t length, ReleaseProc proc, void* ctx) { in MakeWithProc() function in SkData
127 return SkData::MakeWithProc(addr, size, sk_mmap_releaseproc, reinterpret_cast<void*>(size)); in MakeFromFILE()
146 return SkData::MakeWithProc(addr, size, sk_mmap_releaseproc, reinterpret_cast<void*>(size)); in MakeFromFD()
DSkMallocPixelRef.cpp111 sk_sp<SkPixelRef> SkMallocPixelRef::MakeWithProc(const SkImageInfo& info, in MakeWithProc() function in SkMallocPixelRef
DSkBitmap.cpp310 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeWithProc(correctedInfo, rb, pixels, in installPixels()
/external/skia/src/pdf/
DSkPDFFont.cpp325 return SkData::MakeWithProc(base, size, proc, stream.release()); in stream_to_data()
371 SkData::MakeWithProc( in get_subset_font_stream()
/external/skia/src/image/
DSkImage_Raster.cpp294 sk_sp<SkData> data(SkData::MakeWithProc(pmap.addr(), size, proc, ctx)); in MakeFromRaster()