HomeSort by relevance Sort by last modified time
    Searched refs:costs (Results 1 - 20 of 20) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_cost.c 38 static void cost(int *costs, vpx_tree tree, const vpx_prob *probs,
48 costs[-ii] = cc;
50 cost(costs, tree, probs, ii, cc);
54 void vp9_cost_tokens(int *costs, const vpx_prob *probs, vpx_tree tree) {
55 cost(costs, tree, probs, 0, 0);
58 void vp9_cost_tokens_skip(int *costs, const vpx_prob *probs, vpx_tree tree) {
61 costs[-tree[0]] = vp9_cost_bit(probs[0], 0);
62 cost(costs, tree, probs, 2, 0);
vp9_cost.h 48 void vp9_cost_tokens(int *costs, const vpx_prob *probs, vpx_tree tree);
49 void vp9_cost_tokens_skip(int *costs, const vpx_prob *probs, vpx_tree tree);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_cost.c 37 static void cost(int *costs, vp9_tree tree, const vp9_prob *probs,
47 costs[-ii] = cc;
49 cost(costs, tree, probs, ii, cc);
53 void vp9_cost_tokens(int *costs, const vp9_prob *probs, vp9_tree tree) {
54 cost(costs, tree, probs, 0, 0);
57 void vp9_cost_tokens_skip(int *costs, const vp9_prob *probs, vp9_tree tree) {
60 costs[-tree[0]] = vp9_cost_bit(probs[0], 0);
61 cost(costs, tree, probs, 2, 0);
vp9_cost.h 48 void vp9_cost_tokens(int *costs, const vp9_prob *probs, vp9_tree tree);
49 void vp9_cost_tokens_skip(int *costs, const vp9_prob *probs, vp9_tree tree);
  /external/webp/src/dsp/
cost_mips_dsp_r2.c 24 CostArrayPtr const costs = res->costs; local
25 const uint16_t* t = costs[n][ctx0];
34 const uint16_t** p_costs = &costs[n][0];
cost.c 50 // fixed costs for coding levels, deduce from the coding tree.
320 // Mode costs
326 CostArrayPtr const costs = res->costs; local
327 const uint16_t* t = costs[n][ctx0];
340 t = costs[n + 1][ctx];
cost_mips32.c 24 CostArrayPtr const costs = res->costs; local
25 const uint16_t* t = costs[n][ctx0];
34 const uint16_t** p_costs = &costs[n][0];
cost_sse2.c 51 CostArrayPtr const costs = res->costs; local
52 const uint16_t* t = costs[n][ctx0];
87 t = costs[n + 1][ctx];
  /external/opencv3/modules/flann/include/opencv2/flann/
autotuned_index.h 322 void optimizeKMeans(std::vector<CostData>& costs)
331 costs.reserve(costs.size() + kmeansParamSpaceSize);
343 costs.push_back(cost);
370 void optimizeKDTree(std::vector<CostData>& costs)
383 costs.push_back(cost);
413 std::vector<CostData> costs; local
446 costs.push_back(linear_cost);
451 optimizeKMeans(costs);
452 optimizeKDTree(costs);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.cpp 185 // costs.
191 PBQPRAGraph::RawMatrix costs(vRdAllowed->size() + 1,
198 costs[i + 1][j + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity();
200 costs[i + 1][j + 1] = haveSameParity(pRd, pRa) ? 0.0 : 1.0;
203 G.addEdge(node1, node2, std::move(costs));
213 PBQPRAGraph::RawMatrix costs(G.getEdgeCosts(edge));
223 if (costs[i + 1][j + 1] !=
225 costs[i + 1][j + 1] > sameParityMax)
226 sameParityMax = costs[i + 1][j + 1];
234 if (sameParityMax > costs[i + 1][j + 1]
    [all...]
  /external/zopfli/src/zopfli/
squeeze.c 215 float* costs; local
229 costs = (float*)malloc(sizeof(float) * (blocksize + 1));
230 if (!costs) exit(-1); /* Allocation failed. */
238 for (i = 1; i < blocksize + 1; i++) costs[i] = ZOPFLI_LARGE_FLOAT;
239 costs[0] = 0; /* Because it's the start. */
243 size_t j = i - instart; /* Index in the costs array and length_array. */
259 costs[j + ZOPFLI_MAX_MATCH] = costs[j] + symbolcost;
273 double newCost = costs[j] + costmodel(in[i], 0, costcontext);
275 if (newCost < costs[j + 1])
    [all...]
  /external/webp/src/enc/
cost.h 36 CostArrayPtr costs; member in struct:VP8Residual
57 // Mode costs
quant.c 549 const uint16_t* costs; // shortcut to cost tables member in struct:__anon26156
576 CostArrayPtr const costs = local
614 ss_cur[m].costs = costs[first][ctx0];
648 ss_cur[m].costs = costs[n + 1][ctx];
674 const score_t cost = VP8LevelCost(ss_prev[p].costs, level);
    [all...]
cost.c 58 // Pre-calc level costs once for all
211 res->costs = enc->proba_.remapped_costs_[coeff_type];
216 // Mode costs
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/neon/
variance_neon.asm 76 ;vmov.32 r0, d0[0] ;this instruction costs a lot
  /external/opencv3/3rdparty/libwebp/enc/
quant.c 493 CostArray* const costs = it->enc_->proba_.level_cost_[coeff_type]; local
574 const uint16_t* const tcost = costs[VP8EncBands[n]][prev_ctx];
    [all...]
  /external/valgrind/
Android.mk 406 callgrind/costs.c \
  /external/valgrind/callgrind/
callgrind_annotate.in 214 --inclusive=yes|no add subroutine costs to functions calls [no]
565 # inclusive costs
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
subpel_variance_sse2.asm 1019 ; a byte costs 1 pack and 2 unpacks, but saves a register.
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_subpel_variance.asm 1043 ; a byte costs 1 pack and 2 unpacks, but saves a register.
    [all...]

Completed in 274 milliseconds