Home
last modified time | relevance | path

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

/external/u-boot/board/synopsys/hsdk/
Denv-lib.c100 bool (*cpu_used)(u32)) in env_validate_core()
112 if (cpu_used(i) && mandatory && !set) { in env_validate_core()
196 bool (*cpu_used)(u32)) in envs_read_validate_core()
209 ret = env_validate_core(i, map, cpu_used); in envs_read_validate_core()
219 bool (*cpu_used)(u32)) in envs_process_and_validate()
227 ret = envs_read_validate_core(core, cpu_used); in envs_process_and_validate()
Denv-lib.h49 bool (*cpu_used)(u32));
52 bool (*cpu_used)(u32));
/external/libaom/libaom/test/
Darf_freq_test.cc45 int cpu_used; member
150 encoder->Control(AOME_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
/external/libvpx/libvpx/test/
Dvp9_arf_freq_test.cc44 int cpu_used; member
153 encoder->Control(VP8E_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
/external/libvpx/libvpx/vp8/common/
Donyx.h111 int cpu_used; member
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c31 int cpu_used; /** available cpu percentage in 1/16*/ member
186 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16); in validate_config()
372 oxcf->cpu_used = vp8_cfg.cpu_used; in set_vp8e_config()
485 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in set_cpu_used()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c966 if (cpi->oxcf.cpu_used <= 5) { in estimate_max_q()
967 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_max_q()
1064 if (cpi->oxcf.cpu_used <= 5) { in estimate_cq()
1065 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_cq()
1127 if (cpi->oxcf.cpu_used <= 5) { in estimate_q()
1128 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_q()
1205 if (cpi->oxcf.cpu_used <= 5) { in estimate_kf_group_q()
1206 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_kf_group_q()
Donyx_if.c1453 if (cpi->oxcf.cpu_used < -16) { in vp8_change_config()
1454 cpi->oxcf.cpu_used = -16; in vp8_change_config()
1457 if (cpi->oxcf.cpu_used > 16) cpi->oxcf.cpu_used = 16; in vp8_change_config()
1465 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config()
1466 cpi->oxcf.cpu_used = -5; in vp8_change_config()
1469 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config()
1486 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config()
1487 cpi->oxcf.cpu_used = -5; in vp8_change_config()
1490 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config()
1692 cpi->Speed = cpi->oxcf.cpu_used; in vp8_change_config()
Donyx_int.h456 int cpu_used; member
Dencodeframe.c683 if (cpi->oxcf.cpu_used < 0) { in vp8_encode_frame()
684 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
Drdopt.c265 milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16; in vp8_auto_select_speed()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c26 int cpu_used; // available cpu percentage in 1/16 member
253 RANGE_CHECK(extra_cfg, cpu_used, -9, 9); in validate_config()
523 oxcf->speed = abs(extra_cfg->cpu_used); in set_encoder_config()
701 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in ctrl_set_cpuused()
/external/libaom/libaom/av1/
Dav1_cx_iface.c33 int cpu_used; // available cpu percentage in 1/16 member
372 RANGE_CHECK(extra_cfg, cpu_used, 0, 8); in validate_config()
706 oxcf->speed = extra_cfg->cpu_used; in set_encoder_config()
925 extra_cfg.cpu_used = CAST(AOME_SET_CPUUSED, args); in ctrl_set_cpuused()