Symbol: get_bytes_per_row
headers/private/interface/InterfacePrivate.h
24
int32 get_bytes_per_row(color_space colorSpace, int32 width);
src/add-ons/translators/ico/ICO.cpp
278
int32 xorRowBytes = get_bytes_per_row(entry.width, header.bits_per_pixel);
src/add-ons/translators/ico/ICO.cpp
281
andRowBytes = get_bytes_per_row(entry.width, 1);
src/add-ons/translators/ico/ICO.cpp
390
int32 xorRowBytes = get_bytes_per_row(entry.width, bitsPerPixel);
src/add-ons/translators/ico/ICO.cpp
391
int32 andRowBytes = get_bytes_per_row(entry.width, 1);
src/add-ons/translators/ico/ICO.cpp
745
int32 xorRowBytes = get_bytes_per_row(width, bitsPerPixel);
src/add-ons/translators/ico/ICO.cpp
748
andRowBytes = get_bytes_per_row(width, 1);
src/build/libbe/interface/Bitmap.cpp
574
bpr = get_bytes_per_row(colorSpace, width);
src/build/libbe/interface/Bitmap.cpp
620
bpr = get_bytes_per_row(colorSpace, fBounds.IntegerWidth() + 1);
src/build/libbe/interface/Bitmap.cpp
806
int32 bpr = get_bytes_per_row(colorSpace, bounds.IntegerWidth() + 1);
src/kits/interface/Bitmap.cpp
1076
int32 bpr = get_bytes_per_row(colorSpace, bounds.IntegerWidth() + 1);
src/kits/interface/Bitmap.cpp
723
bpr = get_bytes_per_row(colorSpace, width);
src/kits/interface/Bitmap.cpp
769
bpr = get_bytes_per_row(colorSpace, fBounds.IntegerWidth() + 1);
src/kits/media/MediaExtractor.cpp
457
int32 rowSize = BPrivate::get_bytes_per_row(format->ColorSpace(),
src/servers/app/ServerBitmap.cpp
77
int32 minBytesPerRow = get_bytes_per_row(space, fWidth);
src/tests/kits/interface/bbitmap/BBitmapTester.cpp
198
int32 bpr = get_bytes_per_row(testCase.space, width);