HomeSort by relevance Sort by last modified time
    Searched refs:sf (Results 1 - 25 of 441) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_speed_features.c 27 SPEED_FEATURES *sf, int speed) {
30 sf->adaptive_rd_thresh = 1;
31 sf->allow_skip_recode = 1;
34 sf->use_square_partition_only = !frame_is_intra_only(cm);
35 sf->less_rectangular_check = 1;
38 sf->disable_split_mask = cm->show_frame ? DISABLE_ALL_SPLIT
41 sf->disable_split_mask = DISABLE_COMPOUND_SPLIT;
42 sf->use_rd_breakout = 1;
43 sf->adaptive_motion_search = 1;
44 sf->mv.auto_mv_step_size = 1
323 SPEED_FEATURES *const sf = &cpi->sf; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_scale.c 15 static INLINE int scaled_x(int val, const struct scale_factors *sf) {
16 return (int)((int64_t)val * sf->x_scale_fp >> REF_SCALE_SHIFT);
19 static INLINE int scaled_y(int val, const struct scale_factors *sf) {
20 return (int)((int64_t)val * sf->y_scale_fp >> REF_SCALE_SHIFT);
23 static int unscaled_value(int val, const struct scale_factors *sf) {
24 (void) sf;
36 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) {
37 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
38 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
40 scaled_y(mv->row, sf) + y_off_q4
    [all...]
vp9_scale.h 31 int (*scale_value_x)(int val, const struct scale_factors *sf);
32 int (*scale_value_y)(int val, const struct scale_factors *sf);
40 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
43 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf,
48 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf,
53 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) {
54 return sf->x_scale_fp != REF_INVALID_SCALE &&
55 sf->y_scale_fp != REF_INVALID_SCALE;
58 static INLINE int vp9_is_scaled(const struct scale_factors *sf) {
59 return vp9_is_valid_scale(sf) &
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_scale.c 15 static INLINE int scaled_x(int val, const struct scale_factors *sf) {
16 return (int)((int64_t)val * sf->x_scale_fp >> REF_SCALE_SHIFT);
19 static INLINE int scaled_y(int val, const struct scale_factors *sf) {
20 return (int)((int64_t)val * sf->y_scale_fp >> REF_SCALE_SHIFT);
23 static int unscaled_value(int val, const struct scale_factors *sf) {
24 (void) sf;
44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) {
45 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
46 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
48 scaled_y(mv->row, sf) + y_off_q4
    [all...]
vp9_scale.h 31 int (*scale_value_x)(int val, const struct scale_factors *sf);
32 int (*scale_value_y)(int val, const struct scale_factors *sf);
37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
39 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf,
43 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) {
44 return sf->x_scale_fp != REF_INVALID_SCALE &&
45 sf->y_scale_fp != REF_INVALID_SCALE;
48 static INLINE int vp9_is_scaled(const struct scale_factors *sf) {
49 return sf->x_scale_fp != REF_NO_SCALE ||
50 sf->y_scale_fp != REF_NO_SCALE
    [all...]
vp9_reconinter.h 36 const struct scale_factors *sf,
43 const struct scale_factors *sf) {
44 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset;
45 const int y = sf ? sf->scale_value_y(y_offset, sf) : y_offset;
65 const struct scale_factors *sf);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_scale.c 15 static INLINE int scaled_x(int val, const struct scale_factors *sf) {
16 return (int)((int64_t)val * sf->x_scale_fp >> REF_SCALE_SHIFT);
19 static INLINE int scaled_y(int val, const struct scale_factors *sf) {
20 return (int)((int64_t)val * sf->y_scale_fp >> REF_SCALE_SHIFT);
23 static int unscaled_value(int val, const struct scale_factors *sf) {
24 (void) sf;
44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) {
45 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
46 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
48 scaled_y(mv->row, sf) + y_off_q4
    [all...]
vp9_scale.h 31 int (*scale_value_x)(int val, const struct scale_factors *sf);
32 int (*scale_value_y)(int val, const struct scale_factors *sf);
37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
39 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf,
43 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) {
44 return sf->x_scale_fp != REF_INVALID_SCALE &&
45 sf->y_scale_fp != REF_INVALID_SCALE;
48 static INLINE int vp9_is_scaled(const struct scale_factors *sf) {
49 return sf->x_scale_fp != REF_NO_SCALE ||
50 sf->y_scale_fp != REF_NO_SCALE
    [all...]
vp9_reconinter.h 36 const struct scale_factors *sf,
43 const struct scale_factors *sf) {
44 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset;
45 const int y = sf ? sf->scale_value_y(y_offset, sf) : y_offset;
65 const struct scale_factors *sf);
  /external/libvpx/libvpx/vp9/encoder/
vp9_speed_features.c 44 SPEED_FEATURES *sf, int speed) {
45 sf->adaptive_rd_thresh = 1;
46 sf->recode_loop = (speed < 1) ? ALLOW_RECODE : ALLOW_RECODE_KFMAXBW;
47 sf->allow_skip_recode = 1;
50 sf->use_square_partition_only = !frame_is_intra_only(cm);
51 sf->less_rectangular_check = 1;
52 sf->tx_size_search_method = vp9_frame_is_boosted(cpi) ? USE_FULL_RD
56 sf->disable_split_mask = cm->show_frame ? DISABLE_ALL_SPLIT
59 sf->disable_split_mask = DISABLE_COMPOUND_SPLIT;
60 sf->use_rd_breakout = 1
285 SPEED_FEATURES *const sf = &cpi->sf; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_speed_features.c 45 SPEED_FEATURES *sf,
48 sf->adaptive_rd_thresh = 1;
49 sf->recode_loop = ((speed < 1) ? ALLOW_RECODE : ALLOW_RECODE_KFMAXBW);
50 sf->allow_skip_recode = 1;
53 sf->use_square_partition_only = !frame_is_intra_only(cm);
54 sf->less_rectangular_check = 1;
55 sf->tx_size_search_method = vp9_frame_is_boosted(cpi)
59 sf->disable_split_mask = cm->show_frame ?
62 sf->disable_split_mask = DISABLE_COMPOUND_SPLIT;
63 sf->use_rd_breakout = 1
284 SPEED_FEATURES *const sf = &cpi->sf; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_state.c 53 sizeof(*sfv), 32, &brw->sf.vp_offset);
144 struct brw_sf_unit_state *sf; local
149 sf = brw_state_batch(brw, AUB_TRACE_SF_STATE,
150 sizeof(*sf), 64, &brw->sf.state_offset);
152 memset(sf, 0, sizeof(*sf));
155 sf->thread0.grf_reg_count = ALIGN(brw->sf.prog_data->total_grf, 16) / 16 - 1;
156 sf->thread0.kernel_start_pointer
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 53 sizeof(*sfv), 32, &brw->sf.vp_offset);
144 struct brw_sf_unit_state *sf; local
149 sf = brw_state_batch(brw, AUB_TRACE_SF_STATE,
150 sizeof(*sf), 64, &brw->sf.state_offset);
152 memset(sf, 0, sizeof(*sf));
155 sf->thread0.grf_reg_count = ALIGN(brw->sf.prog_data->total_grf, 16) / 16 - 1;
156 sf->thread0.kernel_start_pointer
    [all...]
  /external/oprofile/daemon/
opd_mangling.c 37 static char const * get_dep_name(struct sfile const * sf)
39 if (sf->anon)
40 return find_cookie(sf->app_cookie);
43 if (sf->cookie == sf->app_cookie)
46 if (!separate_kernel && !(separate_lib && !sf->kernel))
50 if (sf->app_cookie == 0)
53 return find_cookie(sf->app_cookie);
69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg)
77 if (sf->kernel)
    [all...]
opd_sfile.c 82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie,
90 if (sf->kernel != ki)
94 if (sf->tid != tid || sf->tgid != tgid)
99 if (sf->cpu != cpu)
104 if (sf->app_cookie != app_cookie)
114 if (sf->anon != anon)
117 return sf->cookie == cookie;
131 sfile_equal(struct sfile const * sf, struct sfile const * sf2)
133 return do_match(sf, sf2->cookie, sf2->app_cookie, sf2->kernel
167 struct sfile * sf; local
222 struct sfile * sf; local
299 struct sfile * sf = trans->current; local
559 struct sfile * sf = list_entry(pos, struct sfile, lru); local
612 struct sfile * sf; local
    [all...]
opd_mangling.h 21 * @param sf sfile to open sample file for
31 struct sfile * sf, int counter, int cg);
  /external/elfutils/0.153/src/
debugpred.h 42 const char *const *sf = &__start_predict_file; local
46 printf ("%s:%lu: wrong=%lu, correct=%lu%s\n", *sf, *sl, s[0], s[1],
49 ++sf;
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldSimpleFormatterTest.java 25 SimpleFormatter sf = new SimpleFormatter(); field in class:OldSimpleFormatterTest
28 assertEquals("Head for this SimpleFormatter should be empty", "", sf.getHead(null));
29 assertEquals("Tail for this SimpleFormatter should be empty", "", sf.getTail(null));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/
ServerSocketFactoryTest.java 36 ServerSocketFactory sf = new MyServerSocketFactory(); local
40 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
41 ServerSocket ss = sf.createServerSocket();
47 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
48 ServerSocket ss = sf.createServerSocket(0);
52 sf.createServerSocket(ss.getLocalPort());
60 sf.createServerSocket(-1);
67 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
68 ServerSocket ss = sf.createServerSocket(0, 0);
72 sf.createServerSocket(ss.getLocalPort(), 0)
87 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_resource.c 38 struct nv50_surface *sf = CALLOC_STRUCT(nv50_surface); local
39 if (!sf)
42 pipe_reference_init(&sf->base.reference, 1);
43 pipe_resource_reference(&sf->base.texture, pbuf);
45 sf->base.format = templ->format;
46 sf->base.usage = templ->usage;
47 sf->base.u.buf.first_element = templ->u.buf.first_element;
48 sf->base.u.buf.last_element = templ->u.buf.last_element;
50 sf->offset =
51 templ->u.buf.first_element * util_format_get_blocksize(sf->base.format)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_resource.c 38 struct nv50_surface *sf = CALLOC_STRUCT(nv50_surface); local
39 if (!sf)
42 pipe_reference_init(&sf->base.reference, 1);
43 pipe_resource_reference(&sf->base.texture, pbuf);
45 sf->base.format = templ->format;
46 sf->base.usage = templ->usage;
47 sf->base.u.buf.first_element = templ->u.buf.first_element;
48 sf->base.u.buf.last_element = templ->u.buf.last_element;
50 sf->offset =
51 templ->u.buf.first_element * util_format_get_blocksize(sf->base.format)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSocketFactoryTest.java 46 SocketFactory sf = SSLSocketFactory.getDefault(); local
47 assertTrue(sf instanceof SSLSocketFactory);
65 SSLSocketFactory sf = (SSLSocketFactory)SSLSocketFactory.getDefault(); local
73 Socket s = sf.createSocket(st, "localhost", sport, false);
77 s = sf.createSocket(st, "localhost", sport, true);
82 sf.createSocket(null, "localhost", sport, true);
89 s = sf.createSocket(new Socket(), "localhost", 1080, false);
97 s = sf.createSocket(st, "1.2.3.4hello", sport, false);
108 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
110 sf.getDefaultCipherSuites().length > 0)
121 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
    [all...]
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
SocketFactoryTest.java 42 SocketFactory sf = new MySocketFactory(); local
44 sf.createSocket();
56 SocketFactory sf = SocketFactory.getDefault(); local
58 if (!(sf instanceof DefaultSocketFactory)) {
62 s = sf.createSocket("localhost", 8082);
67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082);
72 s = sf.createSocket(InetAddress.getLocalHost(), 8081);
77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082);
  /prebuilts/tools/common/cglib/
cglib-nodep-2.2.3.jar 

Completed in 898 milliseconds

1 2 3 4 5 6 7 8 91011>>