OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:token_cache
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c
88
uint8_t
token_cache
[32 * 32];
local
130
token_cache
[scan[c]] = 0;
138
ctx = get_coef_context(nb,
token_cache
, c);
148
token_cache
[scan[c]] = 5;
165
token_cache
[scan[c]] = 4;
182
token_cache
[scan[c]] = 3;
186
token_cache
[scan[c]] = 2;
192
token_cache
[scan[c]] = 1;
211
ctx = get_coef_context(nb,
token_cache
, c);
/external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c
356
uint8_t
token_cache
[32 * 32];
local
395
token_cache
[scan[c]] = 0;
397
pt = get_coef_context(nb,
token_cache
, c);
405
token_cache
[scan[c]] = vp9_pt_energy_class[token];
407
pt = get_coef_context(nb,
token_cache
, c);
vp9_encodemb.c
75
int idx, int token, uint8_t *
token_cache
) {
76
int bak =
token_cache
[scan[idx]], pt;
77
token_cache
[scan[idx]] = vp9_pt_energy_class[token];
78
pt = get_coef_context(nb,
token_cache
, idx + 1);
79
token_cache
[scan[idx]] = bak;
102
uint8_t
token_cache
[1024];
local
152
token_cache
[rc] = vp9_pt_energy_class[vp9_get_token(qcoeff[rc])];
169
pt = trellis_get_coeff_context(scan, nb, i, t0,
token_cache
);
226
pt = trellis_get_coeff_context(scan, nb, i, t0,
token_cache
);
230
pt = trellis_get_coeff_context(scan, nb, i, t1,
token_cache
);
[
all
...]
vp9_rdopt.c
364
uint8_t
token_cache
[32 * 32];
local
391
token_cache
[0] = vp9_pt_energy_class[prev_t];
423
token_cache
[0] = vp9_pt_energy_class[tok];
434
pt = get_coef_context(nb,
token_cache
, c);
436
token_cache
[rc] = vp9_pt_energy_class[tok];
446
pt = get_coef_context(nb,
token_cache
, c);
[
all
...]
Completed in 362 milliseconds