/system/extras/tests/directiotest/ |
directiotest.c | 161 static void update_progress(int current, int total) 163 double pct_done = (double)current * 100 / total; 164 printf("Testing area %d/%d (%6.2f%% complete)\r", current, total,
|
/external/dbus/test/ |
decode-gcov.c | 581 printf (" %ld executions of arc %d (total arcs %d)\n", 593 printf ("total of %d functions and %d arcs in section %d\n", 600 printf ("%d total function sections in %d total .da file sections\n", 1116 dbus_int64_t total; local 1159 total = 0; 1162 total += arc->arc_count; 1163 block_graph[i].exec_count = total; 1169 total = 0; 1172 total += arc->arc_count 1959 dbus_int64_t total; local [all...] |
/external/blktrace/btt/ |
inlines.h | 85 ap->min = ap->total = ap->max = t; 91 ap->total += t; 99 ap->total = (n * t); 105 ap->total += (n * t); 114 ap->total -= t;
|
btt_plot.py | 116 total = 0.0 118 total += val 119 return total / len(vals)
|
/external/webkit/WebKit/android/jni/ |
PictureSet.cpp | 540 SkRegion* total = new SkRegion(totalBounds); local 555 DBG_SET_LOGD("elapsed=%d working=%p total->getBounds()=" 557 total->getBounds().fLeft, total->getBounds().fTop, 558 total->getBounds().fRight, total->getBounds().fBottom, 561 total->op(working->mArea, SkRegion::kDifference_Op); 568 total->op(working->mArea, SkRegion::kDifference_Op); 603 DBG_SET_LOGD("%p w=%d h=%d total->isEmpty()=%s multiUnsplitFastPictures=%d", 604 this, mWidth, mHeight, total->isEmpty() ? "true" : "false" [all...] |
/external/dbus/dbus/ |
dbus-transport-socket.c | 481 int total; local 505 total = 0; 517 if (total > socket_transport->max_bytes_written_per_iteration) 520 total, socket_transport->max_bytes_written_per_iteration); 621 total += bytes_written; 652 int total; local 664 total = 0; 671 if (total > socket_transport->max_bytes_read_per_iteration) 674 total, socket_transport->max_bytes_read_per_iteration); 768 total += bytes_read; [all...] |
/external/v8/tools/ |
profile_view.js | 177 * Returns a share of the function's total time in application's total time. 186 * Returns a share of the function's self time in application's total time. 195 * Returns a share of the function's total time in its parent's total time.
|
tickprocessor.js | 180 { total: 0, unaccounted: 0, excluded: 0, gc: 0 }; 342 this.ticks_.total++; 378 // Sort by total time, desc, then by name, desc. 402 ', (' + this.ticks_.total + 406 if (this.ticks_.total == 0) return; 411 this.printCounter(this.ticks_.unaccounted, this.ticks_.total); 420 var totalTicks = this.ticks_.total; 424 // Our total time contains all the ticks encountered, 457 // Sort by total time, desc, then by name, desc. 480 print(' ticks total nonlib name') [all...] |
/external/bluetooth/bluez/test/ |
rctest.c | 419 long total; local 429 total = 0; 430 while (total < data_size) { 476 total += r; 482 syslog(LOG_INFO,"%s%ld bytes in %.2f sec, %.2f kB/s", ts, total, 483 tv2fl(tv_diff), (float)(total / tv2fl(tv_diff) ) / 1024.0);
|
/external/skia/src/animator/ |
SkAnimateActive.cpp | 70 int total = oldCount + newCount; local 71 if (total == 0) 73 fInterpolators.setCount(total); 75 for (index = oldCount; index < total; index++) 77 fAnimators.setCount(total); 80 fState.setCount(total); 118 // total = oldCount + newCount; 119 // for (index = oldCount; index < total; index++)
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
SyncService.java | 151 * @param totalWork the total amount of work. 358 int total = getTotalRemoteFileSize(entries, fls); local 361 monitor.start(total); 382 int total = remote.getSizeValue(); local 383 monitor.start(total); 432 // get the total count of the bytes to transfer 434 int total = getTotalLocalFileSize(fileArray); local 436 monitor.start(total); [all...] |
/external/bluetooth/glib/glib/ |
gtimer.c | 142 gdouble total; local 152 total = elapsed / 1e9; 157 return total;
|
/external/qemu/block/ |
raw-win32.c | 184 ULARGE_INTEGER available, total, total_free; local 196 if (!GetDiskFreeSpaceEx(s->drive_path, &available, &total, &total_free)) 198 l.QuadPart = total.QuadPart;
|
/libcore/luni/src/main/java/org/apache/harmony/nio/internal/ |
SelectorImpl.java | 265 int total = numReadable + numWritable; local 266 if (readyKeys.length < total) { 267 int newSize = Math.max((int) (readyKeys.length * 1.5f), total);
|
/external/v8/src/ |
global-handles.cc | 461 int total = 0; local 468 total++; 476 PrintF(" allocated memory = %dB\n", sizeof(Node) * total); 481 PrintF(" # total = %d\n", total);
|
/external/webkit/WebCore/inspector/front-end/ |
AbstractTimelinePanel.js | 437 var total = 0; 449 total += value; 452 return {categoryValues: categoryValues, total: total};
|
/packages/apps/Email/src/com/android/exchange/provider/ |
ExchangeProvider.java | 88 bundle.putInt(EXTRAS_TOTAL_RESULTS, galResult.total);
|
/development/tools/findunused/ |
findunusedresources | 9 -p option prints out unused resources, otherwise a total count is printed
|
/external/jpeg/ |
jquant2.c | 510 long total = 0; local 524 total += count; 532 cinfo->colormap[0][icolor] = (JSAMPLE) ((c0total + (total>>1)) / total); 533 cinfo->colormap[1][icolor] = (JSAMPLE) ((c1total + (total>>1)) / total); 534 cinfo->colormap[2][icolor] = (JSAMPLE) ((c2total + (total>>1)) / total); [all...] |
/external/quake/quake/src/WinQuake/ |
sbar.cpp | 1142 int total; 1146 total = cl.completed_time - s->entertime; 1147 minutes = (int)total/60; 1148 n = total - minutes*60; 1244 int total; 1248 total = cl.completed_time - s->entertime; 1249 minutes = (int)total/60; 1250 n = total - minutes*60;
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
run_chromium_webkit_tests.py | 117 self.total = len(test_files) 118 self.remaining = self.total 547 thread_timings is a list of dicts with the total runtime 665 result_summary.total != result_summary.expected)): 669 self._print_one_line_summary(result_summary.total, [all...] |
/external/qemu/android/skin/ |
trackball.c | 168 #define DOT_MAX (6*DOT_GRID*DOT_GRID*DOT_CELLS) /* total number of dots */ 308 int empty = 0, total = 0; local 317 SphereCoord coord = &ball->sphere_map[total]; 352 total++; 361 total++; 367 ball->sphere_count = total;
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Paint.java | 807 float total = 0f; local 813 return total + mainFont.mMetrics.charsWidth(text, i, lastIndex - i); 815 total += mainFont.mMetrics.charsWidth(text, i, upTo - i); 835 total += fontInfo.mMetrics.charsWidth(text, i, charCount); 846 total += mainFont.mMetrics.charsWidth(text, i, size); [all...] |
/system/extras/tests/memtest/ |
memtest.cpp | 594 size_t total = 0; local 602 total += size; 603 printf("size = %9zd, addr = %p (total = %9zd (%zd MB))\n", 604 size, addr, total, total / (1024*1024)); 613 printf("done. allocated %zd MB\n", total / (1024*1024));
|
/frameworks/base/opengl/libagl/ |
array.cpp | 375 total = 0; 404 uint32_t hits = total - misses; 407 case GL_POINTS: prim_count = total; break; 408 case GL_LINE_STRIP: prim_count = total - 1; break; 409 case GL_LINE_LOOP: prim_count = total - 1; break; 410 case GL_LINES: prim_count = total / 2; break; 411 case GL_TRIANGLE_STRIP: prim_count = total - 2; break; 412 case GL_TRIANGLE_FAN: prim_count = total - 2; break; 413 case GL_TRIANGLES: prim_count = total / 3; break; 416 printf( "total=%5u, hits=%5u, miss=%5u, hitrate=%3u%%, [all...] |