Searched refs:numPages (Results 1 - 3 of 3) sorted by path

/frameworks/av/media/libmedia/
H A DMediaUtils.cpp35 long numPages = sysconf(_SC_PHYS_PAGES); local
38 if (pageSize > 0 && numPages > 0) {
39 if (size_t(numPages) < SIZE_MAX / size_t(pageSize)) {
40 maxMem = size_t(numPages) * size_t(pageSize);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java897 long numPages = numBytes / pageSize;
900 numPages++;
902 long newPageCount = DatabaseUtils.longForQuery(this, "PRAGMA max_page_count = " + numPages,
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPageIndicator.java44 public void setNumPages(int numPages) { argument
45 setVisibility(numPages > 1 ? View.VISIBLE : View.INVISIBLE);
49 while (numPages < getChildCount()) {
52 while (numPages > getChildCount()) {

Completed in 116 milliseconds