Searched refs:in_count (Results 1 – 5 of 5) sorted by relevance
/external/boringssl/src/crypto/ |
D | refcount_c11.c | 37 void CRYPTO_refcount_inc(CRYPTO_refcount_t *in_count) { in CRYPTO_refcount_inc() argument 38 _Atomic CRYPTO_refcount_t *count = (_Atomic CRYPTO_refcount_t *) in_count; in CRYPTO_refcount_inc() 49 int CRYPTO_refcount_dec_and_test_zero(CRYPTO_refcount_t *in_count) { in CRYPTO_refcount_dec_and_test_zero() argument 50 _Atomic CRYPTO_refcount_t *count = (_Atomic CRYPTO_refcount_t *)in_count; in CRYPTO_refcount_dec_and_test_zero()
|
/external/opencv3/modules/core/src/ |
D | pca.cpp | 69 int len, in_count; in operator ()() local 76 in_count = data.cols; in operator ()() 83 in_count = data.rows; in operator ()() 88 int count = std::min(len, in_count), out_count = count; in operator ()() 94 if( len <= in_count ) in operator ()() 206 int len, in_count; in operator ()() local 213 in_count = data.cols; in operator ()() 220 in_count = data.rows; in operator ()() 227 int count = std::min(len, in_count); in operator ()() 231 if( len <= in_count ) in operator ()()
|
/external/opencv/cxcore/src/ |
D | cxmatrix.cpp | 1596 int i, len, in_count, count, out_count; in cvCalcPCA() local 1621 in_count = data->cols; in cvCalcPCA() 1633 in_count = data->rows; in cvCalcPCA() 1643 count = MIN(len, in_count); in cvCalcPCA() 1658 if( len <= in_count ) in cvCalcPCA() 1767 int i, len, in_count; in cvProjectPCA() local 1800 in_count = data->cols; in cvProjectPCA() 1808 in_count = data->rows; in cvProjectPCA() 1827 block_count0 = MIN( block_count0, in_count ); in cvProjectPCA() 1852 for( i = 0; i < in_count; i += block_count ) in cvProjectPCA() [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | ppp_defs.h | 125 __u32 in_count; /* Bytes received */ member
|
/external/opencv3/modules/core/test/ |
D | test_math.cpp | 360 Core_MatrixTest( int in_count, int out_count, 373 Core_MatrixTest::Core_MatrixTest( int in_count, int out_count, in Core_MatrixTest() argument 378 for( i = 0; i < in_count; i++ ) in Core_MatrixTest()
|