Searched refs:token_cache (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_scan.h | 36 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/decoder/ |
D | vp9_detokenize.c | 129 uint8_t token_cache[32 * 32]; in decode_coefs() local 171 token_cache[scan[c]] = 0; in decode_coefs() 179 ctx = get_coef_context(nb, token_cache, c); in decode_coefs() 189 token_cache[scan[c]] = 5; in decode_coefs() 206 token_cache[scan[c]] = 4; in decode_coefs() 223 token_cache[scan[c]] = 3; in decode_coefs() 227 token_cache[scan[c]] = 2; in decode_coefs() 233 token_cache[scan[c]] = 1; in decode_coefs() 252 ctx = get_coef_context(nb, token_cache, c); in decode_coefs()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_tokenize.c | 356 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()
|
D | vp9_encodemb.c | 71 uint8_t token_cache[1024]; in vp9_optimize_b() local 121 token_cache[rc] = vp9_pt_energy_class[vp9_get_token(qcoeff[rc])]; in vp9_optimize_b() 137 const int ctx_cur = (i == 0) ? ctx : get_coef_context(nb, token_cache, i); in vp9_optimize_b() 217 token_cache[rc] = vp9_pt_energy_class[t0]; in vp9_optimize_b() 218 ctx_next = get_coef_context(nb, token_cache, i + 1); in vp9_optimize_b() 224 token_cache[rc] = vp9_pt_energy_class[t1]; in vp9_optimize_b() 225 ctx_next = get_coef_context(nb, token_cache, i + 1); in vp9_optimize_b() 269 token_cache[rc] = vp9_pt_energy_class[t1]; in vp9_optimize_b() 274 token_cache[rc] = vp9_pt_energy_class[t0]; in vp9_optimize_b()
|
D | vp9_rdopt.c | 374 uint8_t token_cache[32 * 32]; in cost_coeffs() local 401 token_cache[0] = vp9_pt_energy_class[prev_t]; in cost_coeffs() 433 token_cache[0] = vp9_pt_energy_class[tok]; in cost_coeffs() 444 pt = get_coef_context(nb, token_cache, c); in cost_coeffs() 446 token_cache[rc] = vp9_pt_energy_class[tok]; in cost_coeffs() 456 pt = get_coef_context(nb, token_cache, c); in cost_coeffs()
|
/external/clang/include/clang/Driver/ |
D | CC1Options.td | 663 def token_cache : Separate<["-"], "token-cache">, MetaVarName<"<path>">,
|