Searched refs:token_cache (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_scan.h38 const uint8_t *token_cache, int c) {
39 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] +
40 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1;
37 get_coef_context(const int16_t *neighbors, const uint8_t *token_cache, int c) argument
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h38 const uint8_t *token_cache, int c) {
39 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] +
40 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1;
37 get_coef_context(const int16_t *neighbors, const uint8_t *token_cache, int c) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_detokenize.c72 uint8_t token_cache[32 * 32]; local
132 token_cache[scan[c]] = 0;
136 ctx = get_coef_context(nb, token_cache, c);
194 token_cache[scan[c]] = vp9_pt_energy_class[token];
196 ctx = get_coef_context(nb, token_cache, c);
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c70 token_cache[scan[c]] = vp9_pt_energy_class[token]; \
72 ctx = get_coef_context(nb, token_cache, c); \
98 uint8_t token_cache[32 * 32]; local
119 token_cache[scan[c]] = 0;
123 ctx = get_coef_context(nb, token_cache, c);
/external/chromium_org/chrome/browser/extensions/api/push_messaging/
H A Dpush_messaging_api.cc16 #include "chrome/browser/extensions/token_cache/token_cache_service.h"
17 #include "chrome/browser/extensions/token_cache/token_cache_service_factory.h"
203 TokenCacheService* token_cache = local
209 token_cache->RetrieveToken(GaiaConstants::kObfuscatedGaiaId);
229 TokenCacheService* token_cache = local
231 token_cache->StoreToken(GaiaConstants::kObfuscatedGaiaId, gaia_id,
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_tokenize.c299 uint8_t token_cache[32 * 32]; local
355 token_cache[scan[c]] = 0;
357 pt = get_coef_context(nb, token_cache, c);
368 token_cache[scan[c]] = vp9_pt_energy_class[dct_value_tokens[v].token];
370 pt = get_coef_context(nb, token_cache, c);
H A Dvp9_encodemb.c93 uint8_t *token_cache) {
94 int bak = token_cache[scan[idx]], pt;
95 token_cache[scan[idx]] = vp9_pt_energy_class[token];
96 pt = get_coef_context(nb, token_cache, idx + 1);
97 token_cache[scan[idx]] = bak;
109 uint8_t token_cache[1024]; local
144 token_cache[scan[i]] =
163 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
211 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
216 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache);
90 trellis_get_coeff_context(const int16_t *scan, const int16_t *nb, int idx, int token, uint8_t *token_cache) argument
[all...]
H A Dvp9_rdopt.c296 uint8_t token_cache[32 * 32]; local
314 token_cache[0] = vp9_pt_energy_class[prev_t];
327 pt = get_coef_context(nb, token_cache, c);
329 token_cache[rc] = vp9_pt_energy_class[t];
343 pt = get_coef_context(nb, token_cache, c);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.c215 uint8_t token_cache[32 * 32]; local
259 token_cache[scan[c]] = 0;
261 pt = get_coef_context(nb, token_cache, c);
272 token_cache[scan[c]] =
275 pt = get_coef_context(nb, token_cache, c);
H A Dvp9_encodemb.c100 uint8_t *token_cache) {
101 int bak = token_cache[scan[idx]], pt;
102 token_cache[scan[idx]] = vp9_pt_energy_class[token];
103 pt = get_coef_context(nb, token_cache, idx + 1);
104 token_cache[scan[idx]] = bak;
130 uint8_t token_cache[1024]; local
154 token_cache[scan[i]] = vp9_pt_energy_class[vp9_dct_value_tokens_ptr[
174 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
224 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
229 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache);
97 trellis_get_coeff_context(const int16_t *scan, const int16_t *nb, int idx, int token, uint8_t *token_cache) argument
[all...]
H A Dvp9_rdopt.c568 uint8_t token_cache[32 * 32]; local
586 token_cache[0] = vp9_pt_energy_class[prev_t];
599 pt = get_coef_context(nb, token_cache, c);
601 token_cache[rc] = vp9_pt_energy_class[t];
615 pt = get_coef_context(nb, token_cache, c);

Completed in 2799 milliseconds