HomeSort by relevance Sort by last modified time
    Searched full:b_size (Results 1 - 25 of 50) sorted by null

1 2

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_proc_semaphore.cpp 57 1. When only the elements of the top row of the B_SIZE x B_SIZE block
58 (q_block[n], n = 0,..., B_SIZE-1) are non-zero, vertical blocking artifacts
61 2. When only the elements of the far left column of the B_SIZE x B_SIZE block
62 (q_block[n*B_SIZE], n = 0, ..., B_SIZE-1) are non-zero, horizontal blocking
66 q_block[1], or q_block[B_SIZE], the deringing bit is enabled. Otherwise,
145 /* the B_SIZE x B_SIZE block, i.e., q_block[n], n = 0,..., B_SIZE-1, *
    [all...]
post_filter.cpp 189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; local
198 b_size = 8;
204 b_size = 16;
287 rec_y += b_size;
299 rec_y = rec + width * b_size;
308 k = b_size;
384 rec_y += b_size;
388 rec_y += ((b_size - 1) * width);
399 offset = width * b_size - b_size;
    [all...]
idct.cpp 141 for (i = B_SIZE - 1; i >= 0; i--)
145 r1 = blk[B_SIZE * 4 + i] << 11;
151 r2 = blk[B_SIZE * 6 + i];
152 r3 = blk[B_SIZE * 2 + i];
153 r4 = blk[B_SIZE * 1 + i];
154 r5 = blk[B_SIZE * 7 + i];
155 r6 = blk[B_SIZE * 5 + i];
156 r7 = blk[B_SIZE * 3 + i];
166 a = (blk[B_SIZE * 0 + i]) << 3;
167 tmpBLK32[B_SIZE * 0 + i] = a
    [all...]
get_pred_adv_b_add.cpp 96 offset = width - B_SIZE; /* offset for prev */
104 for (i = B_SIZE; i > 0; i--)
116 for (i = B_SIZE; i > 0; i--)
138 for (i = B_SIZE; i > 0; i--)
161 for (i = B_SIZE; i > 0; i--)
198 offset = width - B_SIZE; /* offset for prev */
215 for (i = B_SIZE; i > 0; i--)
248 for (i = B_SIZE; i > 0; i--)
286 for (i = B_SIZE; i > 0; i--)
323 for (i = B_SIZE; i > 0; i--
    [all...]
conceal.cpp 175 oscl_memcpy(u1, u2, B_SIZE);
178 oscl_memcpy(u1, u2, B_SIZE);
182 oscl_memcpy(v1, v2, B_SIZE);
185 oscl_memcpy(v1, v2, B_SIZE);
mp4def.h 143 #define B_SIZE 8
144 #define NCOEFF_BLOCK (B_SIZE*B_SIZE)
mb_motion_comp.cpp 271 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
272 ypred >= 0 && ypred <= ((height << 1) - (2*B_SIZE)))
292 xpred = (int)(((xpos + B_SIZE) << 1) + px[1]);
307 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
308 ypred >= 0 && ypred <= ((height << 1) - (2*B_SIZE)))
329 ypred = (int)(((ypos + B_SIZE) << 1) + py[2]);
343 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
344 ypred >= 0 && ypred <= ((height << 1) - (2*B_SIZE)))
365 xpred = (int)(((xpos + B_SIZE) << 1) + px[3]);
366 ypred = (int)(((ypos + B_SIZE) << 1) + py[3])
    [all...]
idct_vca.cpp 443 blk += B_SIZE;
500 blk += B_SIZE;
573 blk += B_SIZE;
653 blk += B_SIZE;
mb_utils.cpp 91 row = B_SIZE;
get_pred_outside.cpp 301 else if ((ypos >> 1) < (height - B_SIZE)) /* pad left of frame */
357 else if ((xpos >> 1) < (width - B_SIZE))
456 else if ((ypos >> 1) < (height - B_SIZE)) /* pad right of frame */
  /external/chromium_org/webkit/browser/quota/
quota_temporary_storage_evictor_unittest.cc 269 const int64 b_size = 150; local
272 const int64 initial_total_size = a_size + b_size + c_size + d_size;
277 quota_eviction_handler()->AddOrigin(GURL("http://www.b.com"), b_size);
290 EXPECT_EQ(initial_total_size - d_size + e_size - c_size - b_size,
303 const int64 b_size = 150; local
306 const int64 initial_total_size = a_size + b_size + c_size + d_size;
310 quota_eviction_handler()->AddOrigin(GURL("http://www.b.com"), b_size);
334 const int64 b_size = 150; local
337 const int64 initial_total_size = a_size + b_size + c_size + d_size;
342 quota_eviction_handler()->AddOrigin(GURL("http://www.b.com"), b_size);
    [all...]
  /external/qemu-pc-bios/vgabios/
vbetables-gen.c 95 int r_size, r_pos, g_size, g_pos, b_size, b_pos, a_size, a_pos; local
180 b_size = 5;
190 b_size = 5;
200 b_size = 8;
210 b_size = 8;
220 b_size = 0;
231 printf("/*Bit8u BlueMaskSize*/ %d,\n", b_size);
257 printf("/*Bit8u LinBlueMaskSize*/ %d,\n", b_size);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 213 c_prev += B_SIZE;
214 c_rec += B_SIZE;
218 c_prev += (lx << 3) - B_SIZE;
219 c_rec += (16 << 3) - B_SIZE; /* padding */
223 c_prev += B_SIZE;
224 c_rec += B_SIZE;
257 c_rec += B_SIZE;
259 xpred = (Int)(((xpos + B_SIZE) << 1) + mot[2].x);
265 c_rec += (16 << 3) - B_SIZE; /* padding */
268 ypred = (Int)(((ypos + B_SIZE) << 1) + mot[3].y)
    [all...]
mp4def.h 215 #define B_SIZE 8
216 #define NCOEFF_BLOCK (B_SIZE*B_SIZE)
  /external/pixman/pixman/
pixman-utils.c 132 int a_size, r_size, g_size, b_size; local
148 b_size = PIXMAN_FORMAT_B (format);
153 b_shift = 8 - b_size;
158 b_mask = ((1 << b_size) - 1);
163 b_mul = multipliers[b_size];
  /external/e2fsprogs/e2fsck/
jfs_user.h 20 int b_size; member in struct:buffer_head
recovery.c 334 *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
346 obh->b_size);
revoke.c 419 bh2 = get_hash_table(bh->b_dev, bh->b_blocknr, bh->b_size);
journal.c 90 bh->b_size = blocksize;
  /external/llvm/lib/Support/
FileUtilities.cpp 201 uint64_t B_size = F2->getBufferSize();
204 if (A_size == B_size &&
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
drive_file_sync_service_fake_unittest.cc 272 void VerifySizeOfRegisteredOrigins(size_t b_size,
275 EXPECT_EQ(b_size, pending_batch_sync_origins()->size());
  /external/opencv/cxcore/src/
cxmatmul.cpp 1219 CvSize b_size; local
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.c 2121 size_t b_size = b->size; local
3048 size_t b_size = b->bits & ~pagesize_mask; local
    [all...]
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.c 2110 size_t b_size = b->size; local
3037 size_t b_size = b->bits & ~pagesize_mask; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
reiserfs_fs.h     [all...]

Completed in 3029 milliseconds

1 2