Searched refs:sf (Results 1 - 25 of 250) sorted by relevance

12345678910

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_speed_features.c27 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
26 set_good_speed_feature(VP9_COMP *cpi, VP9_COMMON *cm, SPEED_FEATURES *sf, int speed) argument
162 set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed, vp9e_tune_content content) argument
323 SPEED_FEATURES *const sf = &cpi->sf; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_scale.c15 static INLINE int scaled_x(int val, const struct scale_factors *sf) { argument
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) { argument
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) { argument
24 (void) sf;
36 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
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)
47 vp9_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w, int other_h, int this_w, int this_h, int use_high) argument
[all...]
H A Dvp9_scale.h31 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) { argument
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) { argument
59 return vp9_is_valid_scale(sf)
[all...]
H A Dvp9_reconinter.h36 const struct scale_factors *sf,
46 const struct scale_factors *sf,
54 const struct scale_factors *sf) {
55 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset;
56 const int y = sf ? sf->scale_value_y(y_offset, sf) : y_offset;
77 const struct scale_factors *sf);
53 scaled_buffer_offset(int x_offset, int y_offset, int stride, const struct scale_factors *sf) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scale.c15 static INLINE int scaled_x(int val, const struct scale_factors *sf) { argument
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) { argument
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) { argument
24 (void) sf;
44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
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)
54 vp9_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w, int other_h, int this_w, int this_h) argument
[all...]
H A Dvp9_scale.h31 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) { argument
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) { argument
49 return sf->x_scale_fp != REF_NO_SCALE ||
50 sf
[all...]
H A Dvp9_reconinter.h36 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);
42 scaled_buffer_offset(int x_offset, int y_offset, int stride, const struct scale_factors *sf) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_speed_features.c44 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
43 set_good_speed_feature(VP9_COMP *cpi, VP9_COMMON *cm, SPEED_FEATURES *sf, int speed) argument
139 set_rt_speed_feature(VP9_COMMON *cm, SPEED_FEATURES *sf, int speed) argument
285 SPEED_FEATURES *const sf = &cpi->sf; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_sf_state.c53 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
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_sf_state.c53 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
[all...]
/external/oprofile/daemon/
H A Dopd_mangling.c37 static char const * get_dep_name(struct sfile const * sf) argument
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) argument
77 if (sf
141 opd_open_sample_file(odb_t *file, struct sfile *last, struct sfile * sf, int counter, int cg) argument
[all...]
H A Dopd_sfile.c82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie, argument
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) argument
133 return do_match(sf, sf
139 is_sf_ignored(struct sfile const * sf) argument
167 struct sfile * sf; local
222 struct sfile * sf; local
299 struct sfile * sf = trans->current; local
350 verbose_print_sample(struct sfile * sf, vma_t pc, uint counter) argument
477 close_sfile(struct sfile * sf, void * data __attribute__((unused))) argument
491 kill_sfile(struct sfile * sf) argument
499 sync_sfile(struct sfile * sf, void * data __attribute__((unused))) argument
512 is_sfile_kernel(struct sfile * sf, void * data __attribute__((unused))) argument
518 is_sfile_anon(struct sfile * sf, void * data) argument
527 for_one_sfile(struct sfile * sf, sfile_func func, void * data) argument
559 struct sfile * sf = list_entry(pos, struct sfile, lru); local
612 struct sfile * sf; local
623 sfile_get(struct sfile * sf) argument
630 sfile_put(struct sfile * sf) argument
[all...]
H A Dopd_mangling.h21 * @param sf sfile to open sample file for
31 struct sfile * sf, int counter, int cg);
H A Dopd_extended.h80 extern void opd_ext_sfile_create(struct sfile * sf);
82 extern void opd_ext_sfile_close(struct sfile * sf);
83 extern void opd_ext_sfile_sync(struct sfile * sf);
/external/elfutils/0.153/src/
H A Ddebugpred.h42 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;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_resource.c38 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
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_resource.c38 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
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
H A DSocketFactoryTest.java42 SocketFactory sf = new MySocketFactory();
44 sf.createSocket();
56 SocketFactory sf = SocketFactory.getDefault();
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);
H A DServerSocketFactoryTest.java42 ServerSocketFactory sf = new MyServerSocketFactory();
44 sf.createServerSocket();
56 ServerSocketFactory sf = ServerSocketFactory.getDefault();
58 if (!(sf instanceof DefaultServerSocketFactory)) {
62 s = sf.createServerSocket(0);
67 s = sf.createServerSocket(0, 50);
72 s = sf.createServerSocket(0, 50, InetAddress.getLocalHost());
/external/qemu/target-i386/
H A Dcc_helper_template.h57 int cf, pf, af, zf, sf, of; local
65 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
67 return cf | pf | af | zf | sf | of;
81 int cf, pf, af, zf, sf, of;
89 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
91 return cf | pf | af | zf | sf | of;
105 int cf, pf, af, zf, sf, of;
113 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
115 return cf | pf | af | zf | sf | of;
130 int cf, pf, af, zf, sf, o
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DSimpleFormatterTest.java33 SimpleFormatter sf; field in class:SimpleFormatterTest
44 sf = new SimpleFormatter();
50 sf.format(null);
54 sf.format(new LogRecord(Level.SEVERE, null));
64 String str = sf.format(lr);
71 str = sf.format(lr);
77 String str = sf.format(lr);
96 str = sf.format(lr);
108 assertEquals("", sf.getHead(null));
112 assertEquals("", sf
[all...]
/external/valgrind/main/none/tests/x86/
H A Daad_aam.c21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; local
43 sf=!!(flags&0x80);
48 // flags,cf,pf,af,zf,sf,of);
56 if (sf != !!(out&0x80)) {
57 printf("Error with aam (sf)!\n");
90 sf=!!(flags&0x80);
95 // flags,cf,pf,af,zf,sf,of);
103 if (sf != !!(out&0x80)) {
104 printf("Error with aad (sf) %d %d!\n",sf,!!(ou
[all...]
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
H A Dsetup_test_links.sh16 ln -sf /usr/local/autotest/deps/page_cycler_dep/test_src/data \
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
H A Dsetup_test_links.sh16 ln -sf /usr/local/autotest/deps/telemetry_dep/test_src/data \
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
H A Dsetup_test_links.sh16 ln -sf /usr/local/autotest/deps/telemetry_dep/test_src/data \

Completed in 391 milliseconds

12345678910