Searched defs:batch_size (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/history/
H A Dvisit_database.cc556 const size_t batch_size = 500; local
562 end_index = end_index + batch_size < visits_size ? end_index + batch_size
/external/chromium_org/sync/sessions/
H A Dsync_session_context.h88 void set_max_commit_batch_size(int batch_size) { argument
89 max_commit_batch_size_ = batch_size;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.cc160 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/
H A Dthread_cache.cc157 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/jsoncpp/
H A Dmakerelease.py225 batch_size = 10 variable
228 for index in xrange(0,len(upload_paths),batch_size):
229 paths = upload_paths[index:index+batch_size]
/external/chromium_org/sync/internal_api/
H A Dsync_manager_impl_unittest.cc1120 size_t batch_size = 5; local
1128 // First batch_size nodes are children of folder.
1130 for (i = 0; i < batch_size; ++i) {
1133 // Next batch_size nodes are a different type and on their own.
1134 for (; i < 2*batch_size; ++i) {
1138 // Last batch_size nodes are a third type that will not need encryption.
1139 for (; i < 3*batch_size; ++i) {

Completed in 200 milliseconds