/external/opencv/cvaux/src/ |
cvcreatehandmask.cpp | 74 k_point = numbers->total;
|
/external/valgrind/massif/tests/ |
big-alloc.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
deep-A.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 59 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
deep-B.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 57 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
deep-C.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 54 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
deep-D.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
/frameworks/base/core/java/com/android/internal/util/ |
ArrayUtils.java | 201 public static long total(long[] array) { method in class:ArrayUtils 202 long total = 0; local 204 total += value; 206 return total;
|
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/ |
CameraPreviewActivity.java | 319 float total = 0; local 321 total += (float)mTiming[i]; 323 total /= mTiming.length; 324 Log.e(TAG, "time + " + total);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocationClustering.java | 38 // If the total distance change is less than this ratio, stop iterating. 68 final int total = baseSet.getTotalMediaItemCount(); local 69 final SmallItem[] buf = new SmallItem[total]; 75 if (index < 0 || index >= total) return; 88 for (int i = 0; i < total; i++) {
|
/system/extras/sound/ |
playwav.c | 200 unsigned total = 0; local 276 total += sz; 283 hdr.data_sz = total; 284 hdr.riff_sz = total + 8 + 16 + 8;
|
/system/extras/taskstats/ |
taskstats.c | 168 double average_ms(unsigned long long total, unsigned long long count) { 172 return ((double)total) / count / 1e6; 175 unsigned long long average_ns(unsigned long long total, 180 return total / count;
|
/external/libxml2/ |
xpath.c | 12114 int total = 0, hasNsNodes = 0; local 12723 int total = 0, cur; local 12847 int total = 0, cur; local 12967 int total = 0; local 13272 int total = 0; local [all...] |
/cts/tests/core/runner/src/com/android/cts/runner/ |
CtsTestRunListener.java | 117 long total = runtime.totalMemory(); local 119 long used = total - free; 121 Log.d(TAG, "Total memory : " + total);
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestResults.java | 94 int total = 0; local 96 total += result.countTests(status); 98 return total;
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/ |
PieRenderer.java | 177 double total = 0; local 179 total += values[i]; 182 return (1d / total);
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_thread_registry_test.cc | 37 uptr total, running, alive; local 38 registry->GetNumberOfThreads(&total, &running, &alive); 39 EXPECT_EQ(exp_total, total);
|
/external/fio/t/ |
btrace2fio.c | 175 unsigned int total; local 178 total = sizeof(buf); 179 if (total > fifo_room(fifo)) 180 total = fifo_room(fifo); 182 ret = read(fd, buf, total); 602 unsigned long total, usec; local 611 total = ddir_rw_sum(o->ios); 620 perc = ((float) o->ios[i] * 100.0) / (float) total; 622 perc = ((float) o->merges[i] * 100.0) / (float) total; 651 unsigned long total; local [all...] |
/external/libvorbis/vq/ |
distribution.c | 41 long total=0; local 220 total++; 233 printf("Total scalars: %ld\n",total);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
ConnectionPool.java | 110 /** Returns total number of connections in the pool. */ 121 /** Returns total number of multiplexed connections in the pool. */ 123 int total = 0; local 125 if (connection.isSpdy()) total++; 127 return total; 130 /** Returns total number of http connections in the pool. */
|
/external/selinux/libselinux/src/ |
label_db.c | 224 unsigned int i, total = 0; local 227 total += catalog->specs[i].matches; 230 catalog->nspec, total);
|
label_media.c | 195 unsigned int i, total = 0; local 198 total += data->spec_arr[i].matches; 201 data->nspec, total);
|
label_x.c | 221 unsigned int i, total = 0; local 224 total += data->spec_arr[i].matches; 227 data->nspec, total);
|
/external/vboot_reference/host/lib21/ |
host_signature.c | 203 uint32_t total = 0, size = 0; local 212 total += size; 215 *size_ptr = total;
|
/external/wpa_supplicant_8/hostapd/ |
hostapd_cli.c | 630 int res, i, total; local 641 total = res; 643 tmp = &buf[total]; 644 res = os_snprintf(tmp, sizeof(buf) - total, " %s", argv[i]); 645 if (os_snprintf_error(sizeof(buf) - total, res)) 647 total += res; 932 int total; local 950 total = res; 952 tmp = cmd + total; 953 res = os_snprintf(tmp, sizeof(cmd) - total, " %s", argv[i]) [all...] |
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
SGEMMTest.java | 110 float total = 0.f; local 115 total += mult; 118 c_float[c_index] = total;
|