OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ctx0
(Results
1 - 8
of
8
) sorted by null
/external/webp/src/dsp/
cost_mips_dsp_r2.c
18
static int GetResidualCost_MIPSdspR2(int
ctx0
, const VP8Residual* const res) {
23
int p0 = res->prob[n][
ctx0
][0];
25
const uint16_t* t = costs[n][
ctx0
];
27
// (as required by the syntax). For
ctx0
== 0, we need to add it here or it'll
29
int cost = (
ctx0
== 0) ? VP8BitCost(1, p0) : 0;
cost_sse2.c
45
static int GetResidualCost_SSE2(int
ctx0
, const VP8Residual* const res) {
50
const int p0 = res->prob[n][
ctx0
][0];
52
const uint16_t* t = costs[n][
ctx0
];
54
// (as required by the syntax). For
ctx0
== 0, we need to add it here or it'll
56
int cost = (
ctx0
== 0) ? VP8BitCost(1, p0) : 0;
cost_mips32.c
18
static int GetResidualCost_MIPS32(int
ctx0
, const VP8Residual* const res) {
23
int p0 = res->prob[n][
ctx0
][0];
25
const uint16_t* t = costs[n][
ctx0
];
27
// (as required by the syntax). For
ctx0
== 0, we need to add it here or it'll
29
int cost = (
ctx0
== 0) ? VP8BitCost(1, p0) : 0;
cost.c
322
static int GetResidualCost_C(int
ctx0
, const VP8Residual* const res) {
325
const int p0 = res->prob[n][
ctx0
][0];
327
const uint16_t* t = costs[n][
ctx0
];
329
// (as required by the syntax). For
ctx0
== 0, we need to add it here or it'll
331
int cost = (
ctx0
== 0) ? VP8BitCost(1, p0) : 0;
dsp.h
283
typedef int (*VP8GetResidualCostFunc)(int
ctx0
,
/external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c
324
const int
ctx0
= vp9_get_pred_context_single_ref_p1(xd);
local
325
const int bit0 = vpx_read(r, fc->single_ref_prob[
ctx0
][0]);
326
if (counts) ++counts->single_ref[
ctx0
][0][bit0];
/external/webp/src/enc/
quant_enc.c
589
int
ctx0
, int coeff_type,
607
const int last_proba = probas[VP8EncBands[first]][
ctx0
][0];
629
const score_t rate = (
ctx0
== 0) ? VP8BitCost(1, last_proba) : 0;
631
ss_cur[m].costs = costs[first][
ctx0
];
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c
95
const int
ctx0
= ctx;
local
116
rate0 = (*token_costs_cur)[0][
ctx0
][EOB_TOKEN];
[
all
...]
Completed in 717 milliseconds