Home
last modified time | relevance | path

Searched refs:est_size (Results 1 – 2 of 2) sorted by relevance

/external/autotest/client/tests/dma_memtest/
Ddma_memtest.py45 est_size = size_tarball * compress_ratio
46 self.sim_cps = self.get_sim_cps(est_size)
50 logging.info('Estimated size after uncompression: %s' % est_size)
55 def get_sim_cps(self, est_size): argument
71 sim_cps = (1.5 * mem) / est_size
73 if (mem % est_size) >= (est_size / 2):
/external/pdfium/core/fxcodec/codec/
Dfx_codec.cpp116 uint32_t est_size = 4 * ((src_size + 2) / 3) + 1; in RunLengthEncode() local
117 *dest_buf = FX_Alloc(uint8_t, est_size); in RunLengthEncode()
191 uint32_t est_size = 5 * (src_size / 4) + 4 + src_size / 30 + 2; in A85Encode() local
192 *dest_buf = FX_Alloc(uint8_t, est_size); in A85Encode()