/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
ColorfulnessFilter.java | 67 float total = 0; local 73 total += value; 78 float value = hueHistogram[c] / total;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
StopWatch.java | 56 * Stop it and log the result, if the total time >= {@code timeThresholdToLog}. 65 final long total = stop - start; local 66 if (total < timeThresholdToLog) return; 71 sb.append(total);
|
/bionic/libc/dns/resolv/ |
res_stats.c | 129 int total = successes + errors + timeouts; local 133 total, rtt_avg, params->min_samples); 135 if (total >= params->min_samples && (errors > 0 || timeouts > 0)) { 136 int success_rate = successes * 100 / total;
|
/build/tools/rgb2565/ |
to565.c | 105 unsigned total = 0; local 117 total += count; 126 total += count; 128 fprintf(stderr,"%d pixels\n",total);
|
/development/ndk/platforms/android-3/include/linux/ |
smb.h | 33 __u16 total; member in struct:smb_dskattr
|
/external/ImageMagick/MagickCore/ |
opencl.h | 41 total; member in struct:_KernelProfileRecord
|
timer.h | 37 total; member in struct:_Timer
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
submit.py | 60 total = 0 81 total += 1 84 total += 1 87 return (metadata['Batch'], total)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
AnalyzerStatsChecker.cpp | 72 unsigned total = 0, unreachable = 0; local 77 ++total; 106 NumBlocks += total; 109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
|
/external/clang/test/SemaCXX/ |
for-range-examples.cpp | 120 int total = 0; local 123 total += n; 125 assert(total == 10); 128 total += n; 130 assert(total == 460); 137 ++total; 139 assert(total == 463); 147 total += a; 149 assert(total == 500);
|
/external/fio/t/ |
lfsr-test.c | 39 double total, mean; local 118 total = utime_since(&start, &end); 119 mean = total / fl->num_vals; 125 printf("Elapsed: %lf s\n", total / pow(10,9));
|
/external/icu/icu4c/source/test/perf/usetperf/ |
usetperf.cpp | 47 int32_t total; member in class:CmdOp 51 total = 0; 56 ++total; 61 return total;
|
/external/jemalloc/test/integration/ |
aligned_alloc.c | 77 size_t alignment, size, total; local 87 total = 0; 102 total += malloc_usable_size(ps[i]); 103 if (total >= (MAXALIGN << 1))
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
StreamUtils.java | 72 int startPosition = output.position(), total = 0, bytesRead;
local 75 total += bytesRead;
76 output.position(startPosition + total);
79 return total;
|
/external/v8/src/ |
runtime-profiler.cc | 100 int typeinfo, generic, total, type_percentage, generic_percentage; local 101 GetICCounts(function, &typeinfo, &generic, &total, &type_percentage, 103 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, 105 PrintF(", generic ICs: %d/%d (%d%%)", generic, total, generic_percentage); 219 int typeinfo, generic, total, type_percentage, generic_percentage; local 220 GetICCounts(function, &typeinfo, &generic, &total, &type_percentage, 234 PrintF(", not enough type info: %d/%d (%d%%)]\n", typeinfo, total, 242 int typeinfo, generic, total, type_percentage, generic_percentage; local 243 GetICCounts(function, &typeinfo, &generic, &total, &type_percentage,
|
/external/valgrind/exp-bbv/tests/arm-linux/ |
million.S | 3 # total is 1 + 333332*3 + 2
|
/external/valgrind/exp-bbv/tests/ppc32-linux/ |
million.S | 3 # total is 3 + 499997*2 + 3
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
AsciiHprofWriter.java | 57 int total = 0; local 61 total += count; 70 // "CPU SAMPLES BEGIN (total = 826) Wed Jul 21 12:03:46 2010" 71 out.printf("CPU SAMPLES BEGIN (total = %d) %ta %tb %td %tT %tY\n", 72 total, now, now, now, now, now); 80 double self = (double)count/(double)total;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
GZIPInputStreamTest.java | 167 int total = 0; local 169 total += result; 173 assertEquals("Incorrectly decompressed", test.length, total); 176 total = 0; 178 total += result; 182 assertEquals("Incorrectly decompressed", test.length, total); 185 total = 0; 187 total += result; 191 assertEquals("Incorrectly decompressed", test.length, total);
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
OCSP.java | 248 int total = 0; local 249 while (total < contentLength) { 250 int count = in.read(response, total, response.length - total); 254 total += count; 255 if (total >= response.length && total < contentLength) { 256 response = Arrays.copyOf(response, total * 2); 259 response = Arrays.copyOf(response, total);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
FilterTypeSet.java | 99 final int total = mBaseSet.getMediaItemCount(); local 100 final Path[] buf = new Path[total]; 106 if (index < 0 || index >= total) return; 113 for (int i = 0; i < total; i++) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SelectionManager.java | 157 int total = set.getMediaItemCount(); local 161 while (index < total) { 162 int count = index + batch < total 164 : total - index; 186 int total = getTotalCount(); local 187 for (int i = 0; i < total; i++) { 220 int total = getTotalCount(); local 222 while (index < total) { 223 int count = Math.min(total - index, MediaSet.MEDIAITEM_BATCH_FETCH_COUNT);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
smb.h | 31 __u16 total; member in struct:smb_dskattr
|
/prebuilts/go/darwin-x86/test/bench/shootout/ |
k-nucleotide.c | 114 long *total = user_data; local 117 printf("%s %.3f\n", st->key, 100 * (float) st->stat / *total); 126 long total; local 132 total = generate_frequencies (fl, buffer, buflen, ht, ts, roots, sc); 134 if (!total) goto on_error; 137 g_list_foreach(lst, display_stat, &total); 152 long total; local 162 total = generate_frequencies (fl, buffer, buflen, ht, ts, roots, sc); 164 if (!total) goto on_error;
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
k-nucleotide.c | 114 long *total = user_data; local 117 printf("%s %.3f\n", st->key, 100 * (float) st->stat / *total); 126 long total; local 132 total = generate_frequencies (fl, buffer, buflen, ht, ts, roots, sc); 134 if (!total) goto on_error; 137 g_list_foreach(lst, display_stat, &total); 152 long total; local 162 total = generate_frequencies (fl, buffer, buflen, ht, ts, roots, sc); 164 if (!total) goto on_error;
|