| /external/skia/src/core/ |
| SkCoreBlitters.h | 68 void blitV(int x, int y, int height, SkAlpha alpha) override; 69 void blitRect(int x, int y, int width, int height) override; 79 void blitV(int x, int y, int height, SkAlpha alpha) override; 80 void blitRect(int x, int y, int width, int height) override; 120 void blitV(int x, int y, int height, SkAlpha alpha) override; 121 void blitRect(int x, int y, int width, int height) override; 170 void blitV(int x, int y, int height, SkAlpha alpha) override; 171 void blitRect(int x, int y, int width, int height) override;
|
| SkSpecialImage.h | 43 int height() const { return fSubset.height(); } function in class:SkSpecialImage
|
| SkSpecialSurface.h | 33 int height() const { return fSubset.height(); } function in class:SkSpecialSurface
|
| /external/skia/src/gpu/ |
| GrRect.h | 36 int height() const { return fBottom - fTop; } function in struct:GrIRect16 37 int area() const { return this->width() * this->height(); }
|
| GrResourceProvider.cpp | 161 int width, int height, 167 desc.fHeight = height; 193 int height = rt->height(); local 197 height = SkNextPow2(height); 201 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height, 207 stencil = this->gpu()->createStencilAttachmentForRenderTarget(rt, width, height);
|
| /external/skia/src/gpu/text/ |
| GrFontScaler.h | 55 bool getPackedGlyphImage(const SkGlyph&, int width, int height, int rowBytes, 58 bool getPackedGlyphDFImage(const SkGlyph&, int width, int height, void* image);
|
| /external/skia/src/sfnt/ |
| SkOTTable_EBDT.h | 30 SK_OT_BYTE height; member in struct:SkOTTableEmbeddedBitmapData::BigGlyphMetrics 41 SK_OT_BYTE height; member in struct:SkOTTableEmbeddedBitmapData::SmallGlyphMetrics
|
| /external/skia/src/utils/mac/ |
| SkCreateCGImageRef.cpp | 134 const int h = bitmap->height(); 166 CGRect r = CGRectMake(0, 0, bm.width(), bm.height()); 169 CGContextTranslateCTM(cg, x, r.size.height + y); 265 CGContextRef cg = CGBitmapContextCreate(pixels, info.width(), info.height(), bitsPerComponent, 276 CGContextDrawImage(cg, CGRectMake(0, 0, info.width(), info.height()), image); 283 const int height = scaleToFit ? scaleToFit->height() : SkToInt(CGImageGetHeight(image)); local 284 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
|
| /external/skia/src/views/animated/ |
| SkImageView.cpp | 159 dst.set(0, 0, this->width(), this->height()); 235 SkScalar width, height; local 240 SkScalarIsNaN(height = fData.fAnim->getScalar("dimensions", "y"))) 244 height = this->height(); 250 height = SkIntToScalar(fData.fBitmap->height()); 252 bounds->set(0, 0, width, height);
|
| /external/webrtc/talk/app/webrtc/ |
| androidvideocapturer.cc | 65 captured_frame_.height = buffer->height(); 73 captured_frame_.height = 0; 107 RTC_CHECK_EQ(cropped_input_height, buffer_->height()); 150 !json_value["height"].isNull() && 154 json_value["height"].asInt(), 174 << capture_format.height << "@" << fps; 180 delegate_->Start(capture_format.width, capture_format.height, fps, this); 234 int width, int height, int fps) { 238 width, height, cricket::VideoFormat::FpsToInterval(fps), current.fourcc) [all...] |
| androidvideocapturer.h | 46 virtual void Start(int width, int height, int framerate, 53 // Must returns a JSON string "{{width=xxx, height=xxx, framerate = xxx}}" 76 void OnOutputFormatRequest(int width, int height, int fps);
|
| /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/ |
| UIImage+ARDUtilities.m | 22 CGRect bounds = CGRectMake(0, 0, image.size.width, image.size.height);
|
| /external/webrtc/webrtc/modules/desktop_capture/ |
| desktop_frame_win.cc | 39 bmi.bmiHeader.biHeight = -size.height(); 44 bmi.bmiHeader.biSizeImage = bytes_per_row * size.height();
|
| /external/webrtc/webrtc/modules/video_capture/ios/ |
| device_info_ios_objc.mm | 61 capability.height = 288; 70 capability.height = 480; 79 capability.height = 720; 88 capability.height = 1080;
|
| /external/webrtc/webrtc/modules/video_coding/codecs/i420/include/ |
| i420.h | 81 uint16_t height); 95 // The user must notify the codec of width and height values. 143 uint16_t* height);
|
| /external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
| vp8_sequence_coder.cc | 90 int height = strtol((parser->GetFlag("h")).c_str(), NULL, 10); local 93 if (width <= 0 || height <= 0 || framerate <= 0) { 141 inst.height = height; 149 size_t length = webrtc::CalcBufferSize(webrtc::kI420, width, height); 163 input_frame.CreateEmptyFrame(width, height, width, half_width, half_width); 170 height, 0, webrtc::kVideoRotation_0, &input_frame); 188 inst.width, inst.height, &psnr_result, &ssim_result)); 206 " - height(int): The height of the input file. Default: 288\n [all...] |
| /external/webrtc/webrtc/modules/video_coding/ |
| encoded_frame.h | 45 void SetEncodedSize(uint32_t width, uint32_t height) { 47 _encodedHeight = height;
|
| /external/webrtc/webrtc/modules/video_render/android/ |
| video_render_android_native_opengl2.h | 48 jint height); 49 jint CreateOpenGLNative(int width, int height);
|
| /external/webrtc/webrtc/tools/frame_editing/ |
| frame_editing_lib.cc | 25 int EditFrames(const string& in_path, int width, int height, 40 size_t frame_length = CalcBufferSize(kI420, width, height);
|
| /frameworks/av/cmds/screenrecord/ |
| TextRenderer.h | 51 void setScreenSize(uint32_t width, uint32_t height) { 53 mScreenHeight = height; 104 // Returns the font's glyph height. This is the full pixel height of the
|
| /frameworks/av/cmds/stagefright/ |
| recordvideo.cpp | 50 fprintf(stderr, " -t height in pixels (default: 144)\n"); 62 DummySource(int width, int height, int nFrames, int fps, int colorFormat) 64 mHeight(height), 68 mSize((width * height * 3) / 2) { 169 int height = 144; local 225 height = atoi(optarg); 273 new DummySource(width, height, nFrames, frameRateFps, colorFormat); 288 enc_meta->setInt32("height", height); 292 enc_meta->setInt32("slice-height", height) [all...] |
| /frameworks/av/media/ndk/ |
| NdkImagePriv.h | 36 int32_t width, int32_t height, int32_t numPlanes); 52 media_status_t getHeight(/*out*/int32_t* height) const;
|
| /frameworks/base/core/java/android/app/ |
| IActivityContainer.aidl | 29 void setSurface(in Surface surface, int width, int height, int density);
|
| /frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
| MarshalQueryableSize.java | 48 int height = buffer.getInt(); local 50 return new Size(width, height);
|
| MarshalQueryableSizeF.java | 50 float height = buffer.getFloat(); local 52 return new SizeF(width, height);
|