HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK_SIZE (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.h 18 int vp9_decode_tokens(VP9D_COMP* pbi, vp9_reader *r, BLOCK_SIZE bsize);
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeintra.h 17 void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
vp9_encodemb.h 55 void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
56 void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
58 void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize,
61 void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
62 void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize);
63 void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
65 void vp9_encode_intra_block_y(MACROBLOCK *x, BLOCK_SIZE bsize);
66 void vp9_encode_intra_block_uv(MACROBLOCK *x, BLOCK_SIZE bsize);
vp9_tokenize.h 34 int vp9_sb_is_skippable(MACROBLOCKD *xd, BLOCK_SIZE bsize);
35 int vp9_is_skippable_in_plane(MACROBLOCKD *xd, BLOCK_SIZE bsize,
40 BLOCK_SIZE bsize);
vp9_rdopt.h 23 int *r, int64_t *d, BLOCK_SIZE bsize,
28 int *r, int64_t *d, BLOCK_SIZE bsize,
vp9_block.h 177 BLOCK_SIZE b_partitioning[4][4][4];
178 BLOCK_SIZE mb_partitioning[4][4];
179 BLOCK_SIZE sb_partitioning[4];
180 BLOCK_SIZE sb64_partitioning;
  /external/libvpx/libvpx/vp9/common/
vp9_common_data.h 27 extern const BLOCK_SIZE subsize_lookup[PARTITION_TYPES][BLOCK_SIZES];
30 extern const BLOCK_SIZE ss_size_lookup[BLOCK_SIZES][2][2];
vp9_enums.h 25 typedef enum BLOCK_SIZE {
41 } BLOCK_SIZE;
vp9_blockd.h 118 static INLINE int b_width_log2(BLOCK_SIZE sb_type) {
121 static INLINE int b_height_log2(BLOCK_SIZE sb_type) {
125 static INLINE int mi_width_log2(BLOCK_SIZE sb_type) {
129 static INLINE int mi_height_log2(BLOCK_SIZE sb_type) {
152 BLOCK_SIZE sb_type;
250 static INLINE unsigned char *get_sb_index(MACROBLOCKD *xd, BLOCK_SIZE subsize) {
275 static INLINE void update_partition_context(MACROBLOCKD *xd, BLOCK_SIZE sb_type,
276 BLOCK_SIZE sb_size) {
294 static INLINE int partition_plane_context(MACROBLOCKD *xd, BLOCK_SIZE sb_type) {
314 static BLOCK_SIZE get_subsize(BLOCK_SIZE bsize, PARTITION_TYPE partition)
    [all...]
vp9_pred_common.h 18 BLOCK_SIZE bsize, int mi_row, int mi_col);
55 void vp9_set_pred_flag_mbskip(MACROBLOCKD *xd, BLOCK_SIZE bsize,
105 static const vp9_prob *get_tx_probs(BLOCK_SIZE bsize, uint8_t context,
118 const BLOCK_SIZE bsize = m->mbmi.sb_type;
123 static void update_tx_counts(BLOCK_SIZE bsize, uint8_t context,
vp9_reconinter.c 122 static void build_inter_predictors(int plane, int block, BLOCK_SIZE bsize,
178 // calculate the subsampled BLOCK_SIZE, but that type isn't defined for
181 BLOCK_SIZE bsize,
185 const MACROBLOCKD* const xd, BLOCK_SIZE bsize, int plane,
220 static void build_inter_predictors_for_planes(MACROBLOCKD *xd, BLOCK_SIZE bsize,
234 BLOCK_SIZE bsize) {
238 BLOCK_SIZE bsize) {
243 BLOCK_SIZE bsize) {
  /external/yaffs2/yaffs2/direct/
yaffs_fileem2k.h 27 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE))
39 #define BLOCK_SIZE (PAGES_PER_BLOCK * (PAGE_SIZE))
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 128 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
135 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
136 public SHA1() { super("SHA-1", EVP_MD, SIZE, BLOCK_SIZE); }
142 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
143 public SHA256() { super("SHA-256", EVP_MD, SIZE, BLOCK_SIZE); }
149 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
150 public SHA384() { super("SHA-384", EVP_MD, SIZE, BLOCK_SIZE); }
156 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
157 public SHA512() { super("SHA-512", EVP_MD, SIZE, BLOCK_SIZE); }
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 24 private static final int BLOCK_SIZE = 16;
58 if (c.getBlockSize() != BLOCK_SIZE)
61 "cipher required with a block size of " + BLOCK_SIZE + ".");
122 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
131 // (but must be 16 if nonce length not 12) (BLOCK_SIZE?)
140 this.H = new byte[BLOCK_SIZE];
148 this.J0 = new byte[BLOCK_SIZE];
153 this.J0[BLOCK_SIZE - 1] = 0x01;
158 byte[] X = new byte[BLOCK_SIZE];
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 14 protected static final int BLOCK_SIZE = 8;
82 return BLOCK_SIZE;
96 if ((inOff + BLOCK_SIZE) > in.length)
101 if ((outOff + BLOCK_SIZE) > out.length)
106 byte[] temp = new byte[BLOCK_SIZE];
121 return BLOCK_SIZE;
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 36 private static final int BLOCK_SIZE = 4096;
37 private byte[] block = new byte[BLOCK_SIZE];
55 while(total < BLOCK_SIZE) {
56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
79 f.setLength(BLOCK_SIZE);
  /external/grub/stage2/
fsys_minix.c 41 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
46 #define SBLOCK (WHICH_SUPER * BLOCK_SIZE / DEV_BSIZE) /* = 2 */
72 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
73 #define MINIX2_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix2_inode)))
141 ((struct minix_inode *)((int) SUPERBLOCK + BLOCK_SIZE))
145 ((int)((int)DATABLOCK1 + BLOCK_SIZE))
195 return devread (fsblock * (BLOCK_SIZE / DEV_BSIZE), 0,
196 BLOCK_SIZE, (char *) buffer);
258 offset = filepos & (BLOCK_SIZE - 1);
266 size = BLOCK_SIZE;
    [all...]
vstafs.h 26 #define BLOCK_SIZE 512
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
StatFsTest.java 24 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE));
35 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE));
44 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStatFs.java 14 public static final int BLOCK_SIZE = 4096;
25 return BLOCK_SIZE;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
romfs_fs.h 6 #define ROMBSIZE BLOCK_SIZE
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
romfs_fs.h 6 #define ROMBSIZE BLOCK_SIZE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
romfs_fs.h 6 #define ROMBSIZE BLOCK_SIZE
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_mem.cc 15 #define BLOCK_SIZE (1 << 16)
16 #define BLOCK_MASK (BLOCK_SIZE - 1)
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
SparseTableTests.java 41 private static final int BLOCK_SIZE = 8;
58 final SparseTable table = new SparseTable(16, BLOCK_SIZE, 1);
81 final SparseTable table = new SparseTable(DEFAULT_SIZE, BLOCK_SIZE, 1);
109 new File[] { contentFile }, BLOCK_SIZE);
143 final SparseTable table = new SparseTable(DEFAULT_SIZE, BLOCK_SIZE, numOfContents);
168 BLOCK_SIZE);

Completed in 1124 milliseconds

1 2 3 4 5 6 7 8