HomeSort by relevance Sort by last modified time
    Searched full:maxsizebytes (Results 1 - 1 of 1) sorted by null

  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 375 long maxSizeBytes = (long) Math.min(Math.floor(
378 // Round maxSizeBytes up to a multiple of 1024KB (but only if
379 // maxSizeBytes > 1MB).
381 if (maxSizeBytes < maxSizeStepBytes) {
384 long roundingExtra = maxSizeBytes % maxSizeStepBytes == 0 ? 0 : 1;
386 * ((maxSizeBytes / maxSizeStepBytes) + roundingExtra));

Completed in 291 milliseconds