HomeSort by relevance Sort by last modified time
    Searched full:repeat_count (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/
run-perf-test.cfg 24 'repeat_count': The number of times to repeat the performance test.
26 "repeat_count" times, unless it exceeds "max_time_minutes".
35 'repeat_count': '20',
47 'repeat_count': '20',
63 'repeat_count': '20',
73 'repeat_count': '',
  /external/chromium_org/tools/
run-perf-test.cfg 24 'repeat_count': The number of times to repeat the performance test.
26 "repeat_count" times, unless it exceeds "max_time_minutes".
34 'repeat_count': '20',
46 'repeat_count': '20',
62 'repeat_count': '20',
72 'repeat_count': '',
run-bisect-perf-regression.cfg 27 'repeat_count': The number of times to repeat the performance test.
29 "repeat_count" times, unless it exceeds "max_time_minutes".
39 'repeat_count': '20',
53 'repeat_count': '20',
71 'repeat_count': '20',
83 'repeat_count':'',
run-bisect-perf-regression.py 131 if config['repeat_count']:
132 opts_dict['repeat_test_count'] = int(config['repeat_count'])
305 if config['repeat_count']:
306 cmd.extend(['-r', config['repeat_count']])
  /system/extras/tests/bionic/libc/other/
test_jpeg.c 242 int repeat_count = DEFAULT_REPEAT; local
263 repeat_count = strtol(arg, NULL, 10);
265 if (repeat_count <= 0)
266 repeat_count = 1;
328 for ( rr = repeat_count; rr > 0; rr-- ) {
349 for ( rr = repeat_count; rr > 0; rr -- )
359 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
test_zlib.c 179 int repeat_count = DEFAULT_REPEAT; local
199 repeat_count = strtol(arg, NULL, 10);
201 if (repeat_count <= 0)
202 repeat_count = 1;
255 for ( rr = repeat_count; rr > 0; rr -- )
262 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
  /external/chromium/base/threading/
simple_thread.cc 116 void DelegateSimpleThreadPool::AddWork(Delegate* delegate, int repeat_count) {
118 for (int i = 0; i < repeat_count; ++i)
simple_thread.h 165 void AddWork(Delegate* work, int repeat_count);
  /external/chromium_org/base/threading/
simple_thread.cc 123 void DelegateSimpleThreadPool::AddWork(Delegate* delegate, int repeat_count) {
125 for (int i = 0; i < repeat_count; ++i)
simple_thread.h 171 void AddWork(Delegate* work, int repeat_count);
  /external/chromium_org/third_party/sqlite/src/src/
test5.c 64 int repeat_count; local
75 if( Tcl_GetIntFromObj(interp, objv[1], &repeat_count) ) return TCL_ERROR;
83 for(i=0; i<repeat_count; i++){
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_service.cc 34 // |repeat_count| may be 0 if there were no captive portal checks during
41 int repeat_count,
55 result_repeated_histogram->Add(repeat_count);
57 if (repeat_count == 0)
  /external/chromium_org/ui/aura/
remote_root_window_host_win.h 175 uint32 repeat_count,
179 uint32 repeat_count,
183 uint32 repeat_count,
246 uint32 repeat_count,
remote_root_window_host_win.cc 540 uint32 repeat_count,
543 DispatchKeyboardMessage(ui::ET_KEY_PRESSED, vkey, repeat_count, scan_code,
548 uint32 repeat_count,
551 DispatchKeyboardMessage(ui::ET_KEY_RELEASED, vkey, repeat_count, scan_code,
556 uint32 repeat_count,
559 DispatchKeyboardMessage(ui::ET_KEY_PRESSED, key_code, repeat_count,
698 uint32 repeat_count,
715 repeat_count | scan_code >> 15);
  /external/chromium_org/media/cast/net/pacing/
paced_sender_unittest.cc 40 void AddExpectedSize(int expected_packet_size, int repeat_count) {
41 for (int i = 0; i < repeat_count; ++i) {
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.h 278 void OnChar(TCHAR ch, UINT repeat_count, UINT flags);
284 void OnKeyDown(TCHAR key, UINT repeat_count, UINT flags);
285 void OnKeyUp(TCHAR key, UINT repeat_count, UINT flags);
303 void OnSysChar(TCHAR ch, UINT repeat_count, UINT flags);
308 void HandleKeystroke(UINT message, TCHAR key, UINT repeat_count, UINT flags);
313 bool OnKeyDownOnlyWritable(TCHAR key, UINT repeat_count, UINT flags);
314 bool OnKeyDownAllModes(TCHAR key, UINT repeat_count, UINT flags);
autocomplete_edit_view_win.cc     [all...]
  /external/chromium_org/courgette/
courgette_tool.cc 457 int repeat_count = 1; local
460 if (!base::StringToInt(repeat_switch, &repeat_count))
461 repeat_count = 1;
472 while (repeat_count-- > 0) {
  /external/chromium_org/cc/resources/
picture_pile.cc 226 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
232 for (int i = 0; i < repeat_count; i++) {
picture_pile_impl.cc 252 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
255 for (int j = 0; j < repeat_count; ++j) {
  /external/chromium_org/third_party/ots/src/
woff2.cc 283 int repeat_count = 0; local
311 if (flag == last_flag && repeat_count != 255) {
313 repeat_count++;
315 if (repeat_count != 0) {
319 dst[flag_offset++] = repeat_count;
325 repeat_count = 0;
332 if (repeat_count != 0) {
336 dst[flag_offset++] = repeat_count;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 631 int32_t repeat_count = 100; local
634 repeat_count = 1;
636 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
755 int32_t repeat_count = 1; local
756 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
810 int32_t repeat_count = 100; local
811 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
862 int32_t repeat_count = 1; local
863 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
915 int32_t repeat_count = 100 local
    [all...]
  /external/chromium_org/v8/src/
serialize.cc 1639 int repeat_count = 1; local
    [all...]
  /external/v8/src/
serialize.cc 1476 int repeat_count = 1; local
    [all...]
  /bionic/libc/kernel/tools/
cpp.py     [all...]

Completed in 535 milliseconds

1 2