/external/libvpx/libvpx/vp9/decoder/ |
vp9_detokenize.c | 72 token_cache[scan[c]] = vp9_pt_energy_class[token]; \ 107 uint8_t token_cache[1024]; local 118 pt = get_coef_context(nb, token_cache, c); 129 pt = get_coef_context(nb, token_cache, c);
|
/external/chromium_org/chrome/browser/extensions/api/push_messaging/ |
push_messaging_api.cc | 21 #include "chrome/browser/extensions/token_cache/token_cache_service.h" 22 #include "chrome/browser/extensions/token_cache/token_cache_service_factory.h" 171 TokenCacheService* token_cache = local 177 token_cache->RetrieveToken(GaiaConstants::kObfuscatedGaiaId); 203 TokenCacheService* token_cache = local 205 token_cache->StoreToken(GaiaConstants::kObfuscatedGaiaId, gaia_id,
|
/external/libvpx/libvpx/vp9/common/ |
vp9_entropy.h | 187 uint8_t *token_cache, 189 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] + 190 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_tokenize.c | 130 uint8_t token_cache[1024]; local 152 pt = get_coef_context(nb, token_cache, c); 165 t->skip_eob_node = (c > 0) && (token_cache[scan[c - 1]] == 0); 173 token_cache[rc] = vp9_pt_energy_class[token];
|
vp9_encodemb.c | 136 uint8_t *token_cache) { 137 int bak = token_cache[scan[idx]], pt; 138 token_cache[scan[idx]] = vp9_pt_energy_class[token]; 139 pt = get_coef_context(nb, token_cache, idx + 1); 140 token_cache[scan[idx]] = bak; 167 uint8_t token_cache[1024]; local 214 token_cache[scan[i]] = vp9_pt_energy_class[vp9_dct_value_tokens_ptr[ 235 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); 287 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); 292 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache); [all...] |
vp9_rdopt.c | 498 uint8_t token_cache[1024]; local 517 token_cache[0] = vp9_pt_energy_class[prev_t]; 527 pt = get_coef_context(nb, token_cache, c); 529 token_cache[rc] = vp9_pt_energy_class[t]; 539 pt = get_coef_context(nb, token_cache, c); [all...] |