HomeSort by relevance Sort by last modified time
    Searched refs:occupancy (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/v8/test/cctest/
test-hashmap.cc 74 uint32_t occupancy() const { function in class:IntSet
79 CHECK_EQ(map_.occupancy(), static_cast<double>(count));
95 CHECK_EQ(0, set.occupancy());
100 CHECK_EQ(3, set.occupancy());
104 CHECK_EQ(3, set.occupancy());
110 CHECK_EQ(3, set.occupancy());
116 CHECK_EQ(2, set.occupancy());
122 CHECK_EQ(1, set.occupancy());
125 CHECK_EQ(0, set.occupancy());
135 CHECK_EQ(i, static_cast<double>(set.occupancy()));
    [all...]
test-api.cc     [all...]
  /external/v8/test/cctest/
test-hashmap.cc 74 uint32_t occupancy() const { function in class:IntSet
79 CHECK_EQ(map_.occupancy(), static_cast<double>(count));
95 CHECK_EQ(0, set.occupancy());
100 CHECK_EQ(3, set.occupancy());
104 CHECK_EQ(3, set.occupancy());
110 CHECK_EQ(3, set.occupancy());
116 CHECK_EQ(2, set.occupancy());
122 CHECK_EQ(1, set.occupancy());
125 CHECK_EQ(0, set.occupancy());
135 CHECK_EQ(i, static_cast<double>(set.occupancy()));
    [all...]
  /external/chromium_org/v8/src/
interface.cc 150 this->exports_->occupancy() >= that->exports_->occupancy())) {
192 int this_size = this->exports_ == NULL ? 0 : this->exports_->occupancy();
193 int that_size = map == NULL ? 0 : map->occupancy();
225 if (map == NULL || map->occupancy() == 0) {
interface.h 150 return exports ? exports->occupancy() : 0;
hashmap.h 79 // Empties the hash map (occupancy() == 0).
83 uint32_t occupancy() const { return occupancy_; } function in class:v8::internal::TemplateHashMapImpl
86 // makes sure that occupancy is at most 80% of
147 // Grow the map if we reached >= 80% occupancy.
arguments.h 161 table->map_.occupancy() != 0 &&
heap-snapshot-generator.h 372 bool is_empty() const { return entries_.occupancy() == 0; }
scopes.cc 624 ZoneList<VarAndOrder> vars(variables_.occupancy(), zone());
    [all...]
heap-snapshot-generator.cc 440 ASSERT(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
447 ASSERT(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
462 ASSERT(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
557 entries_map_.occupancy());
    [all...]
debug.cc 659 Handle<FixedArray> instances = factory->NewFixedArray(occupancy());
    [all...]
  /external/v8/src/
interface.cc 136 this->exports_->occupancy() >= that->exports_->occupancy())) {
176 int this_size = this->exports_ == NULL ? 0 : this->exports_->occupancy();
177 int that_size = map == NULL ? 0 : map->occupancy();
207 if (map == NULL || map->occupancy() == 0) {
hashmap.h 68 // Empties the hash map (occupancy() == 0).
72 uint32_t occupancy() const { return occupancy_; } function in class:v8::internal::TemplateHashMapImpl
75 // makes sure that occupancy is at most 80% of
134 // Grow the map if we reached >= 80% occupancy.
debug.cc 625 Handle<FixedArray> instances = FACTORY->NewFixedArray(occupancy());
    [all...]
profile-generator.cc     [all...]
  /external/harfbuzz_ng/src/
gen-arabic-table.py 74 occupancy = num * 100 / (max_u - min_u + 1)
75 # Maintain at least 40% occupancy in the table */
76 if occupancy < 40:
77 raise Exception ("Table too sparse, please investigate: ", occupancy)
gen-indic-table.py 181 occupancy = used * 100. / total variable
182 print "}; /* Table occupancy: %d%% */" % occupancy
206 # Maintain at least 30% occupancy in the table */
207 if occupancy < 30:
208 raise Exception ("Table too sparse, please investigate: ", occupancy)

Completed in 3462 milliseconds