HomeSort by relevance Sort by last modified time
    Searched defs:occupancy (Results 1 - 6 of 6) 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-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)
  /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/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 136 milliseconds