Home
last modified time | relevance | path

Searched refs:totalSpace (Results 1 – 4 of 4) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/cache/
DSimpleCache.java73 private long totalSpace; field in SimpleCache
352 return totalSpace; in getCacheSpace()
691 totalSpace += span.length; in addSpan()
700 totalSpace -= span.length; in removeSpanInternal()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsUnixLikeFileSystemTest.java142 long totalSpace = 1024 * 1024 * 1024; // 1 GB in testFileStore() local
143 assertThat(fileStore.getTotalSpace()).isEqualTo(totalSpace); in testFileStore()
144 assertThat(fileStore.getUnallocatedSpace()).isEqualTo(totalSpace); in testFileStore()
145 assertThat(fileStore.getUsableSpace()).isEqualTo(totalSpace); in testFileStore()
149 assertThat(fileStore.getTotalSpace()).isEqualTo(totalSpace); in testFileStore()
154 assertThat(fileStore.getUnallocatedSpace() <= totalSpace - 10000).isTrue(); in testFileStore()
161 assertThat(fileStore.getTotalSpace()).isEqualTo(totalSpace); in testFileStore()
162 assertThat(fileStore.getUnallocatedSpace()).isEqualTo(totalSpace); in testFileStore()
163 assertThat(fileStore.getUsableSpace()).isEqualTo(totalSpace); in testFileStore()
/external/angle/src/libANGLE/
DVaryingPacking.cpp385 unsigned int totalSpace[4] = {0}; in packVaryingIntoRegisterMap() local
398 totalSpace[column]++; in packVaryingIntoRegisterMap()
413 totalSpace[column] < totalSpace[bestColumn])) in packVaryingIntoRegisterMap()
/external/golang-protobuf/proto/
Dall_test.go398 totalSpace := int64(prealloc) + runtimeSpace
401 totalRatio := float64(totalSpace) / float64(need)
405 need, totalSpace, totalRatio, runtimeSpace, runtimeRatio)