HomeSort by relevance Sort by last modified time
    Searched defs:bh (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiSetMem.c 62 mov bh, bl local
EfiSetMemSSE2.c 62 mov bh, bl local
  /external/capstone/bindings/ocaml/
ppc.ml 30 bh: int; Record field in type:cs_ppc
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_etc.c 28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
32 for (y = 0; y < height; y += bh) {
38 for (j = 0; j < bh; j++) {
u_format_rgtc.c 43 const unsigned bw = 4, bh = 4, comps = 4; local
47 for(y = 0; y < height; y += bh) {
50 for(j = 0; j < bh; ++j) {
69 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
72 for(y = 0; y < height; y += bh) {
75 uint8_t tmp[4][4]; /* [bh][bw][comps] */
76 for(j = 0; j < bh; ++j) {
116 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
119 for(y = 0; y < height; y += bh) {
122 uint8_t tmp[4][4]; /* [bh][bw][comps] *
167 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
235 const unsigned bw = 4, bh = 4, comps = 4; local
260 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
285 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
399 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress.c 874 GLuint bw, bh; local
926 GLuint bytes, bw, bh; local
    [all...]
texcompress_etc_tmp.h 146 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
150 for (y = 0; y < height; y += bh) {
156 for (j = 0; j < MIN2(bh, height - y); j++) {
  /external/squashfs-tools/kernel/fs/squashfs/
block.c 50 struct buffer_head *bh; local
52 bh = sb_bread(sb, *cur_index);
53 if (bh == NULL)
57 *length = (unsigned char) bh->b_data[*offset];
58 put_bh(bh);
59 bh = sb_bread(sb, ++(*cur_index));
60 if (bh == NULL)
62 *length |= (unsigned char) bh->b_data[0] << 8;
65 *length = (unsigned char) bh->b_data[*offset] |
66 (unsigned char) bh->b_data[*offset + 1] << 8
86 struct buffer_head **bh; local
    [all...]
  /external/capstone/bindings/java/capstone/
Ppc.java 69 public int bh; field in class:Ppc.UnionOpInfo
81 readField("bh");
91 return Arrays.asList("bc", "bh", "update_cr0", "op_count", "op");
97 public int bh; field in class:Ppc.OpInfo
104 bh = op_info.bh;
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_complexity.c 116 const int bh = num_8x8_blocks_high_lookup[BLOCK_64X64]; local
126 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
129 (cpi->rc.sb64_target_rate * xmis * ymis * 256) / (bw * bh);
vp9_aq_variance.c 152 const int bh = 8 * num_8x8_blocks_high_lookup[bs] - bottom_overflow; local
157 CONVERT_TO_BYTEPTR(vp9_highbd_64_zeros), 0, bw, bh,
163 bw, bh, &sse, &avg);
167 bw, bh, &sse, &avg);
169 var = sse - (unsigned int)(((int64_t)avg * avg) / (bw * bh));
170 return (unsigned int)(((uint64_t)256 * var) / (bw * bh));
vp9_segmentation.c 108 int *t_unpred_seg_counts, int bw, int bh, int mi_row,
117 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
148 int bw, bh; local
154 bh = num_8x8_blocks_high_lookup[mi[0]->sb_type];
156 if (bw == bs && bh == bs) {
159 } else if (bw == bs && bh < bs) {
165 } else if (bw < bs && bh == bs) {
175 assert(bw < bs && bh < bs);
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_copy_image.c 121 unsigned bw, bh; local
144 _mesa_get_format_block_size(src_mt->format, &bw, &bh);
154 if (src_height < bh)
155 src_height = ALIGN_NPOT(src_height, bh);
brw_tex_layout.c 299 unsigned int bw, bh; local
301 _mesa_get_format_block_size(mt->format, &bw, &bh);
339 img_height /= bh;
518 unsigned bh, bw; local
520 _mesa_get_format_block_size(mt->format, &bw, &bh);
538 intel_miptree_set_image_offset(mt, level, q, x / bw, y / bh);
540 mt->total_height = MAX2(mt->total_height, (y + hL) / bh);
  /external/mesa3d/src/mesa/swrast/
s_texfetch.c 74 GLuint bw, bh; local
76 _mesa_get_format_block_size(swImage->Base.TexFormat, &bw, &bh);
s_texture.c 218 GLuint bw, bh; local
233 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
236 assert(y % bh == 0);
247 map += stride * (y / bh) + texelSize * (x / bw);
  /external/python/cpython3/Modules/_decimal/libmpdec/
typearith.h 75 uint32_t ah, al, bh, bl; local
79 bh = (uint32_t)(b>>32); bl = (uint32_t)b;
89 hl = (uint64_t)al * bh + w[1];
93 hl = ((uint64_t)ah * bh + w[2]) + carry;
333 uint16_t ah, al, bh, bl;
337 bh = (uint16_t)(b>>16); bl = (uint16_t)b;
347 hl = (uint32_t)al * bh + w[1];
351 hl = ((uint32_t)ah * bh + w[2]) + carry;
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.c 46 unsigned bw, bh, bpb, total_size, i; local
58 svga_format_size(key->format, &bw, &bh, &bpb);
66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb;
  /external/e2fsprogs/debugfs/
revoke.c 325 * parameter, but does _not_ forget the buffer_head if the bh was only
338 struct buffer_head *bh = NULL; local
354 bh = bh_in;
356 if (!bh) {
357 bh = __find_get_block(bdev, blocknr, journal->j_blocksize);
358 if (bh)
359 BUFFER_TRACE(bh, "found on hash");
370 if (bh2 != bh && buffer_revokevalid(bh2))
386 if (bh) {
387 if (!J_EXPECT_BH(bh, !buffer_revoked(bh)
432 struct buffer_head *bh = jh2bh(jh); local
499 struct buffer_head *bh; local
    [all...]
  /external/e2fsprogs/e2fsck/
revoke.c 325 * parameter, but does _not_ forget the buffer_head if the bh was only
338 struct buffer_head *bh = NULL; local
354 bh = bh_in;
356 if (!bh) {
357 bh = __find_get_block(bdev, blocknr, journal->j_blocksize);
358 if (bh)
359 BUFFER_TRACE(bh, "found on hash");
370 if (bh2 != bh && buffer_revokevalid(bh2))
386 if (bh) {
387 if (!J_EXPECT_BH(bh, !buffer_revoked(bh)
432 struct buffer_head *bh = jh2bh(jh); local
499 struct buffer_head *bh; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.h 27 const int bh = num_8x8_blocks_high_lookup[bsize]; local
29 const int ymis = VPXMIN(cm->mi_rows - mi_row, bh);
vp9_reconinter.c 91 int bh, int ss_x, int ss_y) {
97 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
127 int bw, int bh, int x, int y, int w, int h,
150 xd, &mv, bw, bh, pd->subsampling_x, pd->subsampling_y);
220 const int bh = 4 * num_4x4_h; local
227 build_inter_predictors(xd, plane, i++, bw, bh, 4 * x, 4 * y, 4, 4,
230 build_inter_predictors(xd, plane, 0, bw, bh, 0, 0, bw, bh, mi_x, mi_y);
  /external/libyuv/files/unit_test/
color_test.cc 445 static void PrintHistogram(int rh[256], int gh[256], int bh[256]) {
449 if (rh[i] || gh[i] || bh[i]) {
455 if (rh[i] || gh[i] || bh[i]) {
461 if (rh[i] || gh[i] || bh[i]) {
467 if (rh[i] || gh[i] || bh[i]) {
468 printf("\t%8d", bh[i]);
483 bh[256] = { local
498 ++bh[b1 - b0 + 128];
502 PrintHistogram(rh, gh, bh);
514 bh[256] = local
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_gmem.c 263 uint32_t bw, bh; local
268 bh = MIN2(bin_h, miny + height - yoff);
285 tile->bin_h = bh;
294 yoff += bh;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texture.c 161 unsigned int bw, bh; local
164 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
165 assert(y % bh == 0);
166 y /= bh;

Completed in 360 milliseconds

1 2 3 4 5