HomeSort by relevance Sort by last modified time
    Searched refs:count (Results 1 - 25 of 8204) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/PerformanceTests/SunSpider/tests/ubench/
loop-sum.js 1 var count = 6000000; variable
3 for (var i = 0; i < count; i++) {
4 sum = i + count;
  /external/valgrind/main/drd/tests/
compare_error_count_with 3 awk -v count=50000 '/ERROR SUMMARY/{if ($4 <= count) print "Total error count is below threshold."; else print "Total error count is above threshold" }'
annotate_rwlock_hg.stderr.exp 1 Total error count is below threshold.
  /external/compiler-rt/BlocksRuntime/tests/
rdar6396238.c 12 static int count = 0; variable
16 count++;
18 count++;
24 if (count != 2) {
25 printf("%s: failure, 2 != %d\n", argv[0], count);
  /external/clang/test/CodeGenCXX/
static-init-1.cpp 2 // RUN: grep "call i32 @_Z5func1i" %t | count 3
6 static int count; variable
11 static int loader_1 = func1(++count);
13 int loader_2 = func2(++count);
15 static int loader_3 = func1(++count);
20 int loader_4 = func2(++count);
21 static int loader_5 = func1(++count);
22 int loader_6 = func2(++count);
default-destructor-synthesis.cpp 2 static int count = 0; variable
5 S() { count++; }
6 ~S() { count--; }
10 P() { count++; }
11 ~P() { count--; }
15 Q() { count++; }
16 ~Q() { count--; }
30 count = 1;
35 return count;
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 6 int count = 0; local
15 count++;
19 count++;
22 if (count != 2) {
  /external/proguard/src/proguard/classfile/visitor/
ClassCounter.java 32 private int count; field in class:ClassCounter
40 return count;
48 count++;
54 count++;
MemberCounter.java 32 private int count; field in class:MemberCounter
40 return count;
49 count++;
56 count++;
63 count++;
70 count++;
  /frameworks/base/tests/CoreTests/android/core/
LowLevelNetRunner.java 24 private int count = 0; field in class:LowLevelNetRunner
30 count++;
34 * Decrement the run count. If this returns to zero notify any
38 count--;
39 if (count <= 0) {
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
IntVec.java 40 private int count = 0; field in class:IntVec
51 return count;
59 if ( count == data.length ) {
60 int[] ndata = new int[count*2];
61 System.arraycopy(data,0,ndata,0,count);
64 data[count] = val;
65 count++;
69 count = 0;
  /external/kernel-headers/original/asm-generic/
mutex-xchg.h 16 * __mutex_fastpath_lock - try to take the lock by moving the count
18 * @count: pointer of type atomic_t
21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
26 __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *))
28 if (unlikely(atomic_xchg(count, 0) != 1))
29 fail_fn(count);
35 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
37 * @count: pointer of type atomic_t
40 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
45 __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t *)
    [all...]
  /external/kernel-headers/original/linux/
vt_buffer.h 31 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count)
33 count /= 2;
34 while (count--)
40 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count)
42 count /= 2;
43 while (count--)
49 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count)
52 scr_memcpyw(d, s, count);
54 count /= 2;
55 d += count;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 41 int count = 0; local
45 count++;
48 return count + 1;
62 int count = 0; local
72 count++;
75 return count;
  /external/chromium/base/debug/
stack_trace.cc 13 const void *const *StackTrace::Addresses(size_t* count) const {
14 *count = count_;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 37 protected int count = 0; field in class:Barrier
46 count++;
49 if ( count==threshold ) {
54 else while ( count<threshold ) {
  /external/apache-http/src/org/apache/http/impl/io/
HttpTransportMetricsImpl.java 51 public void setBytesTransferred(long count) {
52 this.bytesTransferred = count;
55 public void incrementBytesTransferred(long count) {
56 this.bytesTransferred += count;
  /external/javasqlite/src/main/java/SQLite/
BusyHandler.java 16 * @param count number of times the table was locked
19 public boolean busy(String table, int count);
  /external/libvorbis/test/
write_read.h 21 const float * data, int count, int ch) ;
27 float * data, int count) ;
  /external/skia/src/animator/
SkDrawDash.cpp 31 int count = intervals.count(); local
32 if (count == 0)
34 return new SkDashPathEffect(intervals.begin(), count, phase);
  /external/skia/src/opts/
SkBitmapProcState_opts_SSSE3.h 12 int count, uint32_t* colors);
15 int count, uint32_t* colors);
SkUtils_opts_SSE2.cpp 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count)
15 SkASSERT(dst != NULL && count >= 0);
20 if (count >= 32) {
23 --count;
27 while (count >= 32) {
32 count -= 32;
36 while (count > 0) {
38 --count;
42 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count)
44 SkASSERT(dst != NULL && count >= 0)
    [all...]
SkUtils_opts_SSE2.h 12 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
13 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
  /frameworks/base/core/java/android/text/
TextDirectionHeuristic.java 25 boolean isRtl(char[] text, int start, int count);
  /libcore/luni/src/main/java/java/lang/
UnsafeByteSequence.java 33 private int count; field in class:UnsafeByteSequence
40 return count;
48 count = 0;
52 if (count + length >= bytes.length) {
53 byte[] newBytes = new byte[(count + length) * 2];
54 System.arraycopy(bytes, 0, newBytes, 0, count);
57 System.arraycopy(buffer, offset, bytes, count, length);
58 count += length;
62 if (count == bytes.length) {
63 byte[] newBytes = new byte[count * 2]
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 91011>>