HomeSort by relevance Sort by last modified time
    Searched refs:usedBytes (Results 1 - 13 of 13) sorted by null

  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreference.java 76 final long usedBytes = totalBytes - freeBytes;
78 final String used = Formatter.formatFileSize(context, usedBytes);
82 mUsedPercent = (int) ((usedBytes * 100) / totalBytes);
PublicVolumeSettings.java 162 final long usedBytes = totalBytes - freeBytes;
164 final BytesResult result = Formatter.formatBytes(getResources(), usedBytes, 0);
169 mSummary.setPercent((int) ((usedBytes * 100) / totalBytes));
PrivateVolumeSettings.java 262 final long usedBytes = mTotalSize - freeBytes;
264 if (LOGV) Log.v(TAG, "update() freeBytes: " + freeBytes + " usedBytes: " + usedBytes);
266 final BytesResult result = Formatter.formatBytes(getResources(), usedBytes, 0);
271 mSummary.setPercent((int) ((usedBytes * 100) / mTotalSize));
    [all...]
  /external/skia/src/gpu/
GrBufferAllocPool.cpp 157 size_t usedBytes = back.fBuffer->gpuMemorySize() - back.fBytesFree;
158 size_t pad = GrSizeAlignUpPad(usedBytes, alignment);
160 memset((void*)(reinterpret_cast<intptr_t>(fBufferPtr) + usedBytes), 0, pad);
161 usedBytes += pad;
162 *offset = usedBytes;
167 return (void*)(reinterpret_cast<intptr_t>(fBufferPtr) + usedBytes);
  /external/svox/pico/lib/
picoextapi.c 142 picoos_int32 *usedBytes,
153 picoos_getMemUsage(common->mm, resetIncremental, usedBytes, incrUsedBytes, maxUsedBytes);
picoos.c 479 picoos_int32 *usedBytes,
483 *usedBytes = (picoos_int32) this->usedSize;
495 picoos_int32 usedBytes, incrUsedBytes, maxUsedBytes;
497 picoos_getMemUsage(this, resetIncremental, &usedBytes, &incrUsedBytes,
502 PICODBG_DEBUG(("memory used: %d, maximally used: %d", usedBytes, maxUsedBytes));
    [all...]
picoos.h 195 picoos_int32 *usedBytes,
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
MacHIDManager.cpp 213 CFIndex stringLength = CFStringGetLength(cfString), usedBytes = 0L;
219 stringLength, &usedBytes);
220 freeUTF8StringPtr[usedBytes] = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 369 long usedBytes = mCacheStorageInfo.getUsedBytes();
382 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes));
  /external/v8/test/mjsunit/asm/sqlite3/
sqlite-change-heap.js     [all...]
sqlite-pointer-masking.js     [all...]
sqlite-safe-heap.js     [all...]
sqlite.js     [all...]

Completed in 290 milliseconds