OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:coeff_count
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
SmoothingUtils.java
46
final int
COEFF_COUNT
= 4; // Coefficient count for 3d smoothing
47
if (retval.length !=
COEFF_COUNT
|| retval[0].length != 1) {
54
final float[][] m0 = new float[
COEFF_COUNT
][
COEFF_COUNT
];
55
final float[][] m0Inv = new float[
COEFF_COUNT
][
COEFF_COUNT
];
56
final float[][] m1 = new float[
COEFF_COUNT
][N];
60
for (int i = 0; i <
COEFF_COUNT
; ++i) {
62
for (int j = 0; j <
COEFF_COUNT
; ++j) {
76
for (int i = 0; i <
COEFF_COUNT
; ++i)
[
all
...]
/external/opencv/cxcore/src/
cxutils.cpp
276
int step = 1,
coeff_count
;
local
289
coeff_count
= coeffs->rows + coeffs->cols - 1;
291
if( (coeffs->rows != 1 && coeffs->cols != 1) || (
coeff_count
!= 3 &&
coeff_count
!= 4) )
305
if(
coeff_count
== 4 )
316
if(
coeff_count
== 4 )
[
all
...]
Completed in 2425 milliseconds