/external/chromium/base/ |
tracked_objects.h | 55 // count of instances constructed. 82 // death count, as well as accumulate the lifetime duration of the instance as 123 // birth thread, death thread, and location, along with the count of such 128 // statistics (birth count, durations, etc. etc.). 138 // a specific consecutive set of Snapshots? What was the total birth count for 189 // When we have a birth we update the count for this BirhPLace. 219 explicit DeathData(int count) : count_(count), square_duration_(0) {} 224 int count() const { return count_; } function in class:tracked_objects::DeathData 259 Snapshot(const BirthOnThread& birth_on_thread, int count); 269 int count() const { return death_data_.count(); } function in class:tracked_objects::Snapshot [all...] |
/external/oprofile/libop/ |
op_xml_out.h | 41 COUNT,
|
/external/qemu/hw/ |
dma.c | 51 #define COUNT 1 139 r->now[COUNT] = 0; 165 val = (r->base[COUNT] << d->dshift) - r->now[COUNT]; 167 val = r->now[ADDR] + r->now[COUNT] * dir; 350 r->now[COUNT], (r->base[COUNT] + 1) << ncont); 351 r->now[COUNT] = n; 353 ldebug ("dma_pos %d size %d\n", n, (r->base[COUNT] + 1) << ncont);
|
/frameworks/base/core/java/android/hardware/ |
LegacySensorManager.java | 370 private static final int COUNT = 12; 372 private static final float PREDICTION_TIME = (SENSORS_RATE_MS*COUNT/1000.0f)*PREDICTION_RATIO; 373 private float mV[] = new float[COUNT*2]; 374 private long mT[] = new long[COUNT*2]; 378 mIndex = COUNT; 391 * by COUNT values, so that we don't have to copy the array 395 if (mIndex >= COUNT*2) 396 mIndex = COUNT; 399 mV[mIndex-COUNT] = v; 400 mT[mIndex-COUNT] = time [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
richards.js | 49 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 80 var COUNT = 1000; 86 * correct run so if the actual queue or hold count is different from 124 * @param {int} count the number of times to schedule the task 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 365 * @param {int} count the number of times this task should be scheduled 368 function IdleTask(scheduler, v1, count) { 371 this.count = count; [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-richards.js | 44 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 75 var COUNT = 1000; 81 * correct run so if the actual queue or hold count is different from 119 * @param {int} count the number of times to schedule the task 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 360 * @param {int} count the number of times this task should be scheduled 363 function IdleTask(scheduler, v1, count) { 366 this.count = count; [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-richards.js | 44 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 75 var COUNT = 1000; 81 * correct run so if the actual queue or hold count is different from 119 * @param {int} count the number of times to schedule the task 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 360 * @param {int} count the number of times this task should be scheduled 363 function IdleTask(scheduler, v1, count) { 366 this.count = count; [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-richards.js | 44 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 75 var COUNT = 1000; 81 * correct run so if the actual queue or hold count is different from 119 * @param {int} count the number of times to schedule the task 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 360 * @param {int} count the number of times this task should be scheduled 363 function IdleTask(scheduler, v1, count) { 366 this.count = count; [all...] |
/external/chromium_org/v8/benchmarks/ |
richards.js | 49 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 80 var COUNT = 1000; 86 * correct run so if the actual queue or hold count is different from 124 * @param {int} count the number of times to schedule the task 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 365 * @param {int} count the number of times this task should be scheduled 368 function IdleTask(scheduler, v1, count) { 371 this.count = count; [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ConcurrentHashMultisetTest.java | 69 final int COUNT = 12; 70 expect(backingMap.get(KEY)).andReturn(new AtomicInteger(COUNT)); 73 assertEquals(COUNT, multiset.count(KEY)); 81 assertEquals(0, multiset.count(KEY)); 95 final int COUNT = 400; 101 assertEquals(0, multiset.add(KEY, COUNT)); 339 assertEquals(2, multiset.count(2)); 373 assertEquals(1, multiset.count(s1)); 374 assertEquals(0, multiset.count(s2)) [all...] |
/external/v8/benchmarks/ |
richards.js | 49 scheduler.addIdleTask(ID_IDLE, 0, null, COUNT); 80 var COUNT = 1000; 86 * correct run so if the actual queue or hold count is different from 124 * @param {int} count the number of times to schedule the task 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 365 * @param {int} count the number of times this task should be scheduled 368 function IdleTask(scheduler, v1, count) { 371 this.count = count; [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
ContentViewCore.java | 476 public static final int COUNT = 3; 482 public static final int COUNT = 2; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cnumtst.c | [all...] |
/external/opencv/cv/src/ |
cvlkpyramid.cpp | 268 int count, CvSize winSize, int level, 354 if( count == 0 ) 360 if( count < 0 ) 374 CV_CALL( status = _status = (char*)cvAlloc( count*sizeof(_status[0]) )); 399 CV_CALL( error = _error = (float*)cvAlloc( count*sizeof(_error[0]) )); 401 for( i = 0; i < count; i++ ) 405 (const float*)featuresA, (float*)featuresB, status, error, count, 409 for( i = 0; i < count; i++ ) 428 memset( status, 1, count ); 430 memset( error, 0, count*sizeof(error[0]) ) 1161 int count_x, count_y, count; local [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ActionBarAdapter.java | 92 public static int COUNT = 3; 209 "Parameter must be between 0 and " + Integer.toString(TabState.COUNT-1) 226 "Parameter must be between 0 and " + Integer.toString(TabState.COUNT-1) 242 if (mCurrentTab >= TabState.COUNT || mCurrentTab < 0) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 170 "wrong weak ref count for object") 173 "wrong weak ref count for object after deleting proxy") 904 COUNT = 10 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 170 "wrong weak ref count for object") 173 "wrong weak ref count for object after deleting proxy") 904 COUNT = 10 [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
speed.c | 237 static void print_result(int alg,int run_no,int count,double time_used); 367 long count=0,save_count=0; local 761 BIO_printf(bio_err,"no multi count given\n"); 767 BIO_printf(bio_err,"bad multi count\n"); [all...] |
/external/icu4c/test/cintltst/ |
cnumtst.c | [all...] |
/external/openssl/apps/ |
speed.c | 237 static void print_result(int alg,int run_no,int count,double time_used); 367 long count=0,save_count=0; local 761 BIO_printf(bio_err,"no multi count given\n"); 767 BIO_printf(bio_err,"bad multi count\n"); [all...] |
/external/tinyxml2/ |
tinyxml2.h | 67 size_t count,
183 T* PushArr( int count )
185 EnsureCapacity( size+count );
187 size += count;
193 void PopArr( int count )
195 TIXMLASSERT( size >= count );
196 size -= count;
267 for( int i=0; i<COUNT-1; ++i ) {
270 block->chunk[COUNT-1].next = 0;
295 enum { COUNT = 1024/SIZE }; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
XI.h | 168 #define COUNT 0
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XI.h | 168 #define COUNT 0
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XI.h | 168 #define COUNT 0
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
dtfmttst.cpp | 114 ids_length = ids->count(status); 358 const int32_t COUNT = 4; 359 DateFormat* dateFormats[COUNT]; 398 assertTrue("data size", EXPECTED_LENGTH == COUNT * UDAT_FIELD_COUNT); 401 for (j = 0, exp = 0; j < COUNT; ++j) { 451 for (i=0; i<COUNT; ++i) { [all...] |