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

  /external/v8/test/cctest/
test-hashmap.cc 75 uint32_t occupancy() const { function in class:IntSet
80 CHECK_EQ(map_.occupancy(), static_cast<double>(count));
96 CHECK_EQ(0u, set.occupancy());
101 CHECK_EQ(3u, set.occupancy());
105 CHECK_EQ(3u, set.occupancy());
111 CHECK_EQ(3u, set.occupancy());
117 CHECK_EQ(2u, set.occupancy());
123 CHECK_EQ(1u, set.occupancy());
126 CHECK_EQ(0u, set.occupancy());
136 CHECK_EQ(i, static_cast<double>(set.occupancy()));
    [all...]
test-api.cc     [all...]
  /external/v8/src/
cancelable-task.cc 94 while (cancelable_tasks_.occupancy() > 0) {
108 if (cancelable_tasks_.occupancy() > 0) {
hashmap.h 59 // Empties the hash map (occupancy() == 0).
63 uint32_t occupancy() const { return occupancy_; } function in class:v8::internal::TemplateHashMapImpl
66 // makes sure that occupancy is at most 80% of
139 // Grow the map if we reached >= 80% occupancy.
  /external/harfbuzz_ng/src/
gen-indic-table.py 198 occupancy = used * 100. / total variable
200 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
236 # Maintain at least 30% occupancy in the table */
237 if occupancy < 30:
238 raise Exception ("Table too sparse, please investigate: ", occupancy)
gen-arabic-table.py 120 occupancy = num * 100. / offset
121 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
gen-use-table.py 436 occupancy = used * 100. / total variable
438 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
474 # Maintain at least 50% occupancy in the table */
475 if occupancy < 50:
476 raise Exception ("Table too sparse, please investigate: ", occupancy)
  /external/v8/src/ast/
modules.h 56 return exports ? exports->occupancy() : 0;
scopes.cc 689 ZoneList<VarAndOrder> vars(variables_.occupancy(), zone());
    [all...]
  /external/v8/src/profiler/
profile-generator.h 152 unsigned int GetHitLineCount() const { return line_ticks_.occupancy(); }
heap-snapshot-generator.cc 438 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
446 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
467 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
480 entries_map_.occupancy());
499 entries_map_.occupancy());
581 entries_map_.occupancy());
609 entries_map_.occupancy());
692 entries_map_.occupancy());
    [all...]
heap-snapshot-generator.h 316 bool is_empty() const { return entries_.occupancy() == 0; }
profile-generator.cc 188 unsigned line_count = line_ticks_.occupancy();

Completed in 1290 milliseconds