Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/lib/
H A Dgzip.c54 unsigned long comp_len, left_len; in zzip() local
87 left_len = (*lenp > CONFIG_GZIP_COMPRESS_DEF_SZ) ? in zzip()
90 s.avail_out = left_len; in zzip()
98 dst += (left_len - s.avail_out); in zzip()
99 *lenp -= (left_len - s.avail_out); in zzip()
100 } else if (left_len - s.avail_out > 0) { in zzip()
102 left_len - s.avail_out); in zzip()
/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Dcrypto_hash_cache.c111 hash_cache->left_len = total; in crypto_hash_cache_alloc()
136 if (hash_cache->left_len < data_len) in crypto_hash_update_with_cache()
139 is_last = hash_cache->left_len == data_len ? 1 : 0; in crypto_hash_update_with_cache()
175 hash_cache->left_len -= direct_data_len; in crypto_hash_update_with_cache()
185 hash_cache->left_len -= cache_data_len; in crypto_hash_update_with_cache()
/rk3399_rockchip-uboot/include/rockchip/
H A Dcrypto_hash_cache.h22 u32 left_len; /* left data to calc */ member