Searched refs:count (Results 26 - 50 of 7815) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/
H A Darguments-enum.js29 var count = 0;
31 count++;
32 return count;
38 var count = 0;
40 count++;
41 return count;
/external/v8/test/mjsunit/
H A Darguments-enum.js29 var count = 0;
31 count++;
32 return count;
38 var count = 0;
40 count++;
41 return count;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath_utils.h58 VGint count = 0; local
67 count += 2;
70 count += 2;
73 count += 1;
76 count += 1;
79 count += 4;
82 count += 6;
85 count += 2;
88 count += 4;
91 count
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath_utils.h58 VGint count = 0; local
67 count += 2;
70 count += 2;
73 count += 1;
76 count += 1;
79 count += 4;
82 count += 6;
85 count += 2;
88 count += 4;
91 count
[all...]
/external/chromium_org/tools/gyp/test/actions/src/subdir1/
H A Dcounter.py13 count = 0 variable
15 count = open(persistoutput, 'r').read() variable
18 count = int(count) + 1 variable
22 if count > max_count:
23 count = max_count variable
31 # Save the count in a file that is undeclared, and thus hidden, to gyp. We need
33 # any declared outputs, so we would lose our count if we just wrote to the
35 open(persistoutput, 'w').write('%d' % (count))
37 # Only write the given output file if the count ha
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1849.js32 var count = 1e5; variable
33 var arr = new Array(count);
35 for (var i = 0; i < count; i++) {
H A Dregress-1181.js28 // The first count times, test is called with an integer argument and
40 function check(count) {
43 for(var x=0; x < count; x++){
44 for(var y=0; y < count; y++){
48 assertEquals((count - 1) / 100, i + 1);
/external/eigen/doc/snippets/
H A DMatrixBase_cwiseEqual.cpp6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are equal: " << count << endl;
H A DMatrixBase_cwiseNotEqual.cpp6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are not equal: " << count << endl;
/external/kernel-headers/original/asm-generic/
H A Dmutex-xchg.h16 * __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 *)) argument
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, fastcal argument
68 __mutex_fastpath_unlock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) argument
93 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
/external/kernel-headers/original/linux/
H A Dvt_buffer.h31 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count) argument
33 count /= 2;
34 while (count--)
40 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count) argument
42 count /= 2;
43 while (count--)
49 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count) argument
52 scr_memcpyw(d, s, count);
54 count /= 2;
55 d += count;
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1849.js32 var count = 1e5; variable
33 var arr = new Array(count);
35 for (var i = 0; i < count; i++) {
/external/proguard/src/proguard/classfile/visitor/
H A DMemberCounter.java32 private int count; field in class:MemberCounter
40 return count;
49 count++;
56 count++;
63 count++;
70 count++;
/external/chromium/base/debug/
H A Dstack_trace.cc13 const void *const *StackTrace::Addresses(size_t* count) const {
14 *count = count_;
/external/chromium_org/base/debug/
H A Dstack_trace.cc17 StackTrace::StackTrace(const void* const* trace, size_t count) { argument
18 count = std::min(count, arraysize(trace_));
19 if (count)
20 memcpy(trace_, trace, count * sizeof(trace_[0]));
21 count_ = count;
27 const void *const *StackTrace::Addresses(size_t* count) const {
28 *count = count_;
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtestutil.h44 extern "C" void RunManyThreads(void (*fn)(), int count);
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtestutil.h44 extern "C" void RunManyThreads(void (*fn)(), int count);
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java37 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/
H A DHttpTransportMetricsImpl.java51 public void setBytesTransferred(long count) { argument
52 this.bytesTransferred = count;
55 public void incrementBytesTransferred(long count) { argument
56 this.bytesTransferred += count;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawDash.cpp31 int count = intervals.count(); local
32 if (count == 0)
34 return new SkDashPathEffect(intervals.begin(), count, phase);
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_SSE2.h14 int count, uint32_t* colors);
17 int count, uint32_t* colors);
18 void Color32_SSE2(SkPMColor dst[], const SkPMColor src[], int count,
21 int count, int x, int y);
23 uint32_t xy[], int count, int x, int y);
25 uint32_t xy[], int count, int x, int y);
27 uint32_t xy[], int count, int x, int y);
30 int count, uint16_t* colors);
H A DSkUtils_opts_SSE2.cpp13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
15 SkASSERT(dst != NULL && count >= 0);
20 if (count >= 32) {
23 --count;
27 while (count >= 32) {
33 count -= 32;
37 while (count > 0) {
39 --count;
43 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count) argument
45 SkASSERT(dst != NULL && count >
[all...]
H A DSkUtils_opts_SSE2.h12 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);
/external/chromium_org/third_party/skia/src/utils/
H A DSkCountdown.cpp11 SkCountdown::SkCountdown(int32_t count) argument
12 : fCount(count) {}
14 void SkCountdown::reset(int32_t count) { argument
15 fCount = count;
/external/chromium_org/tools/traceline/traceline/scripts/
H A Dsplit.py15 count = 0
19 count += 1
20 if count == 40000:
22 count = 0

Completed in 760 milliseconds

1234567891011>>