Home
last modified time | relevance | path

Searched refs:cost1 (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dencodemv.c142 unsigned int cost1 = 0; in vp8_build_component_cost_table() local
170 cost1 = cost_mvcomponent(i, &mvc[1]); in vp8_build_component_cost_table()
172 mvcost [1] [i] = cost1 + vp8_cost_zero(mvc[1].prob[MVPsign]); in vp8_build_component_cost_table()
173 mvcost [1] [-i] = cost1 + vp8_cost_one(mvc[1].prob[MVPsign]); in vp8_build_component_cost_table()
/external/opencv/cvaux/src/
Dcvcorrespond.cpp73 float cost, cost1; in icvDynamicCorrespond() local
194 cost1 = (float) ((len_color * len_color) >> 2); in icvDynamicCorrespond()
200 min1 = costTable[i_1 + j_1 * row_size] + cost + (float) cost1; in icvDynamicCorrespond()
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
Db2DynamicTree.cpp211 float32 cost1; in InsertLeaf() local
216 cost1 = aabb.GetPerimeter() + inheritanceCost; in InsertLeaf()
224 cost1 = (newArea - oldArea) + inheritanceCost; in InsertLeaf()
245 if (cost < cost1 && cost < cost2) in InsertLeaf()
251 if (cost1 < cost2) in InsertLeaf()
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
DDynamicTreeFlatNodes.java519 float cost1; in insertLeaf() local
523 cost1 = combinedAABB.getPerimeter() + inheritanceCost; in insertLeaf()
528 cost1 = (newArea - oldArea) + inheritanceCost; in insertLeaf()
545 if (cost < cost1 && cost < cost2) { in insertLeaf()
550 if (cost1 < cost2) { in insertLeaf()
DDynamicTree.java535 float cost1; in insertLeaf() local
538 cost1 = combinedAABB.getPerimeter() + inheritanceCost; in insertLeaf()
543 cost1 = (newArea - oldArea) + inheritanceCost; in insertLeaf()
559 if (cost < cost1 && cost < cost2) { in insertLeaf()
564 if (cost1 < cost2) { in insertLeaf()
/external/libopus/celt/
Dcelt_encoder.c555 int cost1; in tf_analysis() local
645 cost1 = isTransient ? 0 : lambda; in tf_analysis()
649 curr0 = IMIN(cost0, cost1 + lambda); in tf_analysis()
650 curr1 = IMIN(cost0 + lambda, cost1); in tf_analysis()
652 cost1 = curr1 + abs(metric[i]-2*tf_select_table[LM][4*isTransient+2*sel+1]); in tf_analysis()
654 cost0 = IMIN(cost0, cost1); in tf_analysis()
662 cost1 = isTransient ? 0 : lambda; in tf_analysis()
670 from1 = cost1 + lambda; in tf_analysis()
681 from1 = cost1; in tf_analysis()
691 cost1 = curr1 + abs(metric[i]-2*tf_select_table[LM][4*isTransient+2*tf_select+1]); in tf_analysis()
[all …]