Searched defs:origWidth (Results 1 - 8 of 8) sorted by relevance

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

Completed in 328 milliseconds