Searched defs:neighbors (Results 1 - 9 of 9) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h29 const int16_t *neighbors; member in struct:__anon11903
35 static INLINE int get_coef_context(const int16_t *neighbors, argument
37 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] +
38 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >>
/external/opencv/cv/src/
H A Dcvsnakes.cpp82 int neighbors = win.height * win.width; local
162 Econt = (float *) cvAlloc( neighbors * sizeof( float ));
163 Ecurv = (float *) cvAlloc( neighbors * sizeof( float ));
164 Eimg = (float *) cvAlloc( neighbors * sizeof( float ));
165 E = (float *) cvAlloc( neighbors * sizeof( float ));
238 for( k = 0; k < neighbors; k++ )
276 for( k = 0; k < neighbors; k++ )
341 for( k = 0; k < neighbors; k++ )
360 /* Find Minimize point in the neighbors */
361 for( k = 0; k < neighbors;
[all...]
H A Dcvcalibinit.cpp104 struct CvCBCorner* neighbors[4]; // Neighbor corners member in struct:CvCBCorner
113 int count; // Number of quad neighbors
116 bool ordered; // true if corners/neighbors are ordered counter-clockwise
118 // neighbors and corners are synced, i.e., neighbor 0 shares corner 0
120 struct CvCBQuad *neighbors[4]; // Pointers of quad neighbors member in struct:CvCBQuad
366 // Find quad's neighbors
597 CvCBQuad *neighbor = q->neighbors[i];
691 { // ok, look at neighbors
707 CvCBQuad *neighbor = quads[i]->neighbors[
[all...]
/external/opencv/ml/src/
H A Dmlknearest.cpp151 float* neighbor_responses, const float** neighbors, float* dist ) const
193 nn = neighbors ? neighbors + (start + i)*k : 0;
354 "The distances from the neighbors (if present) must be floating-point matrix of <num_samples> x <k> size" );
150 find_neighbors_direct( const CvMat* _samples, int k, int start, int end, float* neighbor_responses, const float** neighbors, float* dist ) const argument
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c355 * The neighbors are enumerated with the upper-left neighbor as the first
360 static void find_neighboring_blocks(MODE_INFO *mi, EC_BLOCK *neighbors, argument
367 if (mb_col > 0) assign_neighbor(&neighbors[i], mi - mi_stride - 1, 15);
371 assign_neighbor(&neighbors[i], mi - mi_stride, j);
376 if (mb_row > 0) assign_neighbor(&neighbors[i], mi - mi_stride + 1, 12);
379 for (j = 0; j <= 12; j += 4, ++i) assign_neighbor(&neighbors[i], mi + 1, j);
385 assign_neighbor(&neighbors[i], mi + mi_stride + 1, 0);
389 assign_neighbor(&neighbors[i], mi + mi_stride, j);
395 assign_neighbor(&neighbors[i], mi + mi_stride - 1, 4);
399 assign_neighbor(&neighbors[
409 interpolate_mvs(MACROBLOCKD *mb, EC_BLOCK *neighbors, MV_REFERENCE_FRAME dom_ref_frame) argument
464 EC_BLOCK neighbors[NUM_NEIGHBORS]; local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dmcomp.c846 MV neighbors[4] = { { 0, -1 }, { -1, 0 }, { 1, 0 }, { 0, 1 } }; local
978 /* check 4 1-away neighbors */
986 this_mv.as_mv.row = br + neighbors[i].row;
987 this_mv.as_mv.col = bc + neighbors[i].col;
995 this_mv.as_mv.row = br + neighbors[i].row;
996 this_mv.as_mv.col = bc + neighbors[i].col;
1008 br += neighbors[best_site].row;
1009 bc += neighbors[best_site].col;
1638 MV neighbors[4] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 } }; local
1670 this_row_offset = ref_mv->as_mv.row + neighbors[
1716 MV neighbors[4] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 } }; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c694 LLVMValueRef neighbors[2][2][4]; local
759 data_ptr, neighbors[0][0]);
764 data_ptr, neighbors[0][1]);
770 neighbors[0][0][chan],
771 neighbors[0][1][chan]);
783 data_ptr, neighbors[1][0]);
788 data_ptr, neighbors[1][1]);
794 neighbors[0][0][chan],
795 neighbors[0][1][chan],
796 neighbors[
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mcomp.c815 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; local
833 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col };
842 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col };
1027 // are 4 1-away neighbors, and cost_list is non-null
1269 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; local
1274 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col };
1281 const MV this_mv = { br + neighbors[
2238 const MV neighbors[4] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 } }; local
2312 const MV neighbors[8] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 }, local
[all...]
/external/opencv/cv/include/
H A Dcvtypes.h378 int neighbors; member in struct:CvAvgComp

Completed in 279 milliseconds