/external/libvpx/libvpx/vp9/common/ |
vp9_reconintra.h | 17 void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in,
|
vp9_findnearmv.c | 41 int block_idx, int ref_idx, 52 mv_list, block_idx, mi_row, mi_col); 55 if (block_idx == 0) { 57 } else if (block_idx == 1 || block_idx == 2) { 70 assert(block_idx == 3);
|
vp9_mvref_common.h | 22 int block_idx,
|
vp9_mvref_common.c | 123 int search_col, int block_idx) { 124 return block_idx >= 0 && candidate->mbmi.sb_type < BLOCK_8X8 125 ? candidate->bmi[idx_n_column_to_subblock[block_idx][search_col == 0]] 189 int block_idx, 216 mv_ref->col, block_idx)); 222 mv_ref->col, block_idx));
|
vp9_entropy.h | 183 PLANE_TYPE type, int block_idx, 187 get_scan_nb_4x4(get_tx_type_4x4(type, xd, block_idx), scan, scan_nb);
|
vp9_findnearmv.h | 41 int block_idx, int ref_idx,
|
vp9_reconintra.c | 372 void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, 378 const int have_top = (block_idx >> bwl) || xd->up_available; 379 const int have_left = (block_idx & wmask) || xd->left_available; 380 const int have_right = ((block_idx & wmask) != wmask);
|
/external/chromium/net/tools/flip_server/ |
balsa_headers.h | 104 const char* GetPtr(Blocks::size_type block_idx) const { 105 DCHECK_LT(block_idx, blocks_.size()) 106 << block_idx << ", " << blocks_.size(); 107 return blocks_[block_idx].buffer; 110 char* GetPtr(Blocks::size_type block_idx) { 111 DCHECK_LT(block_idx, blocks_.size()) 112 << block_idx << ", " << blocks_.size(); 113 return blocks_[block_idx].buffer; 144 // StringPiece which points to that data. If block_idx != NULL, it will be [all...] |
balsa_headers.cc | 137 Blocks::size_type block_idx = can_write_to_contiguous_buffer_ ? 1 : 0; local 138 for (; block_idx < blocks_.size(); ++block_idx) { 139 if (blocks_[block_idx].bytes_free >= size) { 140 block = &blocks_[block_idx]; 156 *block_buffer_idx = block_idx; [all...] |
/external/chromium_org/net/tools/balsa/ |
balsa_headers.h | 104 const char* GetPtr(Blocks::size_type block_idx) const { 105 DCHECK_LT(block_idx, blocks_.size()) 106 << block_idx << ", " << blocks_.size(); 107 return blocks_[block_idx].buffer; 110 char* GetPtr(Blocks::size_type block_idx) { 111 DCHECK_LT(block_idx, blocks_.size()) 112 << block_idx << ", " << blocks_.size(); 113 return blocks_[block_idx].buffer; 144 // StringPiece which points to that data. If block_idx != NULL, it will be [all...] |
balsa_headers.cc | 149 Blocks::size_type block_idx = can_write_to_contiguous_buffer_ ? 1 : 0; local 150 for (; block_idx < blocks_.size(); ++block_idx) { 151 if (blocks_[block_idx].bytes_free >= size) { 152 block = &blocks_[block_idx]; 168 *block_buffer_idx = block_idx; [all...] |
/external/libvpx/libvpx/test/ |
sad_test.cc | 86 virtual uint8_t* GetReference(int block_idx) { 87 return reference_data_ + block_idx * kDataBlockSize; 92 unsigned int ReferenceSAD(unsigned int max_sad, int block_idx = 0) { 94 const uint8_t* const reference = GetReference(block_idx); 139 unsigned int SAD(unsigned int max_sad, int block_idx = 0) { 141 const uint8_t* const reference = GetReference(block_idx);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_detokenize.c | 93 vp9_reader *r, int block_idx, 113 get_scan(xd, tx_size, type, block_idx, &scan, &nb);
|
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 418 static void assign_neighbor(EC_BLOCK *neighbor, MODE_INFO *mi, int block_idx) 422 neighbor->mv = mi->bmi[block_idx].mv.as_mv;
|
/art/compiler/dex/ |
mir_graph.cc | 728 int block_idx = all_blocks ? idx : dfs_order_->Get(idx); local 729 BasicBlock *bb = GetBasicBlock(block_idx); [all...] |