Searched refs:width (Results 1 - 25 of 1007) sorted by relevance

1234567891011>>

/haiku/headers/libs/agg/util/
H A Dagg_color_conv.h39 unsigned width = src->width(); local
42 if(dst->width() < width) width = dst->width();
45 if(width)
50 copy_row_functor(dst->row(y), src->row(y), width);
60 unsigned width,
63 copy_row_functor(dst, src, width);
58 color_conv_row(unsigned char* dst, const unsigned char* src, unsigned width, CopyRow copy_row_functor) argument
[all...]
H A Dagg_color_conv_rgb8.h47 unsigned width) const
56 while(--width);
74 unsigned width) const
84 while(--width);
116 unsigned width) const
126 while(--width);
149 unsigned width) const
158 while(--width);
181 unsigned width) const
192 while(--width);
[all...]
/haiku/src/system/libroot/posix/wchar/
H A Dwcswidth.c12 int width = 0; local
19 width += w;
22 return width;
/haiku/headers/os/interface/
H A DSize.h19 float width; member in class:BSize
24 inline BSize(float width, float height);
29 inline void Set(float width, float height);
30 inline void SetWidth(float width);
48 : width(B_SIZE_UNSET),
56 : width(other.width),
63 BSize::BSize(float width, float height) argument
64 : width(width),
85 Set(float width, float height) argument
93 SetWidth(float width) argument
[all...]
/haiku/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, in
[all...]
H A Dgfx_conv_c.h12 void gfx_conv_null(AVFrame *in, AVFrame *out, int width, int height);
15 void gfx_conv_yuv410p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
17 void gfx_conv_yuv411p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
19 void gfx_conv_yuv420p_ycbcr422_c(AVFrame *in, AVFrame *out, int width,
23 void gfx_conv_yuv420p10le_rgb32_c(AVFrame *in, AVFrame *out, int width,
25 void gfx_conv_yuv410p_rgb32_c(AVFrame *in, AVFrame *out, int width,
27 void gfx_conv_yuv411p_rgb32_c(AVFrame *in, AVFrame *out, int width,
29 void gfx_conv_YCbCr420p_RGB32_c(AVFrame *in, AVFrame *out, int width,
31 void gfx_conv_YCbCr422_RGB32_c(AVFrame *in, AVFrame *out, int width,
33 void gfx_conv_GBRP_RGB32_c(AVFrame *in, AVFrame *out, int width,
[all...]
H A Dgfx_conv_mmx.cpp6 int width);
8 int width);
10 int width);
14 void *fromVPtr, void *toPtr, int width);
16 void *fromVPtr, void *toPtr, int width);
18 void *fromVPtr, void *toPtr, int width);
23 gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
28 gfx_conv_YCbCr420p_RGB32_c(in, out, width, height);
44 _Convert_YUV420P_RGBA32_SSE(ybase, ubase, vbase, rgbbase, width);
49 _Convert_YUV420P_RGBA32_SSE(ybase, ubase, vbase, rgbbase, width);
59 gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
95 gfx_conv_yuv420p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
131 gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
161 gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
191 gfx_conv_yuv422p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
221 gfx_conv_yuv422_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height) argument
242 gfx_conv_yuv422_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height) argument
263 gfx_conv_yuv422_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height) argument
[all...]
H A Dgfx_util.h38 typedef void (*gfx_convert_func) (AVFrame *in, AVFrame *out, int width, int height);
42 gfx_convert_func resolve_colorspace(color_space cs, AVPixelFormat pixelFormat, int width, int height);
/haiku/headers/private/kernel/arch/arm/
H A Dreg.h34 #define RMWREG64(addr, startbit, width, val) *REG64(addr) = (*REG64(addr) & ~(((1<<(width)) - 1) << (startbit))) | ((val) << (startbit))
35 #define RMWREG32(addr, startbit, width, val) *REG32(addr) = (*REG32(addr) & ~(((1<<(width)) - 1) << (startbit))) | ((val) << (startbit))
36 #define RMWREG16(addr, startbit, width, val) *REG16(addr) = (*REG16(addr) & ~(((1<<(width)) - 1) << (startbit))) | ((val) << (startbit))
37 #define RMWREG8(addr, startbit, width, val) *REG8(addr) = (*REG8(addr) & ~(((1<<(width)) - 1) << (startbit))) | ((val) << (startbit))
/haiku/headers/cpp/
H A Dstream.h53 char* chr(char ch, int width = 0);
54 char* str(const char* s, int width = 0);
/haiku/src/tests/kits/interface/menu/menuworld/
H A DBitmapMenuItem.h39 void GetContentSize(float* width, float* height);
45 void GetBitmapSize(float* width, float* height);
/haiku/src/preferences/screen/
H A DMonitorView.cpp28 MonitorView::MonitorView(BRect rect, const char *name, int32 width, int32 height) argument
32 fWidth(width),
113 float width = StringWidth(text); local
114 if (width > innerRect.Width() || height > innerRect.Height())
120 DrawString(text, BPoint(innerRect.left + (innerRect.Width() - width) / 2,
126 MonitorView::SetResolution(int32 width, int32 height) argument
128 if (fWidth == width && fHeight == height)
131 fWidth = width;
140 MonitorView::SetMaxResolution(int32 width, int32 height) argument
142 if (fMaxWidth == width
164 int32 width, height; local
210 float width = maxWidth * factorX; local
[all...]
/haiku/src/system/libroot/posix/musl/search/
H A Dlsearch.c4 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
7 char (*p)[width] = base;
15 return memcpy(p[n], key, width);
19 size_t width, int (*compar)(const void *, const void *))
21 char (*p)[width] = (void *)base;
18 lfind(const void *key, const void *base, size_t *nelp, size_t width, int (*compar)(const void *, const void *)) argument
/haiku/src/system/libroot/posix/musl/time/
H A Dwcsftime.c17 unsigned long width; local
31 width = wcstoul(f, &p, 10);
33 if (!width && p!=f) width = 1;
35 width = 0;
44 if (width) {
46 width--;
52 width++;
53 for (; width > k && l < n; width
[all...]
/haiku/src/apps/deskbar/
H A DBarMenuTitle.h51 TBarMenuTitle(float width, float height, const BBitmap* icon,
55 void SetContentSize(float width, float height);
62 void GetContentSize(float* width, float* height);
/haiku/src/system/boot/platform/riscv/
H A Dgraphics.cpp16 vb.stride -= vb.width;
18 for (int x = 0; x < vb.width; x++) {
34 if (x + w > vb.width) {w = vb.width - x;}
38 vb.width = w;
42 vb.width = 0;
61 rb.width = charWidth;
72 dstW = dst.width; dstH = dst.height;
73 dst = dst.Clip(x, y, src.width, src.height);
75 dst.stride -= dst.width;
[all...]
/haiku/src/kits/interface/
H A DCardLayout.cpp143 BCardLayout::GetHeightForWidth(float width, float* min, float* max, argument
161 item->GetHeightForWidth(width, &itemMinHeight, &itemMaxHeight,
200 size.width = max_c(size.width, fMin.width);
299 fMin.width = 0;
301 fMax.width = B_SIZE_UNLIMITED;
303 fPreferred.width = 0;
314 fMin.width = max_c(fMin.width, mi
[all...]
/haiku/headers/private/graphics/common/
H A Dcompute_display_timing.h17 status_t compute_display_timing(uint32 width, uint32 height, float refresh,
/haiku/headers/private/interface/
H A Dtruncate_string.h10 void truncate_string(BString& string, uint32 mode, float width,
/haiku/src/apps/cortex/InfoView/
H A DInfoView.h99 float width,
105 float *width,
115 // adjusts the sidebars' width
117 float width)
118 { m_sideBarWidth = width; }
120 // returns the sidebars' width
162 // the width of the sidebar holding label strings
116 setSideBarWidth( float width) argument
H A DInfoWindow.h63 float width,
74 float width,
/haiku/src/add-ons/accelerants/common/
H A Dcompute_display_timing.cpp121 #define V_SYNC_WIDTH 3 // width of vsync in lines
122 #define H_SYNC_PERCENT 8.0 // width of hsync as % of total line
140 compute_display_timing(uint32 width, uint32 height, float refresh, argument
143 if (width < 320 || height < 200 || width > 65536 || height > 65536
154 width = (uint32)(rint(width / CELL_GRANULARITY) * CELL_GRANULARITY);
218 float leftMargin = margins ? rint(width * MARGIN_PERCENT / 100.0
225 float rightMargin = margins ? rint(width * MARGIN_PERCENT / 100.0
232 float totalActivePixels = width
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dstream.cc147 static char *str(const char* s, int len, int width) argument
149 if (width < len)
150 width = len;
152 if (space_left <= width + 1)
155 memset (buf, ' ', width - len);
156 memcpy (buf + width - len, s, len);
157 buf[width] = 0;
161 char* str(const char* s, int width) argument
163 return str (s, strlen (s), width);
166 char* chr(char ch, int width) argument
[all...]
/haiku/src/apps/mediaplayer/support/
H A DStackBlurFilter.h48 unsigned width, unsigned height,
52 unsigned width, unsigned height,
/haiku/src/apps/resedit/
H A DPreviewColumn.cpp13 PreviewColumn::PreviewColumn(const char *title, float width, argument
15 : BTitledColumn(title, width, minWidth, maxWidth)

Completed in 296 milliseconds

1234567891011>>