/external/chromium_org/third_party/tcmalloc/chromium/src/ |
thread_cache.cc | 160 const int batch_size = Static::sizemap()->num_objects_to_move(cl); 162 const int num_to_move = min<int>(list->max_length(), batch_size); 176 // Increase max length slowly up to batch_size. After that, 177 // increase by batch_size in one shot so that the length is a 178 // multiple of batch_size. 179 if (list->max_length() < batch_size) { 185 int new_length = min<int>(list->max_length() + batch_size, 187 // The list's max_length must always be a multiple of batch_size, 189 // of batch_size. 190 new_length -= new_length % batch_size; 198 const int batch_size = Static::sizemap()->num_objects_to_move(cl); local 229 int batch_size = Static::sizemap()->num_objects_to_move(cl); local 265 const int batch_size = Static::sizemap()->num_objects_to_move(cl); local [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
thread_cache.cc | 157 const int batch_size = Static::sizemap()->num_objects_to_move(cl); 159 const int num_to_move = min<int>(list->max_length(), batch_size); 170 // Increase max length slowly up to batch_size. After that, 171 // increase by batch_size in one shot so that the length is a 172 // multiple of batch_size. 173 if (list->max_length() < batch_size) { 179 int new_length = min<int>(list->max_length() + batch_size, 181 // The list's max_length must always be a multiple of batch_size, 183 // of batch_size. 184 new_length -= new_length % batch_size; 192 const int batch_size = Static::sizemap()->num_objects_to_move(cl); local 223 int batch_size = Static::sizemap()->num_objects_to_move(cl); local 259 const int batch_size = Static::sizemap()->num_objects_to_move(cl); local [all...] |
/external/chromium/chrome/browser/sync/sessions/ |
sync_session_context.h | 82 void set_max_commit_batch_size(int batch_size) { 83 max_commit_batch_size_ = batch_size;
|
/external/chromium_org/chrome/test/perf/ |
generate_profile.cc | 102 // Insert a batch of |batch_size| URLs, starting at pageid |page_id|. 105 int batch_size, 133 printf("Inserting %d URLs...\n", batch_size); 136 const int end_page_id = page_id + batch_size; 222 const int batch_size = std::min(kBatchSize, url_count - page_id); local 223 InsertURLBatch(&profile, page_id, batch_size, types); 226 page_id += batch_size;
|
/external/chromium_org/sync/sessions/ |
sync_session_context.h | 105 void set_max_commit_batch_size(int batch_size) { 106 max_commit_batch_size_ = batch_size;
|
/external/chromium/chrome/browser/sync/engine/ |
process_commit_response_command_unittest.cc | 295 int batch_size = 25; local 297 for (; i < batch_size; ++i) { 307 for (; i < 2*batch_size; ++i) { 348 if (child_count < batch_size) { 367 ASSERT_EQ(batch_size*2, child_count)
|
syncapi_unittest.cc | 1078 size_t batch_size = 5; local [all...] |
/external/chromium/chrome/browser/history/ |
visit_database.cc | 495 const size_t batch_size = 500; local 501 end_index = end_index + batch_size < visits_size ? end_index + batch_size
|
/external/chromium_org/chrome/browser/history/ |
visit_database.cc | 565 const size_t batch_size = 500; local 571 end_index = end_index + batch_size < visits_size ? end_index + batch_size
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests.py | 337 options.batch_size = 1
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_runner.py | 238 self._batch_size = self._options.batch_size or 0
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FastMalloc.cpp | [all...] |
/external/chromium_org/sync/internal_api/ |
sync_manager_impl_unittest.cc | 1502 size_t batch_size = 5; local [all...] |
/external/chromium_org/sync/protocol/ |
proto_value_conversions.cc | 842 SET_INT32(batch_size); [all...] |