HomeSort by relevance Sort by last modified time
    Searched full:token_cache (Results 1 - 13 of 13) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_scan.h 36 const uint8_t *token_cache, int c) {
37 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] +
38 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_scan.h 38 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;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/
oauth2_helper.py 43 token_cache = None
44 token_cache_type = config.get('OAuth2', 'token_cache', 'file_system')
47 token_cache = oauth2_client.FileSystemTokenCache(
50 token_cache = oauth2_client.FileSystemTokenCache()
52 token_cache = oauth2_client.InMemoryTokenCache()
55 "Invalid value for config option OAuth2/token_cache: %s" %
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,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_detokenize.c 70 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/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c 63 uint8_t token_cache[32 * 32]; local
128 token_cache[scan[c]] = 0;
132 ctx = get_coef_context(nb, token_cache, c);
199 token_cache[scan[c]] = vp9_pt_energy_class[token];
201 ctx = get_coef_context(nb, token_cache, c);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_tokenize.c 215 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);
vp9_encodemb.c 100 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);
    [all...]
vp9_rdopt.c 568 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);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 81 uint8_t *token_cache) {
82 int bak = token_cache[scan[idx]], pt;
83 token_cache[scan[idx]] = vp9_pt_energy_class[token];
84 pt = get_coef_context(nb, token_cache, idx + 1);
85 token_cache[scan[idx]] = bak;
97 uint8_t token_cache[1024]; local
139 token_cache[scan[i]] =
158 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
213 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
218 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache);
    [all...]
vp9_tokenize.c 471 uint8_t token_cache[32 * 32]; local
516 token_cache[scan[c]] = 0;
518 pt = get_coef_context(nb, token_cache, c);
528 token_cache[scan[c]] = vp9_pt_energy_class[token];
530 pt = get_coef_context(nb, token_cache, c);
    [all...]
vp9_rdopt.c 372 uint8_t token_cache[32 * 32]; local
400 token_cache[0] = vp9_pt_energy_class[prev_t];
414 pt = get_coef_context(nb, token_cache, c);
417 token_cache[rc] = vp9_pt_energy_class[t];
431 pt = get_coef_context(nb, token_cache, c);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
config.py 219 token_cache
528 # 'token_cache' specifies how the OAuth2 client should cache access tokens.
537 #token_cache = file_system
538 #token_cache = in_memory
541 # This option is only relevant if token_cache = file_system.
    [all...]
  /external/clang/include/clang/Driver/
CC1Options.td     [all...]

Completed in 2672 milliseconds