HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 376 - 400 of 2504) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
JarHostTestTest.java 151 // 5 shards total the number of tests.
152 int total = 0; local
158 total += ((HostTest) shard1).countTestCases();
165 total += ((HostTest) shard2).countTestCases();
172 total += ((HostTest) shard3).countTestCases();
179 total += ((HostTest) shard4).countTestCases();
186 total += ((HostTest) shard5).countTestCases();
188 assertEquals(238, total);
  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 311 uint32_t letters=0, total=0; local
369 total++;
374 printf("%d letters out of %d total UChars.\n", letters, total);
407 uint32_t letters=0, total=0; local
458 fprintf(stderr, "%s @ %d\n", u_errorName(status), total);
463 total++;
490 printf("%d letters out of %d total UChars.\n", letters, total);
890 uint32_t inbytes=0, total=0 local
996 uint32_t inchars=0, total=0; local
    [all...]
  /external/lisa/libs/utils/
results.py 103 self.total = []
131 self.total.append(run.total_nrg)
139 'Total' : Stats(self.total).get()
170 self.total = 0.0
181 self.total = self.little + self.big
183 self._log.debug('Energy LITTLE [%s], big [%s], Total [%s]',
184 self.little, self.big, self.total)
245 self.total_nrg = self.nrg.total
396 self.prf['edp1'] = nrg.total * math.pow(self.prf['run_sum'], 1
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_program.c 458 int shader_num, uint64_t time, uint64_t total)
470 (double)time / total * 100.0);
483 double total = 0; local
532 total += scaled[i];
535 if (total == 0) {
543 fprintf(stderr, "type ID cycles spent %% of total\n");
583 scaled[i], total);
587 print_shader_time_line("total", "vs", 0, total_by_type[ST_VS], total);
588 print_shader_time_line("total", "tcs", 0, total_by_type[ST_TCS], total)
    [all...]
  /bionic/libc/async_safe/
async_safe_log.cpp 64 BufferOutputStream(char* buffer, size_t size) : total(0), pos_(buffer), avail_(size) {
73 total += len;
89 size_t total; member in struct:BufferOutputStream
98 explicit FdOutputStream(int fd) : total(0), fd_(fd) {}
104 total += len;
116 size_t total; member in struct:FdOutputStream
409 return os.total;
426 return os.total;
540 {msg, os.total}, {const_cast<char*>("\n"), 1},
  /external/boringssl/src/crypto/cipher_extra/
e_ssl3.c 293 size_t total = 0; local
298 total += len;
299 if (!EVP_DecryptFinal_ex(&ssl3_ctx->cipher_ctx, out + total, &len)) {
302 total += len;
303 assert(total == in_len);
310 unsigned padding_length = out[total - 1];
311 if (total < padding_length + 1 + mac_len) {
320 data_len = total - padding_length - 1 - mac_len;
322 data_len = total - mac_len;
  /external/ltp/testcases/network/lib6/
asapi_01.c 172 unsigned int total, expected; local
176 total = cc = recv(sd, packet, sizeof(struct tprot), 0);
178 gothead = total >= sizeof(struct tprot);
183 while (cc > 0 && total < expected) {
184 cc = recv(sd, &packet[total], expected - total, 0);
186 total += cc;
187 if (!gothead && total >= sizeof(struct tprot)) {
197 return total;
  /art/oatdump/
oatdump_test.h 194 size_t total = 0; local
211 total += bytes_read;
232 EXPECT_EQ(total, 0u);
234 EXPECT_GT(total, 0u);
236 LOG(INFO) << "Processed bytes " << total;
  /device/google/wahoo/thermal/
thermal-helper.cpp 192 uint64_t user, nice, system, idle, active, total; local
240 total = active + idle;
262 (*cpuUsages)[size].total = total;
266 << active << " " << total << " " << online;
  /external/autotest/server/cros/ap_configurators/
ap_spec.py 112 total = 0
116 total = total | i
119 if total == MODE_M:
121 elif total == MODE_D:
  /external/iproute2/netem/
maketable.c 123 cumulativedist(int *table, int limit, int *total)
131 *total = accum;
206 int total; local
229 cumulativedist(table, DISTTABLESIZE, &total);
230 inverse = inverttable(table, TABLESIZE, DISTTABLESIZE, total);
  /external/v8/src/
feedback-vector-inl.h 171 int total = 0; local
196 total++;
213 total++;
231 total++;
249 *vector_ic_count = total;
  /external/wayland/tests/
test-runner.c 348 int total, pass; local
442 total = &__stop_test_section - &__start_test_section;
444 total, pass, total - pass);
449 return pass == total ? EXIT_SUCCESS : EXIT_FAILURE;
  /libcore/ojluni/src/main/java/java/io/
DataInputStream.java 92 * @return the total number of bytes read into the buffer, or
137 * @return the total number of bytes read into the buffer, or
220 int total = 0; local
223 while ((total<n) && ((cur = (int) in.skip(n-total)) > 0)) {
224 total += cur;
227 return total;
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 200 // Total number of entries, attributes read
371 int total = 0; local
372 while (total < len) {
381 int n = len - total;
391 total += n;
397 return total;
  /libcore/ojluni/src/main/java/java/util/zip/
ZipInputStream.java 254 int total = 0; local
255 while (total < max) {
256 int len = max - total;
265 total += len;
267 return total;
  /packages/apps/Gallery2/jni/filters/
geometry.c 28 int total = length * width; local
31 int temp = total - width;
32 for (i = 0; i < total; i += width) {
43 int total = length * width; local
47 for (i = 0; i < total; i+= width) {
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 107 private int[] getExponentialIndice(int total, int count) {
109 if (count > total) count = total;
112 int row = (int)(-Math.log(random.nextDouble()) * total / 2);
113 if (row < total) selected.add(row);
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
ProviderPerfActivity.java 345 int total = 0; local
351 total++;
356 (float) (total != 0 ? total : 1) /
358 Log.v(TAG, "dummy loop: fails=" + failures + "; total=" + total + "; goodavg ms=" + averageMillis);
367 int total = 0; local
374 total++;
381 (float) (total != 0 ? total : 1)
390 int total = 0; local
593 int total = 0; local
    [all...]
  /external/valgrind/massif/tests/
ignoring.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
44 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)
67 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
95 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
110 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
125 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
140 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
155 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
171 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 1184 int total; member in struct:__anon14347
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockConnectionService.java 184 private static final Semaphore[] initializeSemaphore(int total) {
185 Semaphore[] locks = new Semaphore[total];
186 for (int i = 0; i < total; i++) {
  /external/autotest/contrib/
loadtest.py 34 # Do 100 total provisions, aiming to have 10 active simultaneously.
35 loadtest.py $DS config.json --simultaneous 10 --total 100
86 help=('Total number of successes before blacklisting '
89 parser.add_argument('--blacklist-total', '-T', type=int, action='store',
90 help=('Total number of failures before blacklisting '
111 parser.add_argument('--total', '-t', type=int, action='store',
112 help='Number of total provisions to run.',
246 def __init__(self, ds, duts, config, simultaneous=1, total=0,
255 self.total = total
    [all...]
  /external/elfutils/libdw/
dwarf_aggregate_size.c 66 Dwarf_Word total = 0; local
191 total += stride * count;
198 *size = total;
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 67 long total = 0; local
71 total += buf.remaining();
74 return total;

Completed in 835 milliseconds

<<11121314151617181920>>