/third_party/skia/src/effects/imagefilters/ |
H A D | SkMagnifierImageFilter.cpp | 227 const SkImageInfo info = SkImageInfo::MakeN32Premul(bounds.width(), bounds.height()); in onFilterImage() local 230 if (!dst.tryAllocPixels(info)) { in onFilterImage()
|
H A D | SkAlphaThresholdImageFilter.cpp | 254 SkImageInfo info = SkImageInfo::MakeN32(bounds.width(), bounds.height(), in onFilterImage() local 258 if (!dst.tryAllocPixels(info)) { in onFilterImage()
|
/third_party/skia/samplecode/ |
H A D | SampleAtlas.cpp | 45 SkImageInfo info = SkImageInfo::MakeN32Premul(atlasSize, atlasSize); in make_atlas() local 46 auto surface(SkSurface::MakeRaster(info)); in make_atlas()
|
/third_party/skia/src/codec/ |
H A D | SkAndroidCodec.cpp | 363 SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels, in getAndroidPixels() argument 365 return this->getAndroidPixels(info, pixels, rowBytes, nullptr); in getAndroidPixels()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
H A D | import.go | 75 filepath.Walk(filepath.Join(e.RootDir, "src"), func(path string, info os.FileInfo, err error) error { 83 if !info.IsDir() {
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
H A D | IndexSubTableFormat4.java | 275 BitmapGlyphInfo info = new BitmapGlyphInfo(pair.glyphCode(), in next() 280 return info; in next() 285 throw new UnsupportedOperationException("Unable to remove a glyph info."); in remove()
|
H A D | IndexSubTableFormat5.java | 212 BitmapGlyphInfo info = new BitmapGlyphInfo( in next() 219 return info; in next() 224 throw new UnsupportedOperationException("Unable to remove a glyph info."); in remove()
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | ucol.h | 286 * input data is in so-called FCD form (see users manual for more info). 1129 * @param info the version # information, the result will be filled in 1133 ucol_getVersion(const UCollator* coll, UVersionInfo info); 1139 * @param info the version # information, the result will be filled in 1143 ucol_getUCAVersion(const UCollator* coll, UVersionInfo info);
|
/third_party/skia/tests/ |
H A D | MipMapTest.cpp | 249 auto check_fails = [reporter](sk_sp<SkImage> img, const SkImageInfo& info) { in DEF_TEST() 250 SkMipmapBuilder builder(info); in DEF_TEST()
|
H A D | RectTest.cpp | 282 const auto info = SkImageInfo::MakeN32Premul(w, h); in DEF_TEST() local 284 auto surf = SkSurface::MakeRaster(info); in DEF_TEST()
|
H A D | RectangleTextureTest.cpp | 102 GrImageInfo info(GrColorType::kRGBA_8888, in test_copy_to_surface() 106 GrCPixmap pixmap(info, pixels.get(), dstContext->width()*sizeof(uint32_t)); in test_copy_to_surface()
|
H A D | CanvasStateTest.cpp | 106 REPORTER_ASSERT(reporter, pm[0].rowBytes() == (size_t)pm[0].width() * pm[0].info().bytesPerPixel()); in compare() 107 REPORTER_ASSERT(reporter, pm[1].rowBytes() == (size_t)pm[1].width() * pm[1].info().bytesPerPixel()); in compare()
|
/third_party/skia/src/sksl/ |
H A D | SkSLThreadContext.cpp | 169 void ThreadContext::ReportError(skstd::string_view msg, PositionInfo info) { in ReportError() argument 170 GetErrorReporter().error(msg, info); in ReportError()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/ |
H A D | Option.cpp | 26 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option() argument 27 : Info(info), Owner(owner) { in Option()
|
/third_party/skia/tools/fm/fm_bot/ |
H A D | fm_bot.go | 142 err := filepath.Walk(match, func(path string, info os.FileInfo, err error) error { 143 if !info.IsDir() {
|
/third_party/skia/tools/gpu/ |
H A D | GrContextFactory.cpp | 190 GrGLDriverInfo info = GrGLGetDriverInfo(glCtx->gl()); in getContextInfoInternal() local 191 if (info.fANGLEVendor == GrGLVendor::kNVIDIA) { in getContextInfoInternal()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | log_uniform_int_distribution_test.cc | 242 const ::testing::TestParamInfo<log_uniform_i32::param_type>& info) { in ParamName() 243 const auto& p = info.param; in ParamName() 241 ParamName( const ::testing::TestParamInfo<log_uniform_i32::param_type>& info) ParamName() argument
|
/third_party/skia/gm/ |
H A D | imagefilters.cpp | 92 const SkImageInfo info = SkImageInfo::MakeS32(100, 100, kPremul_SkAlphaType); in make_image() local 93 auto surface(ToolUtils::makeSurface(canvas, info)); in make_image()
|
H A D | readpixels.cpp | 43 SkImageInfo info = codec->getInfo().makeWH(kWidth, kHeight) in make_raster_image() local 46 return std::get<0>(codec->getImage(info)); in make_raster_image()
|
H A D | dftext.cpp | 62 SkImageInfo info = SkImageInfo::MakeN32(size.width(), size.height(), kPremul_SkAlphaType, variable 68 auto surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info, 0, &props));
|
H A D | drawbitmaprect.cpp | 52 SkImageInfo info = SkImageInfo::MakeN32Premul(w, h); in makebm() local 54 auto surface(ToolUtils::makeSurface(origCanvas, info)); in makebm()
|
H A D | localmatrixshader.cpp | 29 SkImageInfo info = SkImageInfo::MakeN32Premul(kSize, kSize); in make_image() local 30 auto surface = ToolUtils::makeSurface(rootCanvas, info); in make_image()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | evp.rs | 283 info: *const u8, in EVP_PKEY_CTX_add1_hkdf_info() 292 info as *mut c_void, in EVP_PKEY_CTX_add1_hkdf_info()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ssbo/ |
H A D | vktSSBOCornerCase.cpp | 235 vk::VkBufferDeviceAddressInfo info in iterate() 242 vk::VkDeviceAddress addr = vk.getBufferDeviceAddress(device, &info); in iterate()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | ieee802_11_common.h | 185 int mb_ies_info_by_ies(struct mb_ies_info *info, const u8 *ies_buf, 187 struct wpabuf * mb_ies_by_info(struct mb_ies_info *info);
|