Home
last modified time | relevance | path

Searched refs:get_cost (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dmotion_estimation.c33 cost = me_ctx->get_cost(me_ctx, x_mb, y_mb, x, y);\
52 me_ctx->get_cost = &ff_me_cmp_sad; in ff_me_init_context()
86 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_esa()
110 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_tss()
141 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_tdls()
174 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_ntss()
226 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_fss()
255 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_ds()
309 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_hexbs()
Dmotion_estimation.h60 uint64_t (*get_cost)(struct AVMotionEstContext *me_ctx, int x_mb, int y_mb, member
Dvf_minterpolate.c376 me_ctx->get_cost = &get_sad_ob; in config_input()
378 me_ctx->get_cost = &get_sbad_ob; in config_input()
599 … cost_old = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb + block->mvs[0][0], y_mb + block->mvs[0][1]); in var_size_bme()
/third_party/python/Lib/test/
Dtest_functools.py2754 def get_cost(self): member in OptionallyCachedCostItem
2759 cached_cost = py_functools.cached_property(get_cost)
2796 self.assertEqual(item.get_cost(), 2)
2798 self.assertEqual(item.get_cost(), 4)