HomeSort by relevance Sort by last modified time
    Searched defs:bmi (Results 1 - 20 of 20) sorted by null

  /external/webrtc/webrtc/modules/desktop_capture/
desktop_frame_win.cc 38 BITMAPINFO bmi = {}; local
39 bmi.bmiHeader.biHeight = -size.height();
40 bmi.bmiHeader.biWidth = size.width();
41 bmi.bmiHeader.biPlanes = 1;
42 bmi.bmiHeader.biBitCount = DesktopFrameWin::kBytesPerPixel * 8;
43 bmi.bmiHeader.biSize = sizeof(bmi.bmiHeader);
44 bmi.bmiHeader.biSizeImage = bytes_per_row * size.height();
50 HBITMAP bitmap = CreateDIBSection(hdc, &bmi, DIB_RGB_COLORS, &data,
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 20 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
25 union b_mode_info *bmi; member in struct:__anon26136
error_concealment.c 63 static void assign_overlap(OVERLAP_NODE *overlaps, union b_mode_info *bmi,
68 * Empty is defined as bmi == NULL */
70 if (overlaps[i].bmi == NULL) {
71 overlaps[i].bmi = bmi;
101 static void calculate_overlaps_mb(B_OVERLAP *b_overlaps, union b_mode_info *bmi,
106 * overlapped by bmi and calculate and assign overlap for each of those
145 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
151 union b_mode_info *bmi, int b_row, int b_col) {
164 new_row = row - bmi->mv.as_mv.row
246 union b_mode_info *const bmi = mi->bmi; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mvref_common.c 35 // if the size < 8x8 we get the mv from the bmi substructure,
159 b_mode_info *bmi = mi->bmi; local
175 nearest_mv->as_int = bmi[0].as_mv[ref].as_int;
184 candidates[0] = bmi[1].as_mv[ref];
185 candidates[1] = bmi[0].as_mv[ref];
189 nearest_mv->as_int = bmi[2].as_mv[ref].as_int;
vp9_blockd.h 85 // TODO(slavarnway): Delete and use bmi[3].as_mv[] instead.
88 b_mode_info bmi[4]; member in struct:MODE_INFO
92 return mi->sb_type < BLOCK_8X8 ? mi->bmi[block].as_mode : mi->mode;
  /external/ImageMagick/coders/
screenshot.c 119 bmi;
184 (void) ResetMagickMemory(&bmi,0,sizeof(BITMAPINFO));
185 bmi.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
186 bmi.bmiHeader.biWidth=(LONG) screen->columns;
187 bmi.bmiHeader.biHeight=(-1)*(LONG) screen->rows;
188 bmi.bmiHeader.biPlanes=1;
189 bmi.bmiHeader.biBitCount=24;
190 bmi.bmiHeader.biCompression=BI_RGB;
191 bitmap=CreateDIBSection(hDC,&bmi,DIB_RGB_COLORS,(void **) &p,NULL,0);
117 bmi; local
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 60 BITMAPINFO bmi; member in struct:gdi_sw_displaytarget
152 gdt->bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
153 gdt->bmi.bmiHeader.biWidth = gdt->stride / cpp;
154 gdt->bmi.bmiHeader.biHeight= -(long)height;
155 gdt->bmi.bmiHeader.biPlanes = 1;
156 gdt->bmi.bmiHeader.biBitCount = bpp;
157 gdt->bmi.bmiHeader.biCompression = BI_RGB;
158 gdt->bmi.bmiHeader.biSizeImage = 0;
159 gdt->bmi.bmiHeader.biXPelsPerMeter = 0;
160 gdt->bmi.bmiHeader.biYPelsPerMeter = 0
    [all...]
  /external/opencv/otherlibs/highgui/
image.cpp 211 BITMAPINFO* bmi = (BITMAPINFO*)buffer; local
236 FillBitmapInfo( bmi, bmp_w, bmp_h, Bpp(), m_img->origin );
242 m_img->imageData, bmi, DIB_RGB_COLORS, SRCCOPY );
  /external/webrtc/webrtc/modules/desktop_capture/win/
cursor.cc 142 BITMAPV5HEADER bmi = {0}; local
143 bmi.bV5Size = sizeof(bmi);
144 bmi.bV5Width = width;
145 bmi.bV5Height = -height; // request a top-down bitmap.
146 bmi.bV5Planes = 1;
147 bmi.bV5BitCount = kBytesPerPixel * 8;
148 bmi.bV5Compression = BI_RGB;
149 bmi.bV5AlphaMask = 0xff000000;
150 bmi.bV5CSType = LCS_WINDOWS_COLOR_SPACE
    [all...]
  /external/llvm/test/MC/Lanai/
v11.s 77 bmi 0x123454 label
117 bmi.r 0x5678
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.h 123 const BITMAPINFO& bmi() const { return bmi_; } function in class:MainWnd::VideoRenderer
main_wnd.cc 234 const BITMAPINFO& bmi = remote_renderer->bmi(); local
235 int height = abs(bmi.bmiHeader.biHeight);
236 int width = bmi.bmiHeader.biWidth;
266 0, 0, width, height, image, &bmi, DIB_RGB_COLORS, SRCCOPY);
269 const BITMAPINFO& bmi = local_renderer->bmi(); local
271 int thumb_width = bmi.bmiHeader.biWidth / 4;
272 int thumb_height = abs(bmi.bmiHeader.biHeight) / 4;
277 0, 0, bmi.bmiHeader.biWidth, -bmi.bmiHeader.biHeight
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
block.h 59 } bmi[16]; member in struct:__anon26144
  /frameworks/base/services/core/java/com/android/server/power/batterysaver/
BatterySavingStats.java 266 final BatteryManagerInternal bmi = getBatteryManagerInternal(); local
267 if (bmi == null) {
270 return bmi.getBatteryChargeCounter();
275 final BatteryManagerInternal bmi = getBatteryManagerInternal(); local
276 if (bmi == null) {
279 return bmi.getBatteryLevel();
  /external/libvpx/libvpx/vp8/common/
blockd.h 155 union b_mode_info bmi[16]; member in struct:modeinfo
196 union b_mode_info bmi; member in struct:blockd
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 212 mi->bmi[i].as_mode =
214 mi->mode = mi->bmi[3].as_mode;
217 mi->bmi[0].as_mode = mi->bmi[2].as_mode =
219 mi->bmi[1].as_mode = mi->bmi[3].as_mode = mi->mode =
223 mi->bmi[0].as_mode = mi->bmi[1].as_mode =
225 mi->bmi[2].as_mode = mi->bmi[3].as_mode = mi->mode
625 b_mode_info *bmi = mi->bmi; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
resbin.c 1725 struct bin_menuitem bmi; local
1765 struct bin_menuitemex bmi; local
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_device.cpp 874 } bmi; local
875 memset(&bmi.bmiHeader, 0, sizeof(BITMAPINFOHEADER));
876 bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
877 bmi.bmiHeader.biBitCount = 1;
878 bmi.bmiHeader.biCompression = BI_RGB;
879 bmi.bmiHeader.biHeight = -height;
880 bmi.bmiHeader.biPlanes = 1;
881 bmi.bmiHeader.biWidth = width;
885 bmi.bmiColors[0] = 0xffffff;
886 bmi.bmiColors[1] = 0
1169 BITMAPINFO bmi; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mmreg.h 2582 BITMAPINFOHEADER bmi; member in struct:tagEXBMINFOHEADER
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 

Completed in 577 milliseconds