HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 101 - 125 of 333) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/elfutils/libebl/
eblwstrtab.c 62 size_t total; member in struct:Ebl_WStrtab
261 st->total += newstr->len - (*sep)->len;
277 st->total += newstr->len;
316 data->d_buf = malloc ((st->total + nulllen) * sizeof (wchar_t));
326 data->d_size = st->total + nulllen;
336 assert (copylen == (st->total + nulllen) * sizeof (wchar_t));
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SuggestHelper.java 46 int total = 0; local
50 total += is[i].available();
54 ByteBuffer.allocateDirect(total).order(ByteOrder.nativeOrder());
59 if (got != total) {
60 Log.w(TAG, "Read " + got + " bytes, expected " + total);
63 Log.i(TAG, "Created mSuggest " + total + " bytes");
  /bionic/linker/
linker_format.c 86 int total; member in struct:__anon582
97 bo->total += len;
124 bo->total = 0;
132 return bo->total;
185 int total; member in struct:__anon583
205 fdo->total += ret;
215 fdo->total = 0;
223 return fdo->total;
  /development/tools/findunused/
findunusedstrings 7 -p option prints out unused strings, otherwise a total count is printed
  /external/skia/tests/
skia_test.cpp 54 void setIndexOfTotal(int index, int total) {
56 fTotal = total;
  /libcore/luni/src/main/java/org/apache/harmony/luni/platform/
OSNetworkSystem.java 85 int total = numReadable + numWritable; local
86 if (total == 0) {
  /external/bison/lib/
bitset_stats.c 111 unsigned int total; local
113 total = 0;
115 total += bins[i];
117 if (!total)
125 (100.0 * bins[i]) / total);
135 unsigned int total; local
138 total = 0;
140 total += bins[i];
142 if (!total)
156 max_width, i, bins[i], 100.0 * bins[i] / total);
    [all...]
  /external/bluetooth/glib/tests/
patterntest.c 192 total++; \
200 total++; \
208 total++; \
218 gint total = 0; local
  /external/chromium/third_party/icu/source/test/intltest/
jamotest.cpp 398 int32_t total = 0; local
402 ++total;
431 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
433 logln((UnicodeString)"All " + total + " test words passed");
  /external/icu4c/test/intltest/
jamotest.cpp 398 int32_t total = 0; local
402 ++total;
431 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
433 logln((UnicodeString)"All " + total + " test words passed");
  /external/kernel-headers/original/linux/
smb.h 30 __u16 total; member in struct:smb_dskattr
  /external/netperf/
hist.h 56 int total; member in struct:histogram_struct
  /external/webkit/WebCore/platform/
Arena.cpp 261 size_t total = 0; local
263 total += (a->limit - a->base);
265 total += (fa->limit - fa->base);
266 return total;
  /external/webkit/WebCore/platform/mac/
ContextMenuItemMac.mm 38 int total = [menu numberOfItems];
39 for (int i = 0; i < total; i++)
  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 265 // If there are no auto columns, or if the total is too wide, take
315 int total = nEffCols; local
316 while (total) {
317 int w = remainingWidth / total;
319 calcWidth[--total] += w;
  /hardware/broadcom/wlan/bcm4329/src/include/
dhdioctl.h 91 uint total; /* Total packets (or bursts) */ member in struct:dhd_pktgen
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 178 int total = 0; local
184 total = total + count;
187 return total;
  /external/webkit/SunSpider/resources/
sunspider-compare-results.js 71 itemTotals1 = {total: []};
97 itemTotals1["total"][i] = 0;
106 itemTotals2 = {total: []};
132 itemTotals2["total"][i] = 0;
150 itemTotals["total"][i] += time;
159 var total = 0;
166 total += time;
172 return total;
175 function computeMeans(count, total, categoryTotals, categoryMeans, testTotalsByCategory, testMeansByCategory)
177 var mean = total / count
    [all...]
  /external/zlib/examples/
gun.c 114 output file, a running CRC-32 check on the output and the total number of
120 int check; /* true if checking crc and total */
122 unsigned long total; member in struct:outd
125 /* Write output buffer and update the CRC-32 and total bytes written. write()
137 me->total += len;
469 outd.total = 0;
493 if (NEXT() != (int)(outd.total & 0xff) ||
494 NEXT() != (int)((outd.total >> 8) & 0xff) ||
495 NEXT() != (int)((outd.total >> 16) & 0xff) ||
496 NEXT() != (int)((outd.total >> 24) & 0xff))
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
Archive.java 593 long total = 0; local
609 total += n;
610 if (total >= next_inc) {
617 if (total > 0 && delta > 0) {
619 int percent = (int) (100 * total / size);
621 float speed = (float)total / (float)delta * (1000.f / 1024.f);
624 (int)(((size - total) / 1024.0f) / speed) :
638 monitor.setResult("Download aborted by user at %1$d bytes.", total);
644 if (total != size) {
646 size, total);
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.cpp 65 uint64_t total = 0; local
67 total += s_flagCounts[i];
69 if (total) {
70 printf("\nSamplingFlags: sample counts with flags set: (%lld total)\n", total);
73 printf(" [ %02d ] : %lld\t\t(%03.2f%%)\n", i, s_flagCounts[i], (100.0 * s_flagCounts[i]) / total);
287 printf("opcode count VM total | count of self\n");
311 printf("\t%% of total:\tsample count / all samples\n");
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 86 if (graphInfo.total) {
87 var totalLegendLabel = this._makeLegendElement(WebInspector.UIString("Total"), this.calculator.formatValue(graphInfo.total));
88 totalLegendLabel.addStyleClass("total");
145 // Calculate the total of all segments.
146 var total = 0;
148 total += segments[i].value;
151 var percents = segments.map(function(s) { return Math.max(Math.round(100 * s.value / total), 1) });
153 // Calculate the total percentage.
158 // Make sure our percentage total is not greater-than 100, it can be greate
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 406 int total = 0; local
410 total++;
412 total += 2;
414 total += 3;
417 return total;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySync.java 153 int total = 0; local
157 total += Integer.parseInt(part);
159 if (total == 0) {
160 total = 1;
162 return total;
  /external/blktrace/
blkparse.c 1771 struct io_stats total, *ios; local
    [all...]

Completed in 1165 milliseconds

1 2 3 45 6 7 8 91011>>