OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:idx_arr
(Results
1 - 8
of
8
) sorted by null
/external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c
120
int
idx_arr
[1024];
local
150
idx_arr
[idx++] = i * 4;
152
idx_arr
[idx++] = i * 4 + 1;
154
idx_arr
[idx++] = i * 4 + 2;
156
idx_arr
[idx++] = i * 4 + 3;
162
const int rc =
idx_arr
[i];
174
eob = iscan[
idx_arr
[i]] > eob ? iscan[
idx_arr
[i]] : eob;
/external/libvpx/libvpx/vpx_dsp/
quantize.c
239
int
idx_arr
[1024];
local
255
idx_arr
[idx++] = i;
261
const int rc = scan[
idx_arr
[i]];
275
eob =
idx_arr
[i];
298
int
idx_arr
[1024];
local
314
idx_arr
[idx++] = i;
320
const int rc = scan[
idx_arr
[i]];
332
eob =
idx_arr
[i];
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c
88
int
idx_arr
[1024];
local
103
idx_arr
[idx++] = i;
109
const int rc = scan[
idx_arr
[i]];
123
eob =
idx_arr
[i];
/external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp
392
cvPreprocessIndexArray( const CvMat*
idx_arr
, int data_arr_size, bool check_for_duplicates )
405
if( !CV_IS_MAT(
idx_arr
) )
408
if(
idx_arr
->rows != 1 &&
idx_arr
->cols != 1 )
411
idx_total =
idx_arr
->rows +
idx_arr
->cols - 1;
412
srcb =
idx_arr
->data.ptr;
413
srci =
idx_arr
->data.i;
415
type = CV_MAT_TYPE(
idx_arr
->type);
416
step = CV_IS_MAT_CONT(
idx_arr
->type) ? 1 : idx_arr->step/CV_ELEM_SIZE(type)
[
all
...]
boost.cpp
116
static CvMat* cvPreprocessIndexArray( const CvMat*
idx_arr
, int data_arr_size, bool check_for_duplicates=false )
129
if( !CV_IS_MAT(
idx_arr
) )
132
if(
idx_arr
->rows != 1 &&
idx_arr
->cols != 1 )
135
idx_total =
idx_arr
->rows +
idx_arr
->cols - 1;
136
srcb =
idx_arr
->data.ptr;
137
srci =
idx_arr
->data.i;
139
type = CV_MAT_TYPE(
idx_arr
->type);
140
step = CV_IS_MAT_CONT(
idx_arr
->type) ? 1 : idx_arr->step/CV_ELEM_SIZE(type)
[
all
...]
old_ml_precomp.hpp
333
CvMat* cvPreprocessIndexArray( const CvMat*
idx_arr
, int data_arr_size, bool check_for_duplicates=false );
/external/opencv/ml/src/
ml_inner_functions.cpp
459
cvPreprocessIndexArray( const CvMat*
idx_arr
, int data_arr_size, bool check_for_duplicates )
472
if( !CV_IS_MAT(
idx_arr
) )
475
if(
idx_arr
->rows != 1 &&
idx_arr
->cols != 1 )
478
idx_total =
idx_arr
->rows +
idx_arr
->cols - 1;
479
srcb =
idx_arr
->data.ptr;
480
srci =
idx_arr
->data.i;
482
type = CV_MAT_TYPE(
idx_arr
->type);
483
step = CV_IS_MAT_CONT(
idx_arr
->type) ? 1 : idx_arr->step/CV_ELEM_SIZE(type)
[
all
...]
_ml.h
337
CvMat* cvPreprocessIndexArray( const CvMat*
idx_arr
, int data_arr_size, bool check_for_duplicates=false );
Completed in 152 milliseconds