Home
last modified time | relevance | path

Searched refs:origWidth (Results 1 – 11 of 11) sorted by relevance

/external/skia/src/images/
DSkImageDecoder_libpng.cpp256 png_uint_32 origWidth, origHeight; in onDecodeInit() local
258 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, in onDecodeInit()
295 png_uint_32 origWidth, origHeight; in onDecode() local
297 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, in onDecode()
311 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize); in onDecode()
404 SkAutoTMalloc<uint8_t> storage(origWidth * origHeight * srcBytesPerPixel); in onDecode()
406 size_t rowBytes = origWidth * srcBytesPerPixel; in onDecode()
423 SkAutoTMalloc<uint8_t> storage(origWidth * srcBytesPerPixel); in onDecode()
478 png_uint_32 origWidth, origHeight; in getBitmapColorType() local
480 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, in getBitmapColorType()
[all …]
DSkImageDecoder_libwebp.cpp292 int origWidth, origHeight, hasAlpha; in onDecode() local
293 if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) { in onDecode()
299 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize); in onDecode()
317 if (!webp_get_config_resize(&config, decodedBitmap, origWidth, origHeight, in onDecode()
DSkScaledBitmapSampler.h19 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
/external/skia/src/codec/
DSkIcoCodec.cpp196 int origWidth = this->getInfo().width(); in onGetScaledDimensions() local
198 float desiredSize = desiredScale * origWidth * origHeight; in onGetScaledDimensions()
200 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f; in onGetScaledDimensions()
DSkPngCodec.cpp228 png_uint_32 origWidth, origHeight; in read_header() local
230 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, in read_header()
319 *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType); in read_header()
/external/opencv3/modules/rsobjdetect/src/
Dinnerloop.cpp12 void initInnerLoop(HaarVars hf, int origWidth, int origHeight) { in initInnerLoop() argument
18 sc->set_origWidth(origWidth); in initInnerLoop()
Drsobjdetect.hpp3 extern void initInnerLoop(HaarVars hf, int origWidth, int origHeight);
/external/opencv3/modules/rsobjdetect/src/rs/
DdetectAt.rs48 int origWidth;
92 x_check + origWidth >= width ||
/external/skia/src/core/
DSkAAClip.cpp426 const int origWidth = *data++; in test_trim_row_left_right() local
427 assert_row_width(data, origWidth); in test_trim_row_left_right()
428 int skip = trim_row_left_right(data, origWidth, trimL, trimR); in test_trim_row_left_right()
430 int expectedWidth = origWidth - trimL - trimR; in test_trim_row_left_right()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1406 unsigned origWidth = N0.getValueType().getSizeInBits(); in SimplifySetCC() local
1407 unsigned maskWidth = origWidth; in SimplifySetCC()
1411 origWidth = Lod->getMemoryVT().getSizeInBits(); in SimplifySetCC()
1414 for (unsigned width = origWidth / 2; width>=8; width /= 2) { in SimplifySetCC()
1416 for (unsigned offset=0; offset<origWidth/width; offset++) { in SimplifySetCC()
1419 bestOffset = (origWidth/width - offset - 1) * (width/8); in SimplifySetCC()
/external/opencv3/modules/objdetect/src/
Dcascadedetect.cpp1368 const int origWidth = origWinSize.width; in rs_parallel_detect() local
1418 const int origWidth = origWinSize.width; in setHaarVars() local
1481 initInnerLoop(haarVars,origWidth,origHeight); in setHaarVars()