Searched refs:bmi (Results 1 - 25 of 58) sorted by relevance

123

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_frame_win.cc38 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/mesa3d/src/gallium/winsys/sw/gdi/
H A Dgdi_sw_winsys.c60 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
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconinter.c64 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
65 (d->bmi.mv.as_mv.col >> 3);
67 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) {
68 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7,
86 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
87 (d->bmi.mv.as_mv.col >> 3);
89 if (d->bmi.mv.as_mv.row & 7 || d->bmi
[all...]
H A Dfindnearmv.h95 return (cur_mb->bmi + b - 1)->mv.as_int;
108 return (cur_mb->bmi + (b - 4))->mv.as_int;
116 case B_PRED: return (cur_mb->bmi + b + 3)->as_mode;
125 return (cur_mb->bmi + b - 1)->as_mode;
135 case B_PRED: return (cur_mb->bmi + b + 12)->as_mode;
144 return (cur_mb->bmi + b - 4)->as_mode;
H A Ddebugmodes.c85 fprintf(mvs, "%2d ", mi[mb_index].bmi[bindex].as_mode);
125 fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row,
126 mi[mb_index].bmi[bindex].mv.as_mv.col);
H A Dblockd.h155 union b_mode_info bmi[16]; member in struct:modeinfo
196 union b_mode_info bmi; member in struct:blockd
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c63 static void assign_overlap(OVERLAP_NODE *overlaps, union b_mode_info *bmi, argument
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, argument
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
150 vp8_calculate_overlaps(MB_OVERLAP *overlap_ul, int mb_rows, int mb_cols, union b_mode_info *bmi, int b_row, int b_col) argument
214 estimate_mv(const OVERLAP_NODE *overlaps, union b_mode_info *bmi) argument
246 union b_mode_info *const bmi = mi->bmi; local
[all...]
H A Dec_types.h20 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
25 union b_mode_info *bmi; member in struct:__anon12791
H A Ddecodemv.c57 mi->bmi[i].as_mode = read_bmode(bc, vp8_kf_bmode_prob[A][L]);
223 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int;
226 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int;
234 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int;
237 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int;
273 mi->bmi[*fill_offset].mv.as_int = blockmv.as_int;
411 mbmi->mv.as_int = mi->bmi[15].mv.as_int;
447 mi->bmi[0].mv.as_int = mi->bmi[1].mv.as_int = mi->bmi[
[all...]
/external/ImageMagick/coders/
H A Dscreenshot.c119 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/webrtc/webrtc/modules/desktop_capture/win/
H A Dcursor.cc142 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
[all...]
/external/llvm/test/MC/AArch64/
H A Darm64-condbr-without-dots.s9 bmi lbl
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c68 mi->bmi[0].as_mv[idx].as_mv.row + mi->bmi[1].as_mv[idx].as_mv.row +
69 mi->bmi[2].as_mv[idx].as_mv.row + mi->bmi[3].as_mv[idx].as_mv.row),
71 mi->bmi[0].as_mv[idx].as_mv.col + mi->bmi[1].as_mv[idx].as_mv.col +
72 mi->bmi[2].as_mv[idx].as_mv.col + mi->bmi[3].as_mv[idx].as_mv.col)
82 MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row +
83 mi->bmi[block
[all...]
H A Dvp9_mvref_common.c35 // 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;
H A Dvp9_blockd.c21 return cur_mi->bmi[b - 1].as_mode;
33 return cur_mi->bmi[b - 2].as_mode;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodemv.c212 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[
625 b_mode_info *bmi = mi->bmi; local
[all...]
/external/skia/tests/
H A DReadPixelsTest.cpp261 static BitmapInit nextBMI(BitmapInit bmi) { argument
262 int x = bmi;
349 for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
352 init_bitmap(&bmp, srcRect, bmi,
415 for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi
[all...]
/external/skqp/tests/
H A DReadPixelsTest.cpp261 static BitmapInit nextBMI(BitmapInit bmi) { argument
262 int x = bmi;
349 for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
352 init_bitmap(&bmp, srcRect, bmi,
415 for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c580 b->bmi.as_mode = *best_mode;
632 mic->bmi[i].as_mode = best_mode;
822 as they have not yet made it to the bmi array in our MB_MODE_INFO. */
847 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
851 row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis);
860 left_mv.as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
868 d->bmi.mv.as_int = this_mv->as_int;
870 x->partition_info->bmi[i].mode = m;
871 x->partition_info->bmi[i].mv.as_int = this_mv->as_int;
1043 bsi->mvp.as_int = x->e_mbd.block[i - 1].bmi
[all...]
H A Dtemporal_filter.c160 vp8_hex_search(x, b, d, &best_ref_mv1_full, &d->bmi.mv, step_param, sadpb,
170 x, b, d, &d->bmi.mv, &best_ref_mv1, x->errorperbit,
241 mbd->block[0].bmi.mv.as_mv.row = 0;
242 mbd->block[0].bmi.mv.as_mv.col = 0;
269 cpi->frames[frame]->y_stride, mbd->block[0].bmi.mv.as_mv.row,
270 mbd->block[0].bmi.mv.as_mv.col, predictor);
H A Dencodeintra.c36 x->e_mbd.block[i].bmi.as_mode = B_DC_PRED;
55 vp8_intra4x4_predict(Above, yleft, dst_stride, b->bmi.as_mode, b->predictor,
H A Dblock.h59 } bmi[16]; member in struct:__anon12799
/external/pdfium/core/fxge/win32/
H A Dfx_win32_device.cpp874 } 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
1169 BITMAPINFO bmi; local
[all...]
/external/libhevc/common/arm/
H A Dihevc_deblk_chroma_horz.s85 bmi l1.3312
92 bmi l1.3332
/external/opencv/otherlibs/highgui/
H A Dimage.cpp211 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 );

Completed in 3202 milliseconds

123