Searched defs:height (Results 151 - 175 of 2970) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer_skyline.cpp12 bool GrRectanizerSkyline::addRect(int width, int height, SkIPoint16* loc) { argument
14 (unsigned)height > (unsigned)this->height()) {
21 int bestY = this->height() + 1;
25 if (this->rectangleFits(i, width, height, &y)) {
38 this->addSkylineLevel(bestIndex, bestX, bestY, width, height);
42 fAreaSoFar += width*height;
51 bool GrRectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const { argument
62 if (y + height > this->height()) {
[all...]
H A DGrStencilBuffer.cpp22 // we should never have more than one stencil buffer with same combo of (width,height,samplecount)
23 void gen_cache_id(int width, int height, int sampleCnt, GrCacheID* cacheID) { argument
28 keyData[1] = height;
37 int height,
43 gen_cache_id(width, height, sampleCnt, &id);
36 ComputeKey(int width, int height, int sampleCnt) argument
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DSkGLContextHelper.cpp31 int height) {
64 width, height));
68 width, height));
98 width, height));
108 width, height));
114 SK_GL(*this, Viewport(0, 0, width, height));
30 init(GrGLStandard forcedGpuAPI, int width, int height) argument
/external/chromium_org/third_party/skia/src/images/
H A DSkPageFlipper.cpp22 SkPageFlipper::SkPageFlipper(int width, int height) { argument
24 fHeight = height;
28 fDirty0->setRect(0, 0, width, height);
32 void SkPageFlipper::resize(int width, int height) { argument
34 fHeight = height;
37 fDirty1->setRect(0, 0, width, height);
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRect_opts_SSE2.cpp17 int width, int height,
23 while (--height >= 0) {
51 int width, int height,
57 while (--height >= 0) {
114 int width, int height,
116 if (0 == height || 0 == width || 0 == color) {
123 BlitRect32_OpaqueNarrow_SSE2(destination, width, height,
126 BlitRect32_OpaqueWide_SSE2(destination, width, height,
130 SkBlitRow::ColorRect32(destination, width, height, rowBytes, color);
16 BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination, int width, int height, size_t rowBytes, uint32_t color) argument
50 BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination, int width, int height, size_t rowBytes, uint32_t color) argument
113 ColorRect32_SSE2(SkPMColor* destination, int width, int height, size_t rowBytes, uint32_t color) argument
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsRect.h52 double height() const { function in struct:SkDRect
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGSVG.cpp17 SVG_ATTRIBUTE(height),
37 SkScalar height, width; local
39 const char* hSuffix = SkParse::FindScalar(f_height.c_str(), &height);
41 height = SkScalarMulDiv(height, SK_Scalar1 * 72, SK_Scalar1 * 96);
48 box.fTop = SkScalarDiv(viewBox[1], height);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
/external/chromium_org/third_party/skia/tests/
H A DBitmapTest.cpp14 const int height = 10; local
15 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
71 for (int height = 0; height < 2; ++height) {
73 bool setConf = bm.setInfo(SkImageInfo::MakeN32Premul(width, height));
78 REPORTER_ASSERT(reporter, SkToBool(width & height) != bm.empty());
H A DFillPathTest.cpp33 int height = 100; local
36 clip.set(0, height - expected_lines, width, height);
38 path.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
/external/chromium_org/third_party/skia/tools/
H A Dskpmaker.cpp23 DEFINE_int32(height, 200, "Height of canvas to create.");
28 // Create a 'width' by 'height' skp with a 'border'-wide black border around
30 static void make_skp(SkScalar width, SkScalar height, SkScalar border, SkColor color, argument
33 SkCanvas* canvas = recorder.beginRecording(width, height, NULL, 0);
37 SkRect r = SkRect::MakeWH(width, height);
62 SkDebugf("--height must be >0\n");
/external/chromium_org/third_party/webrtc/
H A Dconfig.cc35 ss << ", height: " << height; local
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddiffer.h31 // Create a differ that operates on bitmaps with the specified width, height
33 Differ(int width, int height, int bytes_per_pixel, int stride);
37 int height() { return height_; } function in class:webrtc::Differ
59 // to check is specified by the |width| and |height| values.
61 // height are multiples of kBlockSize, then this will never be called.
65 int width, int height);
H A Dscreen_capturer_mac_unittest.cc68 int height = config.pixel_bounds.height(); local
71 EXPECT_EQ(height, frame->size().height());
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dcursor_unittest.cc60 int height = bitmap_info.bmHeight; local
61 EXPECT_TRUE(DesktopSize(width, height).equals(mouse_shape->image()->size()));
64 int size = width * height;
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Dvideo_capture_delay.h22 int32_t height; member in struct:webrtc::videocapturemodule::DelayValue
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dvideo_source.cc43 VideoSource::VideoSource(std::string fileName, uint16_t width, uint16_t height, argument
48 _height(height),
53 assert(height > 0);
/external/chromium_org/third_party/webrtc/modules/video_coding/utility/
H A Dquality_scaler.h23 int height; member in struct:webrtc::QualityScaler::Resolution
/external/chromium_org/third_party/webrtc/test/gl/
H A Dgl_renderer.cc43 void GlRenderer::ResizeViewport(size_t width, size_t height) { argument
45 glViewport(0, 0, width, height);
54 void GlRenderer::ResizeVideo(size_t width, size_t height) { argument
57 height_ = height;
59 buffer_size_ = width * height * 4; // BGRA
68 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_BGRA,
77 static_cast<size_t>(frame.height()) != height_) {
78 ResizeVideo(frame.width(), frame.height());
/external/chromium_org/third_party/webrtc/test/
H A Dvideo_capturer.cc34 size_t height,
37 VcmCapturer* vcm_capturer = VcmCapturer::Create(input, width, height, fps);
45 FrameGeneratorCapturer::Create(input, width, height, fps, clock);
32 Create(VideoSendStreamInput* input, size_t width, size_t height, int fps, Clock* clock) argument
/external/chromium_org/third_party/webrtc/tools/frame_editing/
H A Dframe_editing.cc25 " --in_path=input.yuv --width=320 --height=240 --f=60 --interval=1 --l=120"
31 "--height(int): Height in pixels of the frames in the input file."
70 parser.SetFlag("height", "-1");
85 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); local
102 if (width <= 0 || height <= 0) {
103 fprintf(stderr, "Error: width or height cannot be <= 0!\n");
106 return webrtc::EditFrames(in_path, width, height, first_frame_to_cut,
H A Dframe_editing_lib.cc24 int EditFrames(const string& in_path, int width, int height, argument
39 int frame_length = CalcBufferSize(kI420, width, height);
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_image_process.cc36 unsigned int height)
31 Transform(int size, unsigned char* frame_buffer, int64_t ntp_time_ms, unsigned int timestamp, unsigned int width, unsigned int height) argument
H A Dvie_file_based_comparison_tests.cc26 int height,
38 height)) {
91 int height,
102 if (!fake_camera.StartCameraInNewThread(i420_video_file, width, height)) {
121 ::TestFullStack(interfaces, capture_id, video_channel, width, height,
23 TestCallSetup( const std::string& i420_video_file, int width, int height, ViEToFileRenderer* local_file_renderer, ViEToFileRenderer* remote_file_renderer) argument
88 TestFullStack( const std::string& i420_video_file, int width, int height, int bit_rate_kbps, ProtectionMethod protection_method, const NetworkParameters& network, ViEToFileRenderer* local_file_renderer, ViEToFileRenderer* remote_file_renderer, FrameDropDetector* frame_drop_detector) argument
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dvie_external_render_filter.h32 unsigned int height) {
33 if (width != width_ || height_ != height) {
34 renderer_->FrameSizeChange(width, height, 1);
36 height_ = height;
27 Transform(int size, unsigned char* frame_buffer, int64_t ntp_time_ms, unsigned int timestamp, unsigned int width, unsigned int height) argument
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/
H A DViewAndroidDelegate.java25 * @param height The height of the anchor view.
27 void setAnchorViewPosition(View view, float x, float y, float width, float height); argument

Completed in 3302 milliseconds

1234567891011>>