HomeSort by relevance Sort by last modified time
    Searched defs:Height (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/libvpx/libvpx/vp8/common/
onyxd.h 32 int Height;
  /external/mesa3d/src/egl/main/
eglmode.h 49 EGLint Width, Height; /* size in pixels */
eglimage.h 49 EGLint Height;
eglsurface.h 55 EGLint Width, Height;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyxd.h 32 int Height;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
image_util_bitmap_impl.py 16 def Height(bitmap):
17 return bitmap.height
28 def FromRGBPixels(width, height, pixels, bpp):
29 return _bitmap.Bitmap(bpp, width, height, pixels)
46 def Crop(bitmap, left, top, width, height):
47 return bitmap.Crop(left, top, width, height)
image_util_numpy_impl.py 22 def Height(image):
38 metadata['size'] = (Width(image), Height(image))
45 def FromRGBPixels(width, height, pixels, bpp):
47 img.resize((height, width, bpp))
67 width, height, pixels, meta = png.Reader(bytes=png_data).read_flat()
68 return FromRGBPixels(width, height, pixels, 4 if meta['alpha'] else 3)
87 for row in xrange(Height(image1)):
95 for row in xrange(Height(image1)):
107 height = max(Height(image1), Height(image2)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
image_util.py 36 def Height(image):
37 """Height of the image."""
38 return impl.Height(image)
58 def FromRGBPixels(width, height, pixels, bpp=3):
64 width, height: int, the width and height of the image.
67 return impl.FromRGBPixels(width, height, pixels, bpp)
87 is about 2-3x slower for equal images, but can be image height times faster
106 (top, left, width, height), match_count"""
109 def Crop(image, left, top, width, height)
    [all...]
  /external/lzma/CPP/Windows/Control/
CommandBar.h 33 int Height() { return CommandBar_Height(_window); }
  /external/sfntly/cpp/src/sfntly/table/bitmap/
small_glyph_metrics.cc 30 int32_t SmallGlyphMetrics::Height() {
64 int32_t SmallGlyphMetrics::Builder::Height() {
68 void SmallGlyphMetrics::Builder::SetHeight(byte_t height) {
69 InternalWriteData()->WriteByte(Offset::kHeight, height);
big_glyph_metrics.cc 30 int32_t BigGlyphMetrics::Height() {
76 int32_t BigGlyphMetrics::Builder::Height() {
80 void BigGlyphMetrics::Builder::SetHeight(byte_t height) {
81 InternalWriteData()->WriteByte(Offset::kHeight, height);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfHor4x4_unsafe_s.s 89 Height RN 3
omxVCM4P10_InterpolateLuma_s.s 41 ;// [in] roi Dimension of the interpolation region;the parameters roi.width and roi.height must
54 ;// roi.width or roi.height is not out of range {4, 8, 16}.
137 Height RN 9
153 M_PRINTF "roi.height %d\n", iHeight
197 MOV Height, #4
207 MOV Height, #4
216 MOV Height, #4
226 MOV Height, #9
237 MOV Height, #4
246 MOV Height, #
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 45 inline int Height()
72 int width, height; member in class:MosaicFrame
81 height = _height;
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
100 return (image + (width*height));
108 return (image + (width*height*2));
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
  /external/dng_sdk/source/
dng_image.h 206 /// Getter method for height of an image.
208 uint32 Height () const
  /external/webrtc/webrtc/video/
screenshare_loopback.cc 29 DEFINE_int32(height, 1110, "Video height (crops source).");
30 size_t Height() {
222 {flags::Width(), flags::Height(), flags::Fps(),
video_loopback.cc 29 DEFINE_int32(height, 480, "Video height.");
30 size_t Height() {
211 {flags::Width(), flags::Height(), flags::Fps(),
  /packages/apps/Camera2/jni/
tinyplanet.cc 30 ImageRGBA(unsigned char* image, int width, int height)
31 : image_(image), width_(width), height_(height) {
39 int Height() const {
133 JNIEXPORT void JNICALL Java_com_android_camera_tinyplanet_TinyPlanetNative_process(JNIEnv* env, jobject obj, jobject bitmap_in, jint width, jint height, jobject bitmap_out, jint output_size, jfloat scale, jfloat angle)
142 StereographicProjection(scale, angle, rgb_in, width, height, rgb_out, output_size, output_size);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 29 ImageRGBA(unsigned char* image, int width, int height)
30 : image_(image), width_(width), height_(height) {
38 int Height() const {
132 void JNIFUNCF(ImageFilterTinyPlanet, nativeApplyFilter, jobject bitmap_in, jint width, jint height, jobject bitmap_out, jint output_size, jfloat scale,jfloat angle)
141 StereographicProjection(scale,angle, rgb_in, width, height, rgb_out, output_size, output_size);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 45 inline int Height()
72 int width, height; member in class:MosaicFrame
81 height = _height;
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
100 return (image + (width*height));
108 return (image + (width*height*2));
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
  /external/ImageMagick/coders/
cut.c 79 unsigned Height;
336 Header.Height=ReadBlobLSBShort(image);
339 if (Header.Width==0 || Header.Height==0 || Header.Reserved!=0)
371 image->rows=Header.Height;
516 for (i=0; i < (int) Header.Height; i++)
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 37 // dependencies only. We also compute the resource height, which is the number
123 /// For virtual registers: Minimum height of the defining instruction.
124 /// For regunits: Height of the highest user in the trace.
125 unsigned Height;
127 LiveInReg(unsigned Reg, unsigned Height = 0) : Reg(Reg), Height(Height) {}
165 /// Returns true if the height resources have been computed from the trace
172 /// Invalidate height resources when a block below this one has changed.
196 // Data-dependency-related information. Per-instruction depth and height
    [all...]
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 237 // Check if height resources for MBB are valid and return the TBI.
358 unsigned Height = SuccTBI->InstrHeight;
359 if (!Best || Height < BestHeight)
360 Best = Succ, BestHeight = Height;
491 // The trace leaving I is now known, compute the height resources.
502 // Invalidate height resources of blocks above MBB.
509 << " height.\n");
579 "Trace is broken, height should have been invalidated.");
593 // Compute the depth and height of each instruction based on data dependencies
745 /// 1. The maximum height+depth over all instructions in the trace center block
    [all...]
  /external/pdfium/fpdfsdk/include/fxedit/
fxet_list.h 80 FX_FLOAT Height() const {
  /external/skia/tests/
CachedDecodingPixelRefTest.cpp 57 REPORTER_ASSERT(reporter, b1.height() == b2.height());
71 (b1.height() != b2.height())) {
79 for (int y = 0; y < b2.height(); ++y) {
166 static int Height() { return 10; }
180 return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(),
197 for (int y = 0; y < info.height(); ++y) {
206 for (int y = 0; y < info.height(); ++y) {
212 for (int y = 0; y < info.height(); ++y)
    [all...]

Completed in 1616 milliseconds

1 2 3