/frameworks/rs/java/tests/RsBLAS_Benchmark/libsgemm/ |
test_data.cpp | 12 const int c_count = (m * n); variable [all...] |
/cts/tests/tests/rsblas/libbnnmdata/ |
test_data.cpp | 32 const int c_count = (m * n); variable [all...] |
/external/gemmlowp/test/ |
test_data.cc | 19 extern const int c_count = (m * n); member in namespace:test_data [all...] |
test.cc | 759 const int c_count = m * n; local 760 std::unique_ptr<uint8_t[]> output_data(new uint8_t[c_count]); 775 GetResultStats(output_data.get(), expected_c_data, c_count, &stats); 979 const int c_count = m * n; local 1033 const int c_count = m * n; local [all...] |
/external/libavc/decoder/ |
ih264d_nal.c | 199 WORD8 c_count; local 215 c_count = 0; 223 c_count++; 225 c_count = 0; 234 c_count++; 236 c_count = 0; 249 if(c_count == NUM_OF_ZERO_BYTES_BEFORE_START_CODE 252 c_count = 0; 260 c_count++; 262 c_count = 0 [all...] |
/cts/tests/tests/rsblas/src/android/renderscript/cts/ |
BNNMTest.java | 83 // AddByteNoise(c_byte_output, c_count, 0.03f, 1); 86 final int c_count = Math.min(c_byte.length, c_byte_output.length); local 90 for (int i = 0; i < c_count; i++) { 112 final int differenceThreshold = Math.max((percentThreshold * c_count) / 100, 1); 148 int c_count = (m * n); local 149 byte[] c_byte_output = new byte[c_count]; 327 int c_count = (m * n); local 331 byte[] c_byte = new byte[c_count];
|
/external/toybox/toys/pending/ |
dd.c | 42 #define C_COUNT 0x0002 90 { "count", C_COUNT}, 101 static unsigned long long c_count; variable 236 while (!(toys.optflags & C_COUNT) || (st.in_full + st.in_part) < c_count) { 318 case C_COUNT: 319 c_count = strsuftoll(arg, 0, ULLONG_MAX);
|
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
BNNMTest.java | 125 // AddByteNoise(c_byte_output, c_count, 0.03f, 1); 128 final int c_count = Math.min(c_byte.length, c_byte_output.length); local 132 for (int i = 0; i < c_count; i++) { 154 final int differenceThreshold = Math.max((percentThreshold * c_count) / 100, 1); 235 int c_count = (m * n); local 236 byte[] c_byte_output = new byte[c_count]; 306 int c_count = (m * n); local 307 byte[] c_byte_output = new byte[c_count]; 333 int c_count = (m * n); local 337 byte[] c_byte = new byte[c_count]; [all...] |
SGEMMTest.java | 237 int c_count = (m * n); local 241 byte[] c_byte = new byte[c_count]; 264 float[] c_float_out = new float[c_count];
|
/external/opencv/ml/src/ |
mltree.cpp | 341 int c_count, prev_label; local 381 c_count = num_valid > 0; 385 c_count += *int_ptr[i] != *int_ptr[i-1]; 388 max_c_count = MAX( max_c_count, c_count ); 389 cat_count->data.i[ci] = c_count; 393 if( cat_map->cols < total_c_count + c_count ) 397 MAX(cat_map->cols*3/2,total_c_count+c_count), CV_32SC1 )); 404 total_c_count += c_count; 408 c_count = -1; 414 c_map[++c_count] = prev_label = cur_label [all...] |
/external/opencv3/apps/traincascade/ |
old_ml_tree.cpp | 423 int c_count, prev_label; local 472 c_count = num_valid > 0; 479 c_count ++ ; 486 c_count += *int_ptr[i] != *int_ptr[i-1]; 490 max_c_count = MAX( max_c_count, c_count ); 491 cat_count->data.i[ci] = c_count; 495 if( cat_map->cols < total_c_count + c_count ) 499 MAX(cat_map->cols*3/2,total_c_count+c_count), CV_32SC1 )); 506 total_c_count += c_count; 508 c_count = -1 [all...] |