Searched refs:width (Results 201 - 225 of 1007) sorted by relevance

1234567891011>>

/haiku/src/add-ons/accelerants/intel_extreme/
H A Dcursor.cpp17 intel_set_cursor_shape(uint16 width, uint16 height, uint16 hotX, uint16 hotY, argument
20 if (width > 64 || height > 64)
38 uint8 byteWidth = (width + 7) / 8;
55 write32(INTEL_CURSOR_SIZE, height << 12 | width);
/haiku/src/add-ons/accelerants/skeleton/
H A DOverlay.c71 const overlay_buffer *ALLOCATE_OVERLAY_BUFFER(color_space cs, uint16 width, uint16 height) argument
102 si->overlay.myBuffer[offset].width = ((width + 0x000f) & ~0x000f);
109 si->overlay.myBuffer[offset].width = ((width + 0x001f) & ~0x001f);
111 si->overlay.myBuffer[offset].bytes_per_row = 2 * si->overlay.myBuffer[offset].width;
115 if (si->overlay.myBuffer[offset].width > 4088)
136 /* check if the requested buffer width is supported */
137 if (si->overlay.myBuffer[offset].width > 1024)
139 LOG(4,("Overlay: Sorry, requested buffer width no
[all...]
/haiku/src/add-ons/print/drivers/pcl5/
H A DPCL5.h30 void _StartRasterGraphics(int width, int height);
/haiku/src/apps/bootmanager/
H A DDefaultPartitionPage.h29 virtual void FrameResized(float width, float height);
/haiku/src/apps/deskbar/
H A DShowHideMenuItem.h56 virtual void GetContentSize(float* width, float* height);
H A DTruncatableMenuItem.h53 virtual const char* Label(float width);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DBoolValueView.h22 virtual void FrameResized(float width, float height);
H A DColorValueView.h24 virtual void FrameResized(float width, float height);
H A DIconValueView.h33 uint32 width, uint32 height,
H A DOptionValueView.h23 virtual void FrameResized(float width, float height);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dvfprintf.c78 if (width > 0) \
79 done += INTUSE(_IO_padn) (s, (Padchar), width)
96 if (width > 0) \
97 done += _IO_wpadn (s, (Padchar), width)
140 if (width > 0) \
141 { ssize_t __res = __printf_pad (s, (Padchar), width); \
347 REF (width), /* for '1'...'9' */ \
370 /* Step 1: after processing width. */ \
725 width -= workend - string + prec; \
729 width
1356 int width = 0; /* Width of output; 0 means none specified. */ local
1793 int width = specs[nspecs_done].info.width; local
[all...]
/haiku/src/tests/servers/app/benchmark/
H A DBenchmark.cpp56 uint32 width = 500; local
60 frame.left = (frame.left + frame.right - width) / 2;
61 frame.top = (frame.top + frame.bottom - width) / 2;
62 frame.right = frame.left + width - 1;
/haiku/src/preferences/shortcuts/
H A DPopUpColumn.h18 float width, float minWidth, float maxWidth,
/haiku/src/kits/shared/
H A DBitmapButton.cpp27 BBitmapButton::BBitmapButton(const uint8* bits, uint32 width, uint32 height, argument
31 fBitmap(new BBitmap(BRect(0, 0, width - 1, height - 1), 0, format)),
49 min.width = fBitmap->Bounds().Width();
52 min.width += kFrameInset * 2;
/haiku/src/servers/app/drawing/
H A DBitmapDrawingEngine.h25 UtilityBitmap* ExportToBitmap(int32 width, int32 height,
/haiku/src/apps/haikudepot/textview/
H A DParagraphLayout.cpp228 ParagraphLayout::SetWidth(float width) argument
230 if (fWidth != width) {
231 fWidth = width;
374 x2 = lastInfo.x + lastInfo.width;
394 x1 = glyph.x + glyph.width;
409 x2 = x1 + glyph.width;
460 float x2 = x1 + glyph.width;
533 float advanceX = glyph.width;
540 // // Figure out tab width, it's the width betwee
824 _AppendGlyphInfo(uint32 charCode, float width, const CharacterStyle& style) argument
[all...]
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp202 float width, height; local
203 GetPreferredSize(&width, &height);
204 Window()->ResizeTo(width + B_V_SCROLL_BAR_WIDTH, height);
288 float width,
292 BRect newFrame = BRect(0.0, 0.0, width, height);
308 Invalidate(BRect(p.x, p.y, width, p.y + fieldHeight));
311 Invalidate(BRect(p.x + m_sideBarWidth, p.y, width, p.y + fieldHeight));
321 updateRect.right = width - M_H_MARGIN;
339 float *width,
343 *width
287 FrameResized( float width, float height) argument
[all...]
/haiku/src/apps/networkstatus/
H A DWirelessNetworkMenuItem.h30 virtual void GetContentSize(float* width, float* height);
/haiku/src/apps/webpositive/
H A DBookmarkBar.h34 void FrameResized(float width, float height);
/haiku/src/apps/processcontroller/
H A DTeamBarMenuItem.h20 virtual void GetContentSize(float* width, float* height);
H A DIconMenuItem.h26 virtual void GetContentSize(float* width, float* height);
/haiku/src/apps/haikudepot/model/
H A DScreenshotCoordinate.h14 recorded against a screenshot in the HDS system and then the width and
21 ScreenshotCoordinate(BString code, uint16 width, uint16 height);
/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackVideoSupplier.cpp302 uint32 width = fFormat.u.encoded_video.output.display.line_width; local
319 minBytesPerRow = ((width * 2 + 3) / 4) * 4;
321 minBytesPerRow = width * 4;
324 ret = _SetDecodedFormat(width, height, format, bytesPerRow);
330 bytesPerRow = max_c(bytesPerRow, width * 4);
332 ret = _SetDecodedFormat(width, height, format, bytesPerRow);
349 minBytesPerRow = ((width * 2 + 3) / 4) * 4;
351 minBytesPerRow = width * 4;
355 ret = _SetDecodedFormat(width, height, format, minBytesPerRow);
369 MediaTrackVideoSupplier::_SetDecodedFormat(uint32 width, uint3 argument
[all...]
/haiku/src/apps/drivesetup/
H A DPartitionList.cpp88 PartitionColumn::PartitionColumn(const char* title, float width, float minWidth, argument
91 Inherited(title, width, minWidth, maxWidth, align),
112 float width = 0.0; local
119 width = rect.right - (x + r.Width()) - (2 * sTextMargin);
120 r.Set(x + r.Width(), rect.top, rect.right - width, rect.bottom);
125 width = (x - rect.left - (2 * sTextMargin));
126 r.Set(rect.left, rect.top, rect.left + width, rect.bottom);
130 if (width != bitmapField->Width()) {
132 parent->TruncateString(&truncatedString, fTruncateMode, width + 2);
134 bitmapField->SetWidth(width);
149 float width = rect.Width() - (2 * sTextMargin); local
172 float width = 0.0; local
[all...]
/haiku/src/add-ons/accelerants/3dfx/
H A D3dfx_cursor.cpp42 TDFX_LoadCursorImage(int width, int height, uint8* andMask, uint8* xorMask) argument
70 for (int colByte = 0; colByte < width / 8; colByte++) {

Completed in 102 milliseconds

1234567891011>>