Home
last modified time | relevance | path

Searched refs:sfc (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_scale.h28 int (*scale_value_x)(int val, const struct scale_factors_common *sfc);
29 int (*scale_value_y)(int val, const struct scale_factors_common *sfc);
39 const struct scale_factors_common *sfc; member
47 static int vp9_is_valid_scale(const struct scale_factors_common *sfc) { in vp9_is_valid_scale() argument
48 return sfc->x_scale_fp != REF_INVALID_SCALE && in vp9_is_valid_scale()
49 sfc->y_scale_fp != REF_INVALID_SCALE; in vp9_is_valid_scale()
52 static int vp9_is_scaled(const struct scale_factors_common *sfc) { in vp9_is_scaled() argument
53 return sfc->x_scale_fp != REF_NO_SCALE || in vp9_is_scaled()
54 sfc->y_scale_fp != REF_NO_SCALE; in vp9_is_scaled()
Dvp9_scale.c15 static INLINE int scaled_x(int val, const struct scale_factors_common *sfc) { in scaled_x() argument
16 return val * sfc->x_scale_fp >> REF_SCALE_SHIFT; in scaled_x()
19 static INLINE int scaled_y(int val, const struct scale_factors_common *sfc) { in scaled_y() argument
20 return val * sfc->y_scale_fp >> REF_SCALE_SHIFT; in scaled_y()
23 static int unscaled_value(int val, const struct scale_factors_common *sfc) { in unscaled_value() argument
24 (void) sfc; in unscaled_value()
30 scaled_y(mv->row, scale->sfc) + scale->y_offset_q4, in scaled_mv()
31 scaled_x(mv->col, scale->sfc) + scale->x_offset_q4 in scaled_mv()
46 scale->x_offset_q4 = scaled_x(col << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK; in set_offsets_with_scaling()
47 scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK; in set_offsets_with_scaling()
[all …]
Dvp9_reconinter.c54 scale->sfc->predict[subpel_x != 0][subpel_y != 0][ref]( in inter_predictor()
71 const struct scale_factors_common *sfc = scale->sfc; in vp9_build_inter_predictor() local
72 const MV32 mv = sfc->scale_mv(&mv_q4, scale); in vp9_build_inter_predictor()
75 w, h, ref, subpix, sfc->x_step_q4, sfc->y_step_q4); in vp9_build_inter_predictor()
170 if (vp9_is_scaled(scale->sfc)) { in build_inter_predictors()
172 scale->sfc->set_scaled_offsets(scale, mi_y + y, mi_x + x); in build_inter_predictors()
173 scaled_mv = scale->sfc->scale_mv(&mv_q4, scale); in build_inter_predictors()
174 xs = scale->sfc->x_step_q4; in build_inter_predictors()
175 ys = scale->sfc->y_step_q4; in build_inter_predictors()
231 struct scale_factors_common *const sfc = &cm->active_ref_scale_comm[i]; in vp9_setup_scale_factors() local
[all …]
Dvp9_reconinter.h41 const int x = scale ? scale->sfc->scale_value_x(x_offset, scale->sfc) : in scaled_buffer_offset()
43 const int y = scale ? scale->sfc->scale_value_y(y_offset, scale->sfc) : in scaled_buffer_offset()
/external/clang/test/Index/
Dcomplete-memfunc-cvquals.cpp18 smart_ptr<Foo> sf, const smart_ptr<Foo> &sfc, Foo volatile *fvp) { in text() argument
24 sfc->baz(); in text()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DMemRegion.h368 StackSpaceRegion(MemRegionManager *mgr, Kind k, const StackFrameContext *sfc) in StackSpaceRegion() argument
369 : MemSpaceRegion(mgr, k), SFC(sfc) { in StackSpaceRegion()
388 StackLocalsSpaceRegion(MemRegionManager *mgr, const StackFrameContext *sfc) in StackLocalsSpaceRegion() argument
389 : StackSpaceRegion(mgr, StackLocalsSpaceRegionKind, sfc) {} in StackLocalsSpaceRegion()
403 StackArgumentsSpaceRegion(MemRegionManager *mgr, const StackFrameContext *sfc) in StackArgumentsSpaceRegion() argument
404 : StackSpaceRegion(mgr, StackArgumentsSpaceRegionKind, sfc) {} in StackArgumentsSpaceRegion()
/external/chromium_org/third_party/icu/source/data/unidata/
DPropertyAliases.txt68 scf ; Simple_Case_Folding ; sfc
Dchanges.txt496 + Jamo_Short_Name, sfc->scf, binary property value aliases
591 - renamed property Simple_Case_Folding (sfc->scf)
671 + Jamo_Short_Name, sfc->scf, binary property value aliases
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodframe.c387 const struct scale_factors_common *sfc = &cm->active_ref_scale_comm[ref]; in set_ref() local
388 if (!vp9_is_valid_scale(sfc)) in set_ref()
392 xd->scale_factor[idx].sfc = sfc; in set_ref()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c2315 scale[frame_type].sfc->set_scaled_offsets(&scale[frame_type], in setup_buffer_inter()
2338 if (!vp9_is_scaled(scale[frame_type].sfc) && block_size >= BLOCK_8X8) in setup_buffer_inter()
2538 xd->scale_factor[ref].sfc->set_scaled_offsets(&xd->scale_factor[ref], in joint_motion_search()
4026 vp9_is_scaled(scale_factor[ref_frame].sfc)) in vp9_rd_pick_inter_mode_sub8x8()
4030 vp9_is_scaled(scale_factor[second_ref_frame].sfc)) in vp9_rd_pick_inter_mode_sub8x8()
/external/icu4c/data/unidata/
Dchanges.txt1048 + Jamo_Short_Name, sfc->scf, binary property value aliases
1143 - renamed property Simple_Case_Folding (sfc->scf)
1223 + Jamo_Short_Name, sfc->scf, binary property value aliases
Dppucd.txt86 property;String;scf;Simple_Case_Folding;sfc
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/
Dfinal-url-en69769 http://www.sfc.ucdavis.edu/pubs/brochures/kiwi.html