/external/eigen/blas/testing/ |
runblastest.sh | 14 if [ -f $1.summ ]; then rm $1.summ; fi 27 if [ -f $1.summ ]; then 28 if [ `grep "FATAL ERROR" $1.summ | wc -l` -gt 0 ]; then 29 echo -e $red "Test $1 failed (FATAL ERROR, read the file $1.summ for details)" $black 36 if [ `grep "FAILED THE TESTS OF ERROR-EXITS" $1.summ | wc -l` -gt 0 ]; then 37 echo -e $red "Test $1 failed (FAILED THE TESTS OF ERROR-EXITS, read the file $1.summ for details)" $black
|
/external/lzma/C/ |
Ppmd.h | 21 #define PPMD_GET_MEAN_SPEC(summ, shift, round) (((summ) + (1 << ((shift) - (round)))) >> (shift))
22 #define PPMD_GET_MEAN(summ) PPMD_GET_MEAN_SPEC((summ), PPMD_PERIOD_BITS, 2)
35 UInt16 Summ; /* Freq */
41 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
|
/external/oprofile/pp/ |
opreport.cpp | 117 summary summ; local 118 summ.lib_image = image; 119 deps.push_back(summ); 130 summary & summ = find_summary(profile.image); local 131 count_type app_count = summ.add_files(profile.files, pclass); 140 summary & summ = find_summary(it->lib_image); local 141 count_type lib_count = summ.add_files(it->files, pclass); 297 summary const & summ = app.deps[j]; local 299 if (summ.counts.zero()) 308 output_count(tot_count, summ.counts[i]) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
data.py | 251 summ = {} 257 summ[filename_fn(filename)] = len(lines) 258 return summ
|
/external/opencv/cvaux/src/ |
cvlmeds.cpp | 584 double l1, l2, w, old_norm = -1, new_norm = -2, summ; local 649 summ = 0; 654 summ += U[a * 9 + t] * F[t]; 657 new_norm += summ * summ; 682 double norm, summ, best_norm; local 811 summ = 0; 816 summ += A[a9 + t] * solution[t]; 819 norm += summ * summ; [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
entropy_coding.c | 136 WebRtc_Word32 summ[FRAMESAMPLES/8]; local 142 summ[k] = WEBRTC_SPL_RSHIFT_W32(PSpecQ12[k] + PSpecQ12[FRAMESAMPLES/4-1 - k] + 16, 5); 148 sum += summ[n]; 161 sum += WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(WebRtcIsacfix_kCos[k][n], summ[n]) + 256, 9); [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.c | 59 WebRtc_Word32 summ[FRAMESAMPLES / 8]; local 66 summ[k] = (PSpecQ12[k] + PSpecQ12[FRAMESAMPLES_QUARTER - 1 - k] + 16) >> 5; 72 sum += summ[n]; 88 sum += (CS_ptrQ9[n] * summ[n] + 256) >> 9; [all...] |