HomeSort by relevance Sort by last modified time
    Searched refs:bitmap_info (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
cursor_unittest.cc 56 BITMAP bitmap_info; local
57 EXPECT_TRUE(GetObject(scoped_color, sizeof(bitmap_info), &bitmap_info));
59 int width = bitmap_info.bmWidth;
60 int height = bitmap_info.bmHeight;
cursor.cc 131 BITMAP bitmap_info; local
132 if (!GetObject(scoped_mask, sizeof(bitmap_info), &bitmap_info)) {
138 int width = bitmap_info.bmWidth;
139 int height = bitmap_info.bmHeight;
  /external/chromium_org/ui/views/corewm/
cursor_height_provider_win.cc 86 BITMAPINFO bitmap_info = {0}; local
87 bitmap_info.bmiHeader.biSize = sizeof(bitmap_info.bmiHeader);
88 if (GetDIBits(hdc, icon.hbmMask, 0, 0, NULL, &bitmap_info, DIB_RGB_COLORS) ==
96 (bitmap_info.bmiHeader.biWidth % kBitsPeruint32);
103 (bitmap_info.bmiHeader.biWidth + kBitsPeruint32 - 1) / kBitsPeruint32;
104 PixelData data(GetBitmapData(icon.hbmMask, bitmap_info, hdc));
110 int i = std::max(0, static_cast<int>(bitmap_info.bmiHeader.biHeight) -
112 for (; i < bitmap_info.bmiHeader.biHeight; ++i) {
118 return bitmap_info.bmiHeader.biHeight - i - icon.yHotspot
    [all...]
  /external/chromium_org/android_webview/native/
java_browser_view_renderer_helper.cc 150 AndroidBitmapInfo bitmap_info; local
151 if (AndroidBitmap_getInfo(env, jbitmap.obj(), &bitmap_info) < 0) {
165 SkImageInfo::MakeN32Premul(bitmap_info.width, bitmap_info.height);
167 bitmap.installPixels(info, pixels, bitmap_info.stride);
  /external/chromium_org/ui/gfx/
gdi_util.cc 124 const BITMAPINFO* bitmap_info) {
129 int bitmap_h = -bitmap_info->bmiHeader.biHeight;
135 pixels, bitmap_info, DIB_RGB_COLORS, SRCCOPY);
140 pixels, bitmap_info, DIB_RGB_COLORS, SRCCOPY);
gdi_util.h 51 void* pixels, const BITMAPINFO* bitmap_info);
icon_util_unittest.cc 319 BITMAPINFO bitmap_info; local
320 ::ZeroMemory(&bitmap_info, sizeof(BITMAPINFO));
321 bitmap_info.bmiHeader.biSize = sizeof(BITMAPINFO);
328 &bitmap_info,
331 EXPECT_EQ(bitmap_info.bmiHeader.biWidth, kSmallIconWidth);
332 EXPECT_EQ(bitmap_info.bmiHeader.biHeight, kSmallIconHeight);
333 EXPECT_EQ(bitmap_info.bmiHeader.biPlanes, 1);
334 EXPECT_EQ(bitmap_info.bmiHeader.biBitCount, 32);
icon_util.cc 309 BITMAP bitmap_info = { 0 }; local
314 if (!::GetObject(icon_info.hbmMask, sizeof(bitmap_info), &bitmap_info))
317 gfx::Size icon_size(bitmap_info.bmWidth, bitmap_info.bmHeight);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.cc 80 CGBitmapInfo bitmap_info = kCGBitmapByteOrderDefault; local
83 color_space_ref, bitmap_info, provider,
  /external/jemalloc/src/
arena.c 305 assert(bitmap_full(bitmap, &bin_info->bitmap_info) == false);
307 regind = bitmap_sfu(bitmap, &bin_info->bitmap_info);
337 assert(bitmap_get(bitmap, &bin_info->bitmap_info, regind));
339 bitmap_unset(bitmap, &bin_info->bitmap_info, regind);
    [all...]
  /external/jemalloc/include/jemalloc/internal/
arena.h 268 bitmap_info_t bitmap_info; member in struct:arena_bin_info_s
    [all...]

Completed in 4246 milliseconds