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

  /frameworks/native/libs/gui/
OccupancyTracker.cpp 63 void OccupancyTracker::registerOccupancyChange(size_t occupancy) {
77 if (occupancy > mLastOccupancy) {
81 mLastOccupancy = occupancy;
102 size_t occupancy = timePair.first; local
105 occupancyAverage += timeRatio * occupancy;
106 usedThirdBuffer = usedThirdBuffer || (occupancy > 1);
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
AddWorkspaceItemsTaskTest.java 142 GridOccupancy occupancy = new GridOccupancy(idp.numColumns, idp.numRows); local
143 occupancy.markCells(0, 0, idp.numColumns, idp.numRows, true);
145 occupancy.markCells(r, false);
149 screenOccupancy.append(screenId, occupancy);
153 if (!occupancy.cells[x][y]) {
  /external/harfbuzz_ng/src/
gen-indic-table.py 220 occupancy = used * 100. / total variable
222 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
258 # Maintain at least 30% occupancy in the table */
259 if occupancy < 30:
260 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 437 occupancy = used * 100. / total variable
439 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
475 # Maintain at least 50% occupancy in the table */
476 if occupancy < 50:
477 raise Exception ("Table too sparse, please investigate: ", occupancy)
  /frameworks/native/libs/gui/include/gui/
OccupancyTracker.h 62 // Average occupancy of the queue over this segment. (0.0, 1.0) implies
72 void registerOccupancyChange(size_t occupancy);
  /packages/apps/Launcher3/src/com/android/launcher3/model/
LoaderCursor.java 424 final GridOccupancy occupancy = new GridOccupancy(mIDP.numHotseatIcons, 1); local
425 occupancy.cells[(int) item.screenId][0] = true;
426 occupied.put((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT, occupancy);
460 final GridOccupancy occupancy = occupied.get(item.screenId); local
463 if (occupancy.isRegionVacant(item.cellX, item.cellY, item.spanX, item.spanY)) {
464 occupancy.markCells(item, true);
  /external/v8/src/profiler/
profile-generator.h 189 unsigned int GetHitLineCount() const { return line_ticks_.occupancy(); }
heap-snapshot-generator.cc 431 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
439 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
458 DCHECK(static_cast<uint32_t>(entries_.length()) > entries_map_.occupancy());
471 entries_map_.occupancy());
489 entries_map_.occupancy());
567 entries_map_.occupancy());
595 entries_map_.occupancy());
678 entries_map_.occupancy());
    [all...]
heap-snapshot-generator.h 318 bool is_empty() const { return entries_.occupancy() == 0; }
profile-generator.cc 231 unsigned line_count = line_ticks_.occupancy();
  /external/v8/src/ast/
scopes.h 430 int num_var() const { return variables_.occupancy(); }
    [all...]
scopes.cc 747 if (variables_.occupancy() > 0 ||
    [all...]
  /external/v8/src/base/
hashmap.h 75 // Empties the hash map (occupancy() == 0).
87 uint32_t occupancy() const { return occupancy_; } function in class:v8::base::TemplateHashMapImpl
90 // makes sure that occupancy is at most 80% of
323 // Grow the map if we reached >= 80% occupancy.

Completed in 702 milliseconds