Searched refs:height (Results 1 - 25 of 1081) sorted by relevance

1234567891011>>

/haiku-fatelf/headers/os/interface/
H A DSize.h22 float height; member in class:BSize
26 inline BSize(float width, float height);
31 inline void Set(float width, float height);
33 inline void SetHeight(float height);
51 height(B_SIZE_UNSET)
59 height(other.height)
65 BSize::BSize(float width, float height) argument
67 height(height)
87 Set(float width, float height) argument
102 SetHeight(float height) argument
[all...]
/haiku-fatelf/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_mmx.h8 void gfx_conv_null_mmx(AVFrame *in, AVFrame *out, int width, int height);
11 void gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
12 void gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
13 void gfx_conv_yuv420p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height);
14 void gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
15 void gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
16 void gfx_conv_yuv422p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height);
19 void gfx_conv_yuv422_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height);
20 void gfx_conv_yuv422_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height);
21 void gfx_conv_yuv422_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height);
[all...]
H A Dgfx_conv_c.h12 void gfx_conv_null(AVFrame *in, AVFrame *out, int width, int height);
16 int height);
18 int height);
20 int height);
24 int height);
26 int height);
28 int height);
30 int height);
H A Dgfx_util.h31 typedef void (*gfx_convert_func) (AVFrame *in, AVFrame *out, int width, int height);
35 gfx_convert_func resolve_colorspace(color_space cs, PixelFormat pixelFormat, int width, int height);
/haiku-fatelf/headers/libs/agg/util/
H A Dagg_color_conv.h40 unsigned height = src->height(); local
43 if(dst->height() < height) height = dst->height();
48 for(y = 0; y < height; y++)
/haiku-fatelf/src/apps/sudoku/
H A DCenteredViewContainer.cpp28 CenteredViewContainer::FrameResized(float width, float height) argument
30 BView::FrameResized(width, height);
31 _CenterTarget(width, height);
34 void CenteredViewContainer::_CenterTarget(float width, float height) argument
36 float size = width < height ? width : height;
38 float top = floor((height - size) / 2);
H A DCenteredViewContainer.h19 void FrameResized(float width, float height);
22 void _CenterTarget(float width, float height);
/haiku-fatelf/src/add-ons/opengl/swpipe/
H A DSoftwareWinsys.h23 unsigned height; member in struct:haiku_displaytarget
/haiku-fatelf/src/preferences/network_old/
H A DInterfaceWin.cpp20 float width,height; local
23 fName->GetPreferredSize(&width,&height);
24 fName->ResizeTo(width,height);
33 float ypos = 5 + height + 20;
38 fEnabled->GetPreferredSize(&width,&height);
39 fEnabled->ResizeTo(width,height);
42 ypos += height + 10;
46 fDHCP->GetPreferredSize(&width,&height);
47 fDHCP->ResizeTo(width,height);
50 ypos += height
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dbit-ops.h86 * @param height the number of integers in the input divided by 8
94 extern void stp_split(int height, int bits, int n, const unsigned char *in,
100 extern void stp_split_2(int height, int bits, const unsigned char *in,
106 extern void stp_split_4(int height, int bits, const unsigned char *in,
115 * @param height the number of integers in the input divided by 8
122 extern void stp_unpack(int height, int bits, int n, const unsigned char *in,
128 extern void stp_unpack_2(int height, int bits, const unsigned char *in,
134 extern void stp_unpack_4(int height, int bits, const unsigned char *in,
141 extern void stp_unpack_8(int height, int bits, const unsigned char *in,
150 extern void stp_unpack_16(int height, in
[all...]
/haiku-fatelf/src/tests/kits/interface/menu/menuworld/
H A DBitmapMenuItem.h39 void GetContentSize(float* width, float* height);
45 void GetBitmapSize(float* width, float* height);
/haiku-fatelf/src/preferences/screen/
H A DMonitorView.cpp28 MonitorView::MonitorView(BRect rect, const char *name, int32 width, int32 height) argument
33 fHeight(height),
111 float height = ceilf(fontHeight.ascent + fontHeight.descent); local
117 if (width > innerRect.Width() || height > innerRect.Height())
124 innerRect.top + fontHeight.ascent + (innerRect.Height() - height) / 2));
129 MonitorView::SetResolution(int32 width, int32 height) argument
131 if (fWidth == width && fHeight == height)
135 fHeight = height;
143 MonitorView::SetMaxResolution(int32 width, int32 height) argument
145 if (fMaxWidth == width && fMaxHeight == height)
161 int32 width, height; local
208 float height = maxHeight * factorY; local
[all...]
/haiku-fatelf/headers/libs/agg/
H A Dagg_rendering_buffer_dynarow.h62 rendering_buffer_dynarow(unsigned width, unsigned height, argument
64 m_rows(height),
66 m_height(height),
69 memset(&m_rows[0], 0, sizeof(row_data) * height);
74 void init(unsigned width, unsigned height, unsigned byte_width) argument
81 if(width && height)
84 m_height = height;
86 m_rows.resize(height);
87 memset(&m_rows[0], 0, sizeof(row_data) * height);
93 unsigned height() cons function in class:agg::rendering_buffer_dynarow
[all...]
H A Dagg_rendering_buffer.h53 row_ptr_cache(T* buf, unsigned width, unsigned height, int stride) : argument
60 attach(buf, width, height, stride);
64 void attach(T* buf, unsigned width, unsigned height, int stride) argument
68 m_height = height;
70 if(height > m_rows.size())
72 m_rows.resize(height);
79 row_ptr = m_buf - int(height - 1) * stride;
84 while(height--)
95 unsigned height() const { return m_height; } function in class:agg::row_ptr_cache
115 unsigned h = height();
[all...]
/haiku-fatelf/src/add-ons/translators/hpgs/
H A DConfigView.cpp29 float height = fontHeight.descent + fontHeight.ascent + fontHeight.leading; local
31 BRect rect(10, 10, 200, 10 + height);
38 rect.OffsetBy(0, height + 10);
50 height = fontHeight.descent + fontHeight.ascent + fontHeight.leading;
52 rect.OffsetBy(0, height + 5);
58 rect.OffsetBy(0, height + 10);
64 rect.OffsetBy(0, height + 5);
/haiku-fatelf/src/apps/deskbar/
H A DBarMenuTitle.h52 TBarMenuTitle(float width, float height, const BBitmap* icon,
56 void SetWidthHeight(float width, float height);
63 void GetContentSize(float* width, float* height);
/haiku-fatelf/src/kits/interface/
H A DCardLayout.cpp142 float minHeight = fMin.height;
143 float maxHeight = fMax.height;
144 float preferredHeight = fPreferred.height;
194 size.height = max_c(size.height, fMin.height);
288 fMin.height = 0;
290 fMax.height = B_SIZE_UNLIMITED;
292 fPreferred.height = 0;
303 fMin.height
[all...]
/haiku-fatelf/headers/private/graphics/common/
H A Dcompute_display_timing.h17 status_t compute_display_timing(uint32 width, uint32 height, float refresh,
/haiku-fatelf/src/apps/mediaplayer/interface/
H A DTransportControlGroup.cpp192 size.height = B_SIZE_UNSET;
235 *_height = size.height;
556 ResizeTo(Bounds().Width(), GroupLayout()->MinSize().height);
634 TransportControlGroup::_CreateSkipBackwardsShape(float height) const
638 float stopWidth = ceilf(height / 6);
640 shape->MoveTo(BPoint(-stopWidth, height));
641 shape->LineTo(BPoint(0, height));
646 shape->MoveTo(BPoint(0, height / 2));
647 shape->LineTo(BPoint(height, height));
780 add_bow(BShape* shape, float offset, float size, float height, float step) argument
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/foomatic/
H A Dprinter_margins.c49 int width, height, bottom, left, top, right; local
83 height = papersize->height;
87 stp_get_media_size(pv, &width, &height);
94 if (bottom > height)
95 bottom = height;
99 bottom = height - bottom;
100 top = height - top;
105 top = height - top;
107 height
[all...]
/haiku-fatelf/src/system/boot/platform/raspberrypi_arm/
H A Darch_framebuffer_bcm2708.cpp24 uint32 height; member in struct:framebuffer_config
48 virtual status_t SetVideoMode(int width, int height, int depth);
100 ArchFramebufferBCM2708::SetVideoMode(int width, int height, int depth) argument
105 sFramebufferConfig.height = height;
107 sFramebufferConfig.virtual_height = sFramebufferConfig.height;
147 && sFramebufferConfig.height == (uint32)height
149 && sFramebufferConfig.virtual_height == sFramebufferConfig.height
155 * sFramebufferConfig.height);
[all...]
/haiku-fatelf/src/apps/cortex/InfoView/
H A DInfoWindow.h64 float height);
75 float height);
/haiku-fatelf/src/apps/mediaplayer/support/
H A DStackBlurFilter.h48 unsigned width, unsigned height,
52 unsigned width, unsigned height,
/haiku-fatelf/src/preferences/mail/
H A DCenterContainer.h19 virtual void FrameResized(float width, float height);
20 virtual void GetPreferredSize(float *width, float *height);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfPreviewImageAttribute.cpp61 Xdr::write <StreamIO> (os, _value.height());
63 int numPixels = _value.width() * _value.height();
80 int width, height; local
83 Xdr::read <StreamIO> (is, height);
85 PreviewImage p (width, height);
87 int numPixels = p.width() * p.height();

Completed in 315 milliseconds

1234567891011>>