Home
last modified time | relevance | path

Searched refs:costs (Results 1 – 25 of 110) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64PBQPRegAlloc.cpp190 PBQPRAGraph::RawMatrix costs(vRdAllowed->size() + 1, in addIntraChainConstraint() local
197 costs[i + 1][j + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity(); in addIntraChainConstraint()
199 costs[i + 1][j + 1] = haveSameParity(pRd, pRa) ? 0.0 : 1.0; in addIntraChainConstraint()
202 G.addEdge(node1, node2, std::move(costs)); in addIntraChainConstraint()
212 PBQPRAGraph::RawMatrix costs(G.getEdgeCosts(edge)); in addIntraChainConstraint() local
222 if (costs[i + 1][j + 1] != in addIntraChainConstraint()
224 costs[i + 1][j + 1] > sameParityMax) in addIntraChainConstraint()
225 sameParityMax = costs[i + 1][j + 1]; in addIntraChainConstraint()
233 if (sameParityMax > costs[i + 1][j + 1]) in addIntraChainConstraint()
234 costs[i + 1][j + 1] = sameParityMax + 1.0; in addIntraChainConstraint()
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dcost_mips_dsp_r2.c24 CostArrayPtr const costs = res->costs; in GetResidualCost_MIPSdspR2() local
25 const uint16_t* t = costs[n][ctx0]; in GetResidualCost_MIPSdspR2()
34 const uint16_t** p_costs = &costs[n][0]; in GetResidualCost_MIPSdspR2()
Dcost.c326 CostArrayPtr const costs = res->costs; in GetResidualCost_C() local
327 const uint16_t* t = costs[n][ctx0]; in GetResidualCost_C()
340 t = costs[n + 1][ctx]; in GetResidualCost_C()
Dcost_mips32.c24 CostArrayPtr const costs = res->costs; in GetResidualCost_MIPS32() local
25 const uint16_t* t = costs[n][ctx0]; in GetResidualCost_MIPS32()
34 const uint16_t** p_costs = &costs[n][0]; in GetResidualCost_MIPS32()
Dcost_sse2.c51 CostArrayPtr const costs = res->costs; in GetResidualCost_SSE2() local
52 const uint16_t* t = costs[n][ctx0]; in GetResidualCost_SSE2()
87 t = costs[n + 1][ctx]; in GetResidualCost_SSE2()
Dcost_neon.c57 CostArrayPtr const costs = res->costs; in GetResidualCost_NEON() local
58 const uint16_t* t = costs[n][ctx0]; in GetResidualCost_NEON()
90 t = costs[n + 1][ctx]; in GetResidualCost_NEON()
/third_party/icu/docs/userguide/icu/
Dindex.md44 or incur high costs to build them.
59 risk, maintenance costs and training costs. It also enhances organizational
/third_party/skia/third_party/externals/libwebp/src/enc/
Dcost_enc.h36 CostArrayPtr costs; member
Dquant_enc.c567 const uint16_t* costs; // shortcut to cost tables member
594 CostArrayPtr const costs = in TrellisQuantizeBlock() local
632 ss_cur[m].costs = costs[first][ctx0]; in TrellisQuantizeBlock()
668 ss_cur[m].costs = costs[n + 1][ctx]; in TrellisQuantizeBlock()
688 const score_t cost = VP8LevelCost(ss_prev[p].costs, level); in TrellisQuantizeBlock()
Dcost_enc.c211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/third_party/rust/crates/memchr/bench/data/opensubtitles/
Dzh-small.txt27 日常開支近2倍 overhead costs are nearly double.
/third_party/skia/third_party/externals/libpng/
DTODO15 (e.g., counting huffman bits/precompression; filter inertia; filter costs).
/third_party/skia/third_party/externals/dawn/docs/
Dtesting.md65 layout incurs additional state tracking costs in Dawn.
66 - With/Without render bundles: All of the above can have lower validation costs if
/third_party/libsnd/docs/
Ddonate.md11 maintaining this library for Windows costs me significant amounts of time above
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_depth_clip_control.txt24 different depth value, costs ALU and consumes shader output components that
/third_party/mesa3d/src/gtest/src/
Dgtest.cc1037 std::vector<std::vector<double> > costs( in CalculateOptimalEdits() local
1043 for (size_t l_i = 0; l_i < costs.size(); ++l_i) { in CalculateOptimalEdits()
1044 costs[l_i][0] = static_cast<double>(l_i); in CalculateOptimalEdits()
1048 for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) { in CalculateOptimalEdits()
1049 costs[0][r_i] = static_cast<double>(r_i); in CalculateOptimalEdits()
1057 costs[l_i + 1][r_i + 1] = costs[l_i][r_i]; in CalculateOptimalEdits()
1062 const double add = costs[l_i + 1][r_i]; in CalculateOptimalEdits()
1063 const double remove = costs[l_i][r_i + 1]; in CalculateOptimalEdits()
1064 const double replace = costs[l_i][r_i]; in CalculateOptimalEdits()
1066 costs[l_i + 1][r_i + 1] = add + 1; in CalculateOptimalEdits()
[all …]
/third_party/googletest/googletest/src/
Dgtest.cc1293 std::vector<std::vector<double> > costs( in CalculateOptimalEdits() local
1299 for (size_t l_i = 0; l_i < costs.size(); ++l_i) { in CalculateOptimalEdits()
1300 costs[l_i][0] = static_cast<double>(l_i); in CalculateOptimalEdits()
1304 for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) { in CalculateOptimalEdits()
1305 costs[0][r_i] = static_cast<double>(r_i); in CalculateOptimalEdits()
1313 costs[l_i + 1][r_i + 1] = costs[l_i][r_i]; in CalculateOptimalEdits()
1318 const double add = costs[l_i + 1][r_i]; in CalculateOptimalEdits()
1319 const double remove = costs[l_i][r_i + 1]; in CalculateOptimalEdits()
1320 const double replace = costs[l_i][r_i]; in CalculateOptimalEdits()
1322 costs[l_i + 1][r_i + 1] = add + 1; in CalculateOptimalEdits()
[all …]
/third_party/node/deps/googletest/src/
Dgtest.cc1301 std::vector<std::vector<double> > costs( in CalculateOptimalEdits() local
1307 for (size_t l_i = 0; l_i < costs.size(); ++l_i) { in CalculateOptimalEdits()
1308 costs[l_i][0] = static_cast<double>(l_i); in CalculateOptimalEdits()
1312 for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) { in CalculateOptimalEdits()
1313 costs[0][r_i] = static_cast<double>(r_i); in CalculateOptimalEdits()
1321 costs[l_i + 1][r_i + 1] = costs[l_i][r_i]; in CalculateOptimalEdits()
1326 const double add = costs[l_i + 1][r_i]; in CalculateOptimalEdits()
1327 const double remove = costs[l_i][r_i + 1]; in CalculateOptimalEdits()
1328 const double replace = costs[l_i][r_i]; in CalculateOptimalEdits()
1330 costs[l_i + 1][r_i + 1] = add + 1; in CalculateOptimalEdits()
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/IBM/
DIBM_static_data.txt33 result in ineffective amortization of fixed costs. Neither copying nor
/third_party/rust/crates/memchr/bench/data/pathological/
DREADME.md3 is to make the costs of those heuristics clearer. In particular, the main idea
/third_party/openGLES/extensions/IBM/
DIBM_static_data.txt33 result in ineffective amortization of fixed costs. Neither copying nor
/third_party/skia/site/docs/dev/design/conical/
D_index.md189 $b = -2 \cdot (x + (r1 - r0) \cdot r0)$ costs 2 multiplications and 1 addition.
190 Number $c = x^2 + y^2 - r_0^2$ costs 3 multiplications and 2 additions. And the
191 final $t$ costs 5 more multiplications, 1 more sqrt, and 2 more additions.
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_transpose_matrix.txt73 It costs some performance. It is believed that most OpenGL
/third_party/rust/crates/rustc-hash/
DCODE_OF_CONDUCT.md12 …at every design or implementation choice carries a trade-off and numerous costs. There is seldom a…
/third_party/skia/third_party/externals/dng_sdk/
DLICENSE.source_code62 against any losses, damages and costs arising from the claims, lawsuits or other

12345