Searched refs:height (Results 51 - 75 of 838) sorted by relevance

1234567891011>>

/haiku/headers/private/graphics/
H A Dvideo_overlay.h35 uint16 height; /* height in lines */ member in struct:__anon3
45 uint16 height; member in struct:__anon4
66 uint16 height; /* un-clipped height of the overlay window */ member in struct:__anon7
96 overlay_uint16_minmax height; member in struct:__anon10
111 typedef const overlay_buffer *(*allocate_overlay_buffer)(color_space cs, uint16 width, uint16 height);
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamSensor.cpp74 CamSensor::AcceptVideoFrame(uint32 &width, uint32 &height) argument
79 if (height < 1)
80 height = MaxHeight();
83 if (height > (uint32)MaxHeight())
84 height = MaxHeight();
/haiku/src/system/boot/platform/riscv/
H A Dvideo.cpp74 uint16 width, uint16 height, uint16 imageWidth, uint16 left, uint16 top)
93 = 4 * gFramebuf.stride * gFramebuf.height;
95 gKernelArgs.frame_buffer.height = gFramebuf.height;
98 gKernelArgs.frame_buffer.enabled = gFramebuf.width > 0 && gFramebuf.height > 0;
73 platform_blit4(addr_t frameBuffer, const uint8* data, uint16 width, uint16 height, uint16 imageWidth, uint16 left, uint16 top) argument
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_c.cpp8 gfx_conv_null(AVFrame *in, AVFrame *out, int width, int height) argument
10 memcpy(out->data[0], in->data[0], height * in->linesize[0]);
15 gfx_conv_yuv410p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
32 // memcpy(out->data[0], in->data[0], height * in->linesize[0]);
37 for (i = 0; i < height; i++) {
78 gfx_conv_yuv411p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
82 gfx_conv_yuv410p_ycbcr422_c(in, out, width, height);
87 gfx_conv_yuv420p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
102 // memcpy(out->data[0], in->data[0], height * in->linesize[0]);
107 for (int i = 0; i < height;
160 gfx_conv_yuv420p10le_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
215 gfx_conv_yuv410p_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
254 gfx_conv_yuv411p_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
261 gfx_conv_YCbCr422_RGB32_c(AVFrame *in, AVFrame *out, int width, int height) argument
301 gfx_conv_GBRP_RGB32_c(AVFrame *in, AVFrame *out, int width, int height) argument
[all...]
/haiku/src/system/boot/platform/generic/
H A Dvideo_splash.cpp92 * gKernelArgs.frame_buffer.height * 4u,
140 int height = min_c(kSplashLogoHeight + iconsHalfHeight, local
141 gKernelArgs.frame_buffer.height);
146 int y = (gKernelArgs.frame_buffer.height - height) * placementY / 100;
148 height = min_c(kSplashLogoHeight, gKernelArgs.frame_buffer.height);
153 video_blit_image(frameBuffer, uncompressedLogo, width, height,
192 height = min_c(kSplashLogoHeight + iconsHalfHeight,
193 gKernelArgs.frame_buffer.height);
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DVideoIn.cpp42 int width, height; member in struct:__anon2577::__anon2578
46 int width, height; member in struct:__anon2577::__anon2579
50 int width, height; member in struct:__anon2577::__anon2580
148 video_in_capture_mode mode, int width, int height)
153 mode == C_VIDEO_IN_BOB ? "C_VIDEO_IN_BOB" : "C_VIDEO_IN_WEAVE", width, height);
163 height = Clamp(height, 0, kTiming[standard].active.height / 2);
167 height = Clamp(height,
147 Start(video_in_source source, video_in_standard standard, video_in_capture_mode mode, int width, int height) argument
[all...]
/haiku/src/kits/interface/
H A DLayoutUtils.cpp128 FixSizeConstraints(min.height, max.height, preferred.height);
139 size.height = layoutSize.height;
171 if (maxSize.height < frame.Height()
173 frame.top += (int)((frame.Height() - maxSize.height)
175 frame.bottom = frame.top + maxSize.height;
189 // The view has height for width, so we do the horizontal alignment
190 // ourselves and restrict the height ma
[all...]
H A DViewPort.cpp94 // TODO: Support height-for-width!
103 // TODO: Support height-for-width!
129 layoutSize.height = std::min(layoutSize.height, childMax.height);
133 layoutSize.height = std::max(layoutSize.height, childMin.height);
135 // TODO: Support height-for-width!
141 _UpdateScrollBar(fViewPort->ScrollBar(B_VERTICAL), viewSize.height,
[all...]
/haiku/src/add-ons/accelerants/neomagic/
H A DCursor.c13 status_t SET_CURSOR_SHAPE(uint16 width, uint16 height, uint16 hot_x, uint16 hot_y, uint8 *andMask, uint8 *xorMask) argument
15 LOG(4,("SET_CURSOR_SHAPE: width %d, height %d, hot_x %d, hot_y %d\n",
16 width, height, hot_x, hot_y));
18 if ((width != 16) || (height != 16))
22 else if ((hot_x >= width) || (hot_y >= height))
32 si->cursor.height = height;
/haiku/src/preferences/screen/
H A DRefreshWindow.cpp51 float width, height; local
52 fRefreshSlider->GetPreferredSize(&width, &height);
53 fRefreshSlider->ResizeTo(rect.Width(), height);
75 height = fRefreshSlider->Frame().bottom + button->Bounds().Height() + 20.0f;
77 ResizeTo(width, height);
78 MoveTo(position.x - width / 2.5f, position.y - height / 1.9f);
H A DMonitorView.h29 void SetResolution(int32 width, int32 height);
30 void SetMaxResolution(int32 width, int32 height);
/haiku/src/apps/deskbar/
H A DBarMenuTitle.cpp50 TBarMenuTitle::TBarMenuTitle(float width, float height, const BBitmap* icon, argument
55 fHeight(height),
74 TBarMenuTitle::SetContentSize(float width, float height) argument
77 fHeight = height;
82 TBarMenuTitle::GetContentSize(float* width, float* height) argument
85 *height = fHeight;
/haiku/src/apps/sudoku/
H A DProgressWindow.cpp42 float width, height; local
43 fStatusBar->GetPreferredSize(&width, &height);
44 fStatusBar->ResizeTo(rect.Width(), height);
49 rect.top += height + 8;
56 height = button->Frame().bottom;
59 ResizeTo(Bounds().Width(), height + 8);
/haiku/src/preferences/printers/
H A DJobListView.cpp188 float height = (fontHeight.ascent + fontHeight.descent local
190 BRect rect(0, 0, height, height);
257 font_height height; local
258 font->GetHeight(&height);
260 SetHeight((height.ascent + height.descent + height.leading) * 2.0 + 8.0);
272 font_height height; local
273 font.GetHeight(&height);
[all...]
/haiku/src/add-ons/print/drivers/canon_lips/lips4/
H A DLips4.cpp127 int height = rc.bottom - rc.top + 1; local
134 if (y + height > page_height)
135 height = page_height - y;
137 rc.bottom = height - 1;
139 DBGMSG(("height = %d\n", height));
153 int height = rc.bottom - rc.top + 1; local
154 int in_size = widthByte * height;
160 DBGMSG(("height = %d\n", height));
469 _RasterGraphics(int compression_size, int widthbyte, int height, int compression_method, const uchar* buffer) argument
[all...]
/haiku/headers/private/kernel/
H A Dconsole.h24 void (*fill_glyph)(int32 x, int32 y, int32 width, int32 height, uint8 glyph, uint8 attr);
25 void (*blit)(int32 srcx, int32 srcy, int32 width, int32 height, int32 destx, int32 desty);
/haiku/src/apps/bootmanager/
H A DUninstallPage.cpp41 UninstallPage::FrameResized(float width, float height) argument
43 WizardPageView::FrameResized(width, height);
/haiku/src/apps/cortex/InfoView/
H A DInfoView.h100 float height);
106 float *height);
/haiku/src/apps/cortex/ParameterView/
H A DParameterWindow.h111 float height);
125 float height);
/haiku/src/apps/cortex/TipManager/
H A DTipView.cpp125 float height) {
127 _inherited::FrameResized(width, height);
128 _updateLayout(width, height);
181 float height) {
186 m_offset.y = (height - _textHeight()) / 2;
233 float height = m_fontHeight.ascent + m_fontHeight.descent; local
235 height += (m_lineSet.size()-1) *
238 return height;
123 FrameResized( float width, float height) argument
179 _updateLayout( float width, float height) argument
H A DTipView.h75 float height);
105 float height);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DSwatchValueView.cpp19 float height)
20 : SwatchView(name, message, target, color, width, height)
14 SwatchValueView(const char* name, BMessage* message, BHandler* target, rgb_color color, float width, float height) argument
/haiku/src/servers/app/drawing/
H A DMallocBuffer.cpp14 uint32 height)
17 fHeight(height)
13 MallocBuffer(uint32 width, uint32 height) argument
/haiku/src/apps/midiplayer/
H A DScopeView.cpp171 int32 height = (int32) Bounds().Height(); local
183 int32 f = (height << 16) / 65535;
184 int32 dy = height / 2 + 1;
202 font_height height; local
203 GetFontHeight(&height);
206 float stringHeight = height.ascent + height.descent;
209 float y = height.ascent + (Bounds().Height() - stringHeight) / 2;
/haiku/src/system/boot/loader/
H A Dpager.cpp118 int32 height = console_height(); local
136 while (screenLine + 1 < height) {
150 console_set_cursor(0, height - 1);
152 int32 bottomLine = std::min(topLine + height - 2, lineCount - 1);
186 topLine -= height - 1;
191 topLine += height - 1;
205 if (topLine > lineCount - (height - 1))
206 topLine = lineCount - (height - 1);

Completed in 99 milliseconds

1234567891011>>