HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK_SIZE (Results 176 - 200 of 325) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 230 static const int BLOCK_SIZE = 16;
231 static const deUint8 blocks[][BLOCK_SIZE] =
251 DE_ASSERT(dataSize % BLOCK_SIZE == 0);
253 for (int i = 0; i < dataSize/BLOCK_SIZE; i++)
254 deMemcpy(&data[i*BLOCK_SIZE], &blocks[rnd.getInt(0, DE_LENGTH_OF_ARRAY(blocks)-1)][0], BLOCK_SIZE);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 54 void vp9_subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
57 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
316 BLOCK_SIZE plane_bsize, TX_SIZE tx_size) {
367 BLOCK_SIZE plane_bsize, TX_SIZE tx_size) {
414 BLOCK_SIZE plane_bsize, TX_SIZE tx_size) {
464 static void encode_block(int plane, int block, BLOCK_SIZE plane_bsize,
546 static void encode_block_pass1(int plane, int block, BLOCK_SIZE plane_bsize,
564 void vp9_encode_sby_pass1(MACROBLOCK *x, BLOCK_SIZE bsize) {
570 void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize) {
598 static void encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize
    [all...]
vp9_segmentation.c 134 const BLOCK_SIZE bsize = xd->mi[0].src_mi->mbmi.sb_type;
158 BLOCK_SIZE bsize) {
185 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
vp9_mcomp.h 140 BLOCK_SIZE bsize, MV *mvp_full,
vp9_pickmode.c 117 BLOCK_SIZE bsize, int mi_row, int mi_col,
205 static void model_rd_for_sb_y(VP9_COMP *cpi, BLOCK_SIZE bsize,
273 BLOCK_SIZE bsize, int mi_row, int mi_col,
282 const BLOCK_SIZE uv_size = get_plane_block_size(bsize, &xd->plane[1]);
367 static void estimate_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
375 const BLOCK_SIZE bsize_tx = txsize_to_bsize[tx_size];
418 BLOCK_SIZE bsize,
  /external/libvpx/libvpx/vp9/encoder/
vp9_segmentation.c 146 const BLOCK_SIZE bsize = mi_8x8[0]->mbmi.sb_type;
170 BLOCK_SIZE bsize) {
198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
vp9_rdopt.c 140 static int raster_block_offset(BLOCK_SIZE plane_bsize,
147 static int16_t* raster_block_offset_int16(BLOCK_SIZE plane_bsize,
426 static void model_rd_for_sb(VP9_COMP *cpi, BLOCK_SIZE bsize,
441 const BLOCK_SIZE bs = get_plane_block_size(bsize, pd);
477 static void model_rd_for_sb_y_tx(VP9_COMP *cpi, BLOCK_SIZE bsize,
483 BLOCK_SIZE bs;
527 intptr_t block_size, int64_t *ssz) {
531 for (i = 0; i < block_size; i++) {
650 static void rate_block(int plane, int block, BLOCK_SIZE plane_bsize,
661 static void block_rd_txfm(int plane, int block, BLOCK_SIZE plane_bsize
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_segmentation.c 146 const BLOCK_SIZE bsize = mi_8x8[0]->mbmi.sb_type;
170 BLOCK_SIZE bsize) {
198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
vp9_pickmode.c 31 BLOCK_SIZE bsize, int mi_row, int mi_col,
135 BLOCK_SIZE bsize, int mi_row, int mi_col,
179 static void model_rd_for_sb_y(VP9_COMP *cpi, BLOCK_SIZE bsize,
208 BLOCK_SIZE bsize) {
vp9_rdopt.c 140 static int raster_block_offset(BLOCK_SIZE plane_bsize,
147 static int16_t* raster_block_offset_int16(BLOCK_SIZE plane_bsize,
426 static void model_rd_for_sb(VP9_COMP *cpi, BLOCK_SIZE bsize,
441 const BLOCK_SIZE bs = get_plane_block_size(bsize, pd);
477 static void model_rd_for_sb_y_tx(VP9_COMP *cpi, BLOCK_SIZE bsize,
483 BLOCK_SIZE bs;
527 intptr_t block_size, int64_t *ssz) {
531 for (i = 0; i < block_size; i++) {
650 static void rate_block(int plane, int block, BLOCK_SIZE plane_bsize,
661 static void block_rd_txfm(int plane, int block, BLOCK_SIZE plane_bsize
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffs_fileem.c 37 #define BLOCK_SIZE (32 * 528)
yaffs_ramdisk.c 33 #define BLOCK_SIZE (32 * 528)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
quota.h 58 * for filesystems where i_blksize != BLOCK_SIZE
60 #define fs_to_dq_blocks(num, blksize) (((num) * (blksize)) / BLOCK_SIZE)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
quota.h 58 * for filesystems where i_blksize != BLOCK_SIZE
60 #define fs_to_dq_blocks(num, blksize) (((num) * (blksize)) / BLOCK_SIZE)
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 36 * blocks. Block size is always 16 bytes ({@link #BLOCK_SIZE}. Sector size varies.
116 public static final int BLOCK_SIZE = 16;
263 return mSize / BLOCK_SIZE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 15 protected static final int BLOCK_SIZE = 8;
61 return BLOCK_SIZE;
75 if ((inOff + BLOCK_SIZE) > in.length)
80 if ((outOff + BLOCK_SIZE) > out.length)
87 return BLOCK_SIZE;
TwofishEngine.java 194 private static final int BLOCK_SIZE = 16; // bytes = 128 bits
198 private static final int OUTPUT_WHITEN=INPUT_WHITEN+BLOCK_SIZE/4; // 4
199 private static final int ROUND_SUBKEYS=OUTPUT_WHITEN+BLOCK_SIZE/4;// 8
300 if ((inOff + BLOCK_SIZE) > in.length)
305 if ((outOff + BLOCK_SIZE) > out.length)
319 return BLOCK_SIZE;
332 return BLOCK_SIZE;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_reconinter.c 324 static void build_inter_predictors_for_planes(MACROBLOCKD *xd, BLOCK_SIZE bsize,
331 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize,
353 BLOCK_SIZE bsize) {
357 BLOCK_SIZE bsize) {
362 BLOCK_SIZE bsize) {
552 BLOCK_SIZE bsize) {
557 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize,
vp9_pred_common.h 30 BLOCK_SIZE bsize, int mi_row, int mi_col);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decodemv.c 78 BLOCK_SIZE bsize, int allow_select, vp9_reader *r) {
86 static void set_segment_id(VP9_COMMON *cm, BLOCK_SIZE bsize,
106 const BLOCK_SIZE bsize = xd->mi[0].src_mi->mbmi.sb_type;
124 const BLOCK_SIZE bsize = mbmi->sb_type;
167 const BLOCK_SIZE bsize = mbmi->sb_type;
330 const BLOCK_SIZE bsize = mi->mbmi.sb_type;
427 const BLOCK_SIZE bsize = mbmi->sb_type;
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 79 BLOCK_SIZE bsize, int allow_select, vp9_reader *r) {
87 static void set_segment_id(VP9_COMMON *cm, BLOCK_SIZE bsize,
107 const BLOCK_SIZE bsize = xd->mi[0]->mbmi.sb_type;
125 const BLOCK_SIZE bsize = mbmi->sb_type;
168 const BLOCK_SIZE bsize = mbmi->sb_type;
331 const BLOCK_SIZE bsize = mi->mbmi.sb_type;
428 const BLOCK_SIZE bsize = mbmi->sb_type;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodemv.c 79 BLOCK_SIZE bsize, int allow_select, vp9_reader *r) {
87 static void set_segment_id(VP9_COMMON *cm, BLOCK_SIZE bsize,
107 const BLOCK_SIZE bsize = xd->mi[0]->mbmi.sb_type;
125 const BLOCK_SIZE bsize = mbmi->sb_type;
168 const BLOCK_SIZE bsize = mbmi->sb_type;
331 const BLOCK_SIZE bsize = mi->mbmi.sb_type;
428 const BLOCK_SIZE bsize = mbmi->sb_type;
  /bionic/libc/kernel/uapi/linux/
fs.h 30 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
  /development/ndk/platforms/android-3/include/linux/
fs.h 23 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
  /development/ndk/platforms/android-L/include/linux/
fs.h 30 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)

Completed in 1429 milliseconds

1 2 3 4 5 6 78 91011>>