HomeSort by relevance Sort by last modified time
    Searched defs:maxSizeBytes (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_impl.cc 856 const uint32_t maxSizeBytes)
860 notificationTimeMs, maxSizeBytes);
872 const uint32_t maxSizeBytes = 0;
875 notificationTimeMs, maxSizeBytes, videoOnly);
884 const uint32_t maxSizeBytes,
918 if(maxSizeBytes)
920 outputStream->SetMaxFileSize(maxSizeBytes);
    [all...]
  /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 418 milliseconds