Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/
Doauth2_helper.py43 token_cache = None
47 token_cache = oauth2_client.FileSystemTokenCache(
50 token_cache = oauth2_client.FileSystemTokenCache()
52 token_cache = oauth2_client.InMemoryTokenCache()
97 access_token_cache=token_cache, auth_uri=provider_authorization_uri,
109 access_token_cache=token_cache, auth_uri=provider_authorization_uri,
142 auth_uri=provider_authorization_uri, access_token_cache=token_cache,
/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]]) >> 1; in get_coef_context()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c63 uint8_t token_cache[32 * 32]; in decode_coefs() local
128 token_cache[scan[c]] = 0; in decode_coefs()
132 ctx = get_coef_context(nb, token_cache, c); in decode_coefs()
199 token_cache[scan[c]] = vp9_pt_energy_class[token]; in decode_coefs()
201 ctx = get_coef_context(nb, token_cache, c); in decode_coefs()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_tokenize.c471 uint8_t token_cache[32 * 32]; in tokenize_b() local
516 token_cache[scan[c]] = 0; in tokenize_b()
518 pt = get_coef_context(nb, token_cache, c); in tokenize_b()
528 token_cache[scan[c]] = vp9_pt_energy_class[token]; in tokenize_b()
530 pt = get_coef_context(nb, token_cache, c); in tokenize_b()
Dvp9_encodemb.c81 uint8_t *token_cache) { in trellis_get_coeff_context() argument
82 int bak = token_cache[scan[idx]], pt; in trellis_get_coeff_context()
83 token_cache[scan[idx]] = vp9_pt_energy_class[token]; in trellis_get_coeff_context()
84 pt = get_coef_context(nb, token_cache, idx + 1); in trellis_get_coeff_context()
85 token_cache[scan[idx]] = bak; in trellis_get_coeff_context()
97 uint8_t token_cache[1024]; in optimize_b() local
139 token_cache[scan[i]] = in optimize_b()
158 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); in optimize_b()
213 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); in optimize_b()
218 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache); in optimize_b()
Dvp9_rdopt.c372 uint8_t token_cache[32 * 32]; in cost_coeffs() local
400 token_cache[0] = vp9_pt_energy_class[prev_t]; in cost_coeffs()
414 pt = get_coef_context(nb, token_cache, c); in cost_coeffs()
417 token_cache[rc] = vp9_pt_energy_class[t]; in cost_coeffs()
431 pt = get_coef_context(nb, token_cache, c); in cost_coeffs()
/external/clang/include/clang/Driver/
DCC1Options.td633 def token_cache : Separate<["-"], "token-cache">, MetaVarName<"<path>">,