Home | History | Annotate | Download | only in cert

Lines Matching refs:cache_size

93     private final int cache_size;
133 cache_size = size;
135 hashes = new long[cache_size];
136 hashes_idx = new long[cache_size];
137 encodings = new byte[cache_size][];
138 cache = new Object[cache_size];
195 if (idx == cache_size) {
219 if (idx == cache_size) {
228 if (idx == cache_size) {
243 if (last_cached == cache_size) {
299 if (idx != cache_size - index - 1) {
301 System.arraycopy(hashes_idx, cache_size - index,
302 hashes_idx, cache_size - index - 1,
303 idx - (cache_size - index) + 1);