Home
last modified time | relevance | path

Searched refs:fsize (Results 1 – 3 of 3) sorted by relevance

/system/core/trusty/storage/tests/
Dmain.cpp1150 storage_off_t fsize = (storage_off_t)(-1); in TEST_P() local
1151 rc = storage_get_file_size(handle1, &fsize); in TEST_P()
1196 storage_off_t fsize = (storage_off_t)(-1); in TEST_P() local
1197 rc = storage_get_file_size(handle1, &fsize); in TEST_P()
1241 storage_off_t fsize = (storage_off_t)(-1); in TEST_P() local
1251 rc = storage_get_file_size(handle, &fsize); in TEST_P()
1253 ASSERT_EQ((storage_off_t)0, fsize); in TEST_P()
1260 rc = storage_get_file_size(handle, &fsize); in TEST_P()
1262 ASSERT_EQ((storage_off_t)exp_len, fsize); in TEST_P()
1269 rc = storage_get_file_size(handle, &fsize); in TEST_P()
[all …]
/system/media/audio_utils/spdif/
DDTSFrameScanner.cpp88 uint32_t fsize = parser.readBits(14); in parseHeader() local
104 if (fsize < DTS_MINIMUM_FSIZE) { in parseHeader()
105 ALOGE("DTSFrameScanner: ERROR - fsize = %u", fsize); in parseHeader()
128 mFrameSizeBytes = fsize + 1; in parseHeader()
/system/extras/mmap-perf/
DmmapPerf.cpp17 static size_t fsize = 1024 * (1ull << 20); variable
18 static size_t pagesTotal = fsize / pageSize;
114 FileMap file{"/data/local/tmp/mmap_test", fsize}; in benchRandomRead()
124 FileMap file{"/data/local/tmp/mmap_test", fsize}; in benchRandomWrite()
134 FileMap file{"/data/local/tmp/mmap_test", fsize}; in benchLinearRead()
145 FileMap file{"/data/local/tmp/mmap_test", fsize}; in benchLinearWrite()