Searched refs:get_cost (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | motion_estimation.c | 34 cost = me_ctx->get_cost(me_ctx, x_mb, y_mb, x, y);\ 53 me_ctx->get_cost = &ff_me_cmp_sad; in ff_me_init_context() 87 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_esa() 111 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_tss() 142 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_tdls() 175 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_ntss() 227 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_fss() 256 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_ds() 310 if (!(cost_min = me_ctx->get_cost(me_ctx, x_mb, y_mb, x_mb, y_mb))) in ff_me_search_hexbs()
|
H A D | motion_estimation.h | 60 uint64_t (*get_cost)(struct AVMotionEstContext *me_ctx, int x_mb, int y_mb, member
|
H A D | vf_minterpolate.c | 367 me_ctx->get_cost = &get_sad_ob; in config_input() 369 me_ctx->get_cost = &get_sbad_ob; in config_input() 590 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/ |
H A D | test_functools.py | 2916 def get_cost(self): member in OptionallyCachedCostItem 2921 cached_cost = py_functools.cached_property(get_cost) 2958 self.assertEqual(item.get_cost(), 2) 2960 self.assertEqual(item.get_cost(), 4)
|
Completed in 8 milliseconds