HomeSort by relevance Sort by last modified time
    Searched defs:sfc (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/javax/net/ssl/
SSLSocketFactory.java 55 final Class<?> sfc = Class.forName(defaultName, true, cl); local
56 defaultSocketFactory = (SocketFactory) sfc.newInstance();
  /external/libvpx/libvpx/vp9/common/
vp9_scale.h 28 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 in struct:scale_factors
47 static int vp9_is_valid_scale(const struct scale_factors_common *sfc) {
48 return sfc->x_scale_fp != REF_INVALID_SCALE &&
49 sfc->y_scale_fp != REF_INVALID_SCALE;
52 static int vp9_is_scaled(const struct scale_factors_common *sfc) {
53 return sfc->x_scale_fp != REF_NO_SCALE ||
54 sfc->y_scale_fp != REF_NO_SCALE;
vp9_reconinter.c 54 scale->sfc->predict[subpel_x != 0][subpel_y != 0][ref](
71 const struct scale_factors_common *sfc = scale->sfc; local
72 const MV32 mv = sfc->scale_mv(&mv_q4, scale);
75 w, h, ref, subpix, sfc->x_step_q4, sfc->y_step_q4);
170 if (vp9_is_scaled(scale->sfc)) {
172 scale->sfc->set_scaled_offsets(scale, mi_y + y, mi_x + x);
173 scaled_mv = scale->sfc->scale_mv(&mv_q4, scale);
174 xs = scale->sfc->x_step_q4
231 struct scale_factors_common *const sfc = &cm->active_ref_scale_comm[i]; local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 387 const struct scale_factors_common *sfc = &cm->active_ref_scale_comm[ref]; local
388 if (!vp9_is_valid_scale(sfc))
392 xd->scale_factor[idx].sfc = sfc;
    [all...]

Completed in 446 milliseconds