Searched refs:occupancy (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/v8/test/cctest/
H A Dtest-hashmap.cc75 uint32_t occupancy() const { function in class:IntSet
80 CHECK_EQ(map_.occupancy(), static_cast<double>(count));
96 CHECK_EQ(0, set.occupancy());
101 CHECK_EQ(3, set.occupancy());
105 CHECK_EQ(3, set.occupancy());
111 CHECK_EQ(3, set.occupancy());
117 CHECK_EQ(2, set.occupancy());
123 CHECK_EQ(1, set.occupancy());
126 CHECK_EQ(0, set.occupancy());
136 CHECK_EQ(i, static_cast<double>(set.occupancy()));
[all...]
H A Dtest-api.cc14481 CHECK_LT(0, code.occupancy());
/external/chromium_org/v8/src/
H A Dinterface.cc122 this->exports_->occupancy() >= that->exports_->occupancy())) {
164 int this_size = this->exports_ == NULL ? 0 : this->exports_->occupancy();
165 int that_size = map == NULL ? 0 : map->occupancy();
197 if (map == NULL || map->occupancy() == 0) {
H A Dinterface.h129 return exports ? exports->occupancy() : 0;
H A Dhashmap.h57 // Empties the hash map (occupancy() == 0).
61 uint32_t occupancy() const { return occupancy_; } function in class:v8::internal::TemplateHashMapImpl
64 // makes sure that occupancy is at most 80% of
130 // Grow the map if we reached >= 80% occupancy.
H A Dheap-snapshot-generator.cc443 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
451 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
472 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
485 entries_map_.occupancy());
504 entries_map_.occupancy());
586 entries_map_.occupancy());
614 entries_map_.occupancy());
692 entries_map_.occupancy());
2337 return objects_by_info_.occupancy();
3130 strings_.occupancy()
[all...]
H A Dheap-snapshot-generator.h310 bool is_empty() const { return entries_.occupancy() == 0; }
H A Dscopes.cc614 ZoneList<VarAndOrder> vars(variables_.occupancy(), zone());
1323 ZoneList<VarAndOrder> vars(variables_.occupancy(), zone());
H A Ddebug.cc644 Handle<FixedArray> instances = factory->NewFixedArray(occupancy());
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py197 occupancy = used * 100. / total variable
199 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
235 # Maintain at least 30% occupancy in the table */
236 if occupancy < 30:
237 raise Exception ("Table too sparse, please investigate: ", occupancy)
H A Dgen-arabic-table.py120 occupancy = num * 100. / offset
121 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)

Completed in 1315 milliseconds