HomeSort by relevance Sort by last modified time
    Searched refs:origHeight (Results 1 - 12 of 12) sorted by null

  /external/opencv3/modules/rsobjdetect/src/
rsobjdetect.hpp 3 extern void initInnerLoop(HaarVars hf, int origWidth, int origHeight);
innerloop.cpp 12 void initInnerLoop(HaarVars hf, int origWidth, int origHeight) {
19 sc->set_origHeight(origHeight);
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 124 int origHeight;
127 origHeight = rootView.getHeight();
135 while (Math.abs(newHeight - origHeight) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
139 return (Math.abs(origHeight - newHeight) >= IME_MIN_HEIGHT);
  /external/skia/src/images/
SkScaledBitmapSampler.h 19 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
SkImageDecoder_libpng.cpp 256 png_uint_32 origWidth, origHeight;
258 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
295 png_uint_32 origWidth, origHeight;
297 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
311 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
370 for (png_uint_32 y = 0; y < origHeight; y++) {
404 SkAutoTMalloc<uint8_t> storage(origWidth * origHeight * srcBytesPerPixel);
410 for (png_uint_32 y = 0; y < origHeight; y++) {
439 SkASSERT(read <= origHeight);
440 skip_src_rows(png_ptr, srcRow, origHeight - read)
    [all...]
SkImageDecoder_libwebp.cpp 292 int origWidth, origHeight, hasAlpha;
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,
  /external/skia/src/codec/
SkIcoCodec.cpp 197 int origHeight = this->getInfo().height();
198 float desiredSize = desiredScale * origWidth * origHeight;
200 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
SkPngCodec.cpp 228 png_uint_32 origWidth, origHeight;
230 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
319 *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java 519 final int origHeight = preloadedDrawable.getIntrinsicHeight();
529 assertEquals(Math.round(origHeight / 2f), halfDrawable.getIntrinsicHeight());
538 assertEquals(origHeight * 2, doubleDrawable.getIntrinsicHeight());
547 assertEquals(origHeight, origDrawable.getIntrinsicHeight());
564 assertEquals(2 * Math.round(origHeight / 2f), halfDrawable.getIntrinsicHeight());
569 assertEquals(origHeight, doubleDrawable.getIntrinsicHeight());
NinePatchDrawableTest.java 421 final int origHeight = preloadedDrawable.getIntrinsicHeight();
435 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
452 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
513 final int origHeight = preloadedDrawable.getIntrinsicHeight();
528 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
548 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
BitmapDrawableTest.java 541 final int origHeight = preloadedDrawable.getIntrinsicHeight();
557 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
572 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
  /external/opencv3/modules/objdetect/src/
cascadedetect.cpp     [all...]

Completed in 2938 milliseconds