Home
last modified time | relevance | path

Searched refs:token_cache (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c88 uint8_t token_cache[32 * 32]; in decode_coefs() local
130 token_cache[scan[c]] = 0; in decode_coefs()
138 ctx = get_coef_context(nb, token_cache, c); in decode_coefs()
148 token_cache[scan[c]] = 5; in decode_coefs()
165 token_cache[scan[c]] = 4; in decode_coefs()
182 token_cache[scan[c]] = 3; in decode_coefs()
186 token_cache[scan[c]] = 2; in decode_coefs()
192 token_cache[scan[c]] = 1; in decode_coefs()
211 ctx = get_coef_context(nb, token_cache, c); in decode_coefs()
/external/libvpx/libvpx/vp9/common/
Dvp9_scan.h36 const uint8_t *token_cache, int c) { in get_coef_context() argument
37 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] + in get_coef_context()
38 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> in get_coef_context()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_tokenize.c356 uint8_t token_cache[32 * 32]; in tokenize_b() local
395 token_cache[scan[c]] = 0; in tokenize_b()
397 pt = get_coef_context(nb, token_cache, c); in tokenize_b()
405 token_cache[scan[c]] = vp9_pt_energy_class[token]; in tokenize_b()
407 pt = get_coef_context(nb, token_cache, c); in tokenize_b()
Dvp9_encodemb.c67 uint8_t token_cache[1024]; in vp9_optimize_b() local
117 token_cache[rc] = vp9_pt_energy_class[vp9_get_token(qcoeff[rc])]; in vp9_optimize_b()
133 const int ctx_cur = (i == 0) ? ctx : get_coef_context(nb, token_cache, i); in vp9_optimize_b()
213 token_cache[rc] = vp9_pt_energy_class[t0]; in vp9_optimize_b()
214 ctx_next = get_coef_context(nb, token_cache, i + 1); in vp9_optimize_b()
220 token_cache[rc] = vp9_pt_energy_class[t1]; in vp9_optimize_b()
221 ctx_next = get_coef_context(nb, token_cache, i + 1); in vp9_optimize_b()
265 token_cache[rc] = vp9_pt_energy_class[t1]; in vp9_optimize_b()
270 token_cache[rc] = vp9_pt_energy_class[t0]; in vp9_optimize_b()
Dvp9_rdopt.c366 uint8_t token_cache[32 * 32]; in cost_coeffs() local
393 token_cache[0] = vp9_pt_energy_class[prev_t]; in cost_coeffs()
425 token_cache[0] = vp9_pt_energy_class[tok]; in cost_coeffs()
436 pt = get_coef_context(nb, token_cache, c); in cost_coeffs()
438 token_cache[rc] = vp9_pt_energy_class[tok]; in cost_coeffs()
448 pt = get_coef_context(nb, token_cache, c); in cost_coeffs()
/external/clang/include/clang/Driver/
DCC1Options.td663 def token_cache : Separate<["-"], "token-cache">, MetaVarName<"<path>">,