HomeSort by relevance Sort by last modified time
    Searched full:counts (Results 401 - 425 of 2525) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/exp-sgcheck/tests/
filter_stderr 22 -e "/^For counts of detected and suppressed errors, rerun with: -v$/d" |
  /external/valgrind/main/memcheck/tests/
noisy_child.stderr.exp 22 For counts of detected and suppressed errors, rerun with: -v
partial_load_ok.stderr.exp 27 For counts of detected and suppressed errors, rerun with: -v
partial_load_ok.stderr.exp64 27 For counts of detected and suppressed errors, rerun with: -v
  /libcore/luni/src/main/java/java/sql/
BatchUpdateException.java 27 * supplies update counts for successful commands which were executed before the
30 * The element order in the array of update counts matches the order that the
49 * <i>reason</i>, <i>SQLState</i>, and <i>update counts</i> set to {@code
217 * @return an array that contains the successful update counts, before this
  /libcore/luni/src/main/java/libcore/io/
StructStatVfs.java 23 /** File system block size (used for block counts). */
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
spinlock_pool.hpp 20 // spinlock_pool<1> is reserved for shared_ptr reference counts
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_enumerate.py 248 counts = [None] * 5
249 for i in xrange(len(counts)):
251 counts[i] = sys.gettotalrefcount()
252 print counts
test_genexps.py 275 counts = [None] * 5
276 for i in xrange(len(counts)):
279 counts[i] = sys.gettotalrefcount()
280 print counts
test_peepholer.py 236 counts = [None] * 5
237 for i in xrange(len(counts)):
240 counts[i] = sys.gettotalrefcount()
241 print counts
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_enumerate.py 248 counts = [None] * 5
249 for i in xrange(len(counts)):
251 counts[i] = sys.gettotalrefcount()
252 print counts
test_genexps.py 275 counts = [None] * 5
276 for i in xrange(len(counts)):
279 counts[i] = sys.gettotalrefcount()
280 print counts
test_peepholer.py 236 counts = [None] * 5
237 for i in xrange(len(counts)):
240 counts[i] = sys.gettotalrefcount()
241 print counts
  /external/chromium_org/ppapi/cpp/
audio_config.h 89 /// latency of audio. Smaller frame counts will yield lower latency, but
90 /// higher CPU utilization. Supported sample frame counts will vary by
92 /// from a cell phone or a high-end audio workstation). Sample counts less
  /external/chromium_org/third_party/icu/source/test/threadtest/
stringtest.cpp 31 // counts all over the place.
118 // Check that the reference counts on the buffers for all of the source strings
119 // are one. The ref counts will have run way up while the test threads
  /external/icu4c/test/threadtest/
stringtest.cpp 31 // counts all over the place.
118 // Check that the reference counts on the buffers for all of the source strings
119 // are one. The ref counts will have run way up while the test threads
  /external/llvm/test/Transforms/LoopUnroll/
runtime-loop.ll 3 ; Tests for unrolling loops with run-time trip counts
32 ; Still try to completely unroll loops with compile-time trip counts
80 ; Test run-time unrolling for a loop that counts down by -2.
  /frameworks/base/core/java/android/net/
TrafficStats.java 274 * boot. Counts packets across all mobile network interfaces, and always
291 * boot. Counts packets across all mobile network interfaces, and always
308 * boot. Counts packets across all mobile network interfaces, and always
325 * Counts packets across all mobile network interfaces, and always increases
385 * Return number of packets transmitted since device boot. Counts packets
398 * Return number of packets received since device boot. Counts packets
411 * Return number of bytes transmitted since device boot. Counts packets
424 * Return number of bytes received since device boot. Counts packets across
438 * Counts packets across all network interfaces, and always increases
454 * Counts packets across all network interfaces, and always increase
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
util.py 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ'
136 'Return dict of element counts, in the order they were first seen'
143 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
util.py 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ'
136 'Return dict of element counts, in the order they were first seen'
143 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ'
  /external/linux-tools-perf/Documentation/
perf-script-python.txt 32 'syscall-counts' script you see when you list the available perf script
37 The syscall-counts script is a simple script, but demonstrates all the
192 # mv perf-script.py syscall-counts.py
193 # perf script -s syscall-counts.py
262 and having the counts we've tallied as values.
318 # perf script -s syscall-counts.py
359 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-record
371 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-report
374 # description: system-wide syscall counts
375 perf script -s ~/libexec/perf-core/scripts/python/syscall-counts.p
    [all...]
  /external/chromium_org/third_party/lcov/contrib/galaxy/
genflat.pl 377 # Calculate resulting line counts
430 # will automatically be combined by adding all execution counts.
453 my $negative; # If set, warn about negative counts
533 # Fix negative counts
540 # Add summary counts
543 # Add test-specific counts
608 warn("WARNING: Negative counts found in tracefile ".
937 # execution counts are added.
956 # Add counts if present in both hashes
986 # Subtract the execution counts found in the baseline hash referenced b
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Phaser.java 28 * only internal counts; they do not establish any further internal
287 int counts = (int)s; local
288 return (counts == EMPTY) ? 0 : (counts & UNARRIVED_MASK);
300 int counts = (int)s; local
301 return (counts == EMPTY) ? 0 :
302 (counts >>> PARTIES_SHIFT) - (counts & UNARRIVED_MASK);
360 int counts = (int)s; local
361 int unarrived = (counts == EMPTY) ? 0 : (counts & UNARRIVED_MASK)
406 int counts = (int)s; local
655 int counts = (int)s; local
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
BatchUpdateExceptionTest.java 37 int[][] theFinalStates2 = { null }; // Update Counts array state
83 int[][] theFinalStates2 = init1; // Update Counts array state
133 // Update Counts array state
191 // Update Counts array state
249 // Update Counts array state
392 int[][] theFinalStates2 = init1; // Update Counts array state
  /external/chromium/base/metrics/
histogram_unittest.cc 285 EXPECT_EQ(2, sample.counts(0));
286 EXPECT_EQ(0, sample.counts(1));
289 EXPECT_EQ(0, sample.counts(array_size - 2));
290 EXPECT_EQ(2, sample.counts(array_size - 1));
317 // Check to see that the bucket counts reflect our additions.
322 EXPECT_EQ(i + 1, sample.counts(i));

Completed in 910 milliseconds

<<11121314151617181920>>