Searched refs:bpr (Results 1 - 25 of 43) sorted by relevance

12

/haiku-fatelf/src/apps/mediaplayer/support/
H A DStackBlurFilter.h49 int32 bpr,
53 int32 bpr,
H A DStackBlurFilter.cpp119 uint32 bpr = bitmap->BytesPerRow(); local
127 _Filter32(bits, width, height, bpr, r, r);
131 _Filter8(bits, width, height, bpr, r, r);
151 int32 bpr, unsigned rx, unsigned ry) const
209 src_pix_ptr = buffer + bpr * y;
247 src_pix_ptr = buffer + xp * 4 + y * bpr;
248 dst_pix_ptr = buffer + y * bpr;
314 int stride = bpr;
367 src_pix_ptr = buffer + x * 4 + yp * bpr;
431 int32 bpr, unsigne
150 _Filter32(uint8* buffer, unsigned width, unsigned height, int32 bpr, unsigned rx, unsigned ry) const argument
430 _Filter8(uint8* buffer, unsigned width, unsigned height, int32 bpr, unsigned rx, unsigned ry) const argument
[all...]
/haiku-fatelf/src/tests/kits/interface/bbitmap/
H A DBBitmapTester.cpp35 int32 bpr = 0; local
46 bpr = 4 * width;
51 bpr = 3 * width;
55 bpr = 2 * width;
58 bpr = width;
61 bpr = (width + 7) / 8;
64 bpr = (width + 3) / 4 * 8;
67 bpr = (width + 3) / 4 * 6;
70 bpr = (width + 3) / 4 * 12;
73 bpr
187 int32 bpr = get_bytes_per_row(testCase.space, width); local
[all...]
/haiku-fatelf/src/add-ons/translators/wonderbrush/
H A DLayer.cpp72 uint32 bpr = into->BytesPerRow(); local
73 src += 4 * left + bpr * top;
74 dst += 4 * left + bpr * top;
127 src += bpr;
128 dst += bpr;
154 src += bpr;
155 dst += bpr;
181 src += bpr;
182 dst += bpr;
200 src += bpr;
[all...]
H A DCanvas.cpp159 uint32 bpr = bitmap->BytesPerRow(); local
172 bits += bpr;
/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFLoad.h61 int bpr = fWidth << 2; local
68 if (fOutput->WriteAt(32 + (fRow * bpr), fScanLine, bpr) < bpr) return false;
/haiku-fatelf/src/add-ons/accelerants/vmware/
H A DCursor.c34 uint16 bpr = (width + 7) / 8; local
38 memcpy(scanline, &andMask[y * bpr], bpr);
50 uint16 bpr = (width + 7) / 8; local
52 uint8 * andMaskRow = &andMask[y * bpr];
55 memcpy(scanline, &xorMask[y * bpr], bpr);
/haiku-fatelf/src/tests/servers/app/bitmap_bounds/
H A Dmain.cpp44 uint32 bpr = fBitmap->BytesPerRow(); local
55 b = bits + bpr;
61 b += bpr;
/haiku-fatelf/src/kits/interface/
H A DBitmap.cpp87 int32 bpr = 0; local
98 bpr = 4 * width;
103 bpr = 3 * width;
107 bpr = 2 * width;
110 bpr = width;
113 bpr = (width + 7) / 8;
116 bpr = (width + 3) / 4 * 8;
119 bpr = (width + 3) / 4 * 6;
122 bpr = (width + 3) / 4 * 12;
125 bpr
148 int32 bpr = get_raw_bytes_per_row(colorSpace, width); local
679 ImportBits(const void* data, int32 length, int32 bpr, int32 offset, color_space colorSpace) argument
727 ImportBits(const void* data, int32 length, int32 bpr, color_space colorSpace, BPoint from, BPoint to, int32 width, int32 height) argument
1033 int32 bpr = get_bytes_per_row(colorSpace, bounds.IntegerWidth() + 1); local
[all...]
/haiku-fatelf/src/build/libbe/interface/
H A DBitmap.cpp179 int32 bpr = 0; local
190 bpr = 4 * width;
195 bpr = 3 * width;
199 bpr = 2 * width;
202 bpr = width;
205 bpr = (width + 7) / 8;
208 bpr = (width + 3) / 4 * 8;
211 bpr = (width + 3) / 4 * 6;
214 bpr = (width + 3) / 4 * 12;
217 bpr
238 int32 bpr = get_raw_bytes_per_row(colorSpace, width); local
1796 ImportBits(const void *data, int32 length, int32 bpr, int32 offset, color_space colorSpace) argument
2057 int32 bpr = get_bytes_per_row(colorSpace, bounds.IntegerWidth() + 1); local
[all...]
/haiku-fatelf/src/add-ons/media/plugins/xvid_decoder/
H A DXvidDecoder.cpp314 uint32 bpr; local
321 bpr = fOutputVideoFormat.display.line_width * 2;
326 bpr = fOutputVideoFormat.display.line_width
332 bpr = fOutputVideoFormat.display.line_width * 4;
337 bpr = fOutputVideoFormat.display.line_width * 3;
342 bpr = fOutputVideoFormat.display.line_width * 2;
347 bpr = fOutputVideoFormat.display.line_width * 2;
357 bpr = fOutputVideoFormat.display.line_width * 4;
366 bpr = max_c(_inoutFormat->u.raw_video.display.bytes_per_row,
367 ((bpr
[all...]
/haiku-fatelf/src/servers/app/drawing/
H A DHWInterface.h217 bpr = width * 4;
218 if (bpr > 0 && height > 0)
219 buffer = new uint8[bpr * height];
239 int32 bpr; member in struct:HWInterface::buffer_clip
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorField.cpp475 uint32 bpr = bitmap->BytesPerRow(); local
477 bits += 2 * 4 + 2 * bpr;
491 bits += bpr;
505 bits += bpr;
519 bits += bpr;
535 bits += bpr;
547 bits += bpr;
563 bits += bpr;
578 bits += bpr;
H A DAlphaSlider.cpp337 uint32 bpr = fBitmap->BytesPerRow(); local
338 uint8* dstRow = topRow + bpr;
340 memcpy(dstRow, topRow, bpr);
341 dstRow += bpr;
380 row += bpr;
/haiku-fatelf/headers/os/interface/
H A DBitmap.h87 int32 bpr, int32 offset,
90 int32 bpr, color_space colorSpace,
/haiku-fatelf/src/tests/servers/app/newerClipping/drawing/
H A DDrawingEngine.cpp55 uint32 bpr = fBuffer->BytesPerRow(); local
78 uint8* handle = dst + i * bpr;
81 handle += bpr;
91 dst += y * bpr;
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollView.cpp146 int32 bpr = fBitmaps[0]->BytesPerRow(); local
147 for (int i = 0; i < sBitmapHeight; i++, bits += bpr) {
155 bpr = fBitmaps[1]->BytesPerRow();
156 for (int i = 0; i < sBitmapHeight; i++, bits += bpr) {
164 bpr = fBitmaps[2]->BytesPerRow();
165 for (int i = 0; i < sBitmapHeight; i++, bits += bpr) {
/haiku-fatelf/src/tests/kits/interface/flatten_picture/
H A DPictureTest.cpp307 int32 bpr = bitmap1->BytesPerRow(); local
310 for (int y = 0; y < height; y ++, row1 += bpr, row2 += bpr) {
/haiku-fatelf/headers/build/os/interface/
H A DBitmap.h69 status_t ImportBits(const void *data, int32 length, int32 bpr,
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DPCL6Rasterizer.cpp391 int bpr = bitmap->BytesPerRow(); local
402 row += bpr;
406 row += bpr;
410 row += bpr;
/haiku-fatelf/src/preferences/locale/
H A DLanguageListView.cpp379 int32 bpr = dragBitmap->BytesPerRow(); local
382 for (int32 y = 0; y < height - ALPHA / 2; y++, bits += bpr) {
388 y++, bits += bpr) {
394 for (int32 y = 0; y < height; y++, bits += bpr) {
/haiku-fatelf/src/tests/servers/app/newerClipping/
H A Dmain.cpp140 test1(uint8* buffer, uint32 bpr) argument
149 handle += bpr;
158 handle += bpr;
167 handle += bpr;
294 test2(uint8* buffer, uint32 bpr) argument
303 handle += bpr;
312 handle += bpr;
321 handle += bpr;
/haiku-fatelf/src/tests/servers/app/painter/
H A Dmain.cpp306 uint32 bpr = testBitmap->BytesPerRow(); local
316 bits += bpr;
322 *(uint32*)(&bits[(bitmapHeight - 1) * bpr]) = 0;
323 *(uint32*)(&bits[(bitmapHeight - 1) * bpr + (bitmapWidth - 1) * 4]) = 0;
/haiku-fatelf/src/apps/icon-o-matic/generic/support/
H A Dsupport_ui.cpp87 uint32 bpr = bitmap->BytesPerRow(); local
128 bits += bpr;
/haiku-fatelf/src/apps/webpositive/support/
H A DIconButton.cpp517 uint32 bpr = quickResBitmap->BytesPerRow(); local
528 bits += bpr;
555 uint32 bpr = fNormalBitmap->BytesPerRow(); local
578 bits += bpr;
593 bits += 4 * (int32)trimmed.left + bpr * (int32)trimmed.top;
601 bits += bpr;
616 uint32 bpr = bitmap->BytesPerRow(); local
633 bits += bpr;

Completed in 201 milliseconds

12