Home
last modified time | relevance | path

Searched refs:new_bucket (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Dbase_config_unittest.py83 self.new_bucket = 'bucket1'
86 self.new_bucket, self.new_remote_path, self.new_dep_path)
250 expected_exists_calls = [mock.call(self.new_bucket, self.new_remote_path)]
251 expected_insert_calls = [mock.call(self.new_bucket, self.new_remote_path,
293 expected_exists_calls = [mock.call(self.new_bucket, self.new_remote_path)]
294 expected_insert_calls = [mock.call(self.new_bucket, self.new_remote_path,
296 expected_copy_calls = [mock.call(self.new_bucket, self.new_bucket,
299 mock.call(self.new_bucket, self.new_bucket,
341 expected_exists_calls = [mock.call(self.new_bucket, self.new_remote_path)]
383 expected_exists_calls = [mock.call(self.new_bucket, self.new_remote_path)]
[all …]
Duploader_unittest.py64 new_bucket = 'new_bucket'
70 new_bucket, new_remote_path, new_local_path)
72 new_bucket, self.remote_path, self.local_path)
/external/chromium-trace/catapult/telemetry/telemetry/value/
Dhistogram_util.py66 new_bucket = b
69 new_bucket['count'] = b['count'] - start_histogram_bucket_counts[low]
70 if new_bucket['count'] < 0:
73 if new_bucket['count']:
74 new_buckets.append(new_bucket)
/external/bison/lib/
Dhash.c869 struct hash_entry *new_bucket; in transfer_entries() local
880 new_bucket = safe_hasher (dst, data); in transfer_entries()
884 if (new_bucket->data) in transfer_entries()
888 cursor->next = new_bucket->next; in transfer_entries()
889 new_bucket->next = cursor; in transfer_entries()
895 new_bucket->data = data; in transfer_entries()
907 new_bucket = safe_hasher (dst, data); in transfer_entries()
909 if (new_bucket->data) in transfer_entries()
919 new_entry->next = new_bucket->next; in transfer_entries()
920 new_bucket->next = new_entry; in transfer_entries()
[all …]
/external/boringssl/src/crypto/lhash/
Dlhash.c182 const size_t new_bucket = cur->hash % new_num_buckets; in lh_rebucket() local
184 cur->next = new_buckets[new_bucket]; in lh_rebucket()
185 new_buckets[new_bucket] = cur; in lh_rebucket()
/external/elfutils/src/
Dunstrip.c494 Hash_Word *const new_bucket = &new_hash[2]; \ in adjust_relocs()
495 Hash_Word *const new_chain = &new_bucket[nbucket]; \ in adjust_relocs()
501 new_bucket[i] = map[old_bucket[i] - 1]; \ in adjust_relocs()