Searched defs:PAGE_SIZE (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
H A DFakeApp.java43 static final int PAGE_SIZE = 4*1024; field in class:FakeApp
148 for (int i=0; i<STUFFING_SIZE_BYTES/PAGE_SIZE; i++) {
151 final int OFF = (i*PAGE_SIZE)/4;
152 for (int j=0; j<(PAGE_SIZE/4); j++) {
/frameworks/base/core/java/android/nfc/tech/
H A DMifareUltralight.java35 * <p>MIFARE Ultralight compatible tags have 4 byte pages {@link #PAGE_SIZE}.
72 public static final int PAGE_SIZE = 4; field in class:MifareUltralight
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DBrowseFragment.java60 private static final int PAGE_SIZE = 6; field in class:BrowseFragment
82 if (page < 0 || pageSize != PAGE_SIZE || children == null
83 || children.size() > PAGE_SIZE) {
87 int itemIndex = page * PAGE_SIZE;
105 // If the newly loaded page contains less than {PAGE_SIZE} items,
107 if (children.size() < PAGE_SIZE) {
217 loadPage((mMediaItems.size() + PAGE_SIZE - 1) / PAGE_SIZE);
251 options.putInt(MediaBrowserCompat.EXTRA_PAGE_SIZE, PAGE_SIZE);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DBrowseFragment.java60 private static final int PAGE_SIZE = 6; field in class:BrowseFragment
82 if (page < 0 || pageSize != PAGE_SIZE || children == null
83 || children.size() > PAGE_SIZE) {
87 int itemIndex = page * PAGE_SIZE;
105 // If the newly loaded page contains less than {PAGE_SIZE} items,
107 if (children.size() < PAGE_SIZE) {
217 loadPage((mMediaItems.size() + PAGE_SIZE - 1) / PAGE_SIZE);
251 options.putInt(MediaBrowserCompat.EXTRA_PAGE_SIZE, PAGE_SIZE);
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java125 static final int PAGE_SIZE = 4*1024; field in class:ProcessList
292 buf.putInt((mOomMinFree[i]*1024)/PAGE_SIZE);

Completed in 1989 milliseconds