/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | vpxstats.c | 19 int stats_open_file(stats_io_t *stats, const char *fpf, int pass) { in stats_open_file() argument 21 stats->pass = pass; in stats_open_file() 24 stats->file = fopen(fpf, "wb"); in stats_open_file() 25 stats->buf.sz = 0; in stats_open_file() 26 stats->buf.buf = NULL; in stats_open_file() 27 res = (stats->file != NULL); in stats_open_file() 34 stats->file = fdopen(fd, "rb"); in stats_open_file() 36 stats->buf.sz = stat_buf.st_size; in stats_open_file() 37 stats->buf.buf = mmap(NULL, stats->buf.sz, PROT_READ, MAP_PRIVATE, fd, 0); in stats_open_file() 38 res = (stats->buf.buf != NULL); in stats_open_file() [all …]
|
D | vpxstats.h | 33 int stats_open_file(stats_io_t *stats, const char *fpf, int pass); 34 int stats_open_mem(stats_io_t *stats, int pass); 35 void stats_close(stats_io_t *stats, int last_pass); 36 void stats_write(stats_io_t *stats, const void *pkt, size_t len); 37 vpx_fixed_buf_t stats_get(stats_io_t *stats);
|
D | vpxenc.c | 632 stats_io_t stats; member 1200 if (!stats_open_file(&stream->stats, stream->config.stats_fn, in setup_pass() 1204 if (!stats_open_mem(&stream->stats, pass)) in setup_pass() 1212 stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats); in setup_pass() 1385 stats_write(&stream->stats, in get_cx_data() 1778 FOREACH_STREAM(stats_close(&stream->stats, global.passes - 1)); in main()
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
D | llstats.cpp | 109 static wifi_error get_wifi_interface_info(wifi_interface_link_layer_info *stats, in get_wifi_interface_info() argument 120 …stats->mode = (wifi_interface_mode)nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_… in get_wifi_interface_info() 129 len = ((sizeof(stats->mac_addr) <= len) ? sizeof(stats->mac_addr) : len); in get_wifi_interface_info() 130 …memcpy(&stats->mac_addr[0], nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MAC_ADDR])… in get_wifi_interface_info() 137 …stats->state = (wifi_connection_state)nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_IN… in get_wifi_interface_info() 144 …stats->roaming = (wifi_roam_state)nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_R… in get_wifi_interface_info() 151 …stats->capabilities = nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_CAPABILITIES]… in get_wifi_interface_info() 159 len = ((sizeof(stats->ssid) <= len) ? sizeof(stats->ssid) : len); in get_wifi_interface_info() 160 … memcpy(&stats->ssid[0], nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_SSID]), len); in get_wifi_interface_info() 168 len = ((sizeof(stats->bssid) <= len) ? sizeof(stats->bssid) : len); in get_wifi_interface_info() [all …]
|
D | llstatscommand.h | 107 virtual wifi_error get_wifi_iface_stats(wifi_iface_stat *stats,
|
D | wifilogger_diag.cpp | 1513 wh_pktlog_txctl *stats = (wh_pktlog_txctl *)buf; in parse_tx_stats() local 1515 (struct tx_ppdu_start *)(&stats->u.ppdu_start); in parse_tx_stats()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | twopass_encoder.c | 75 vpx_fixed_buf_t *stats) { in get_frame_stats() argument 87 stats->buf = realloc(stats->buf, stats->sz + pkt_size); in get_frame_stats() 88 memcpy((uint8_t *)stats->buf + stats->sz, pkt_buf, pkt_size); in get_frame_stats() 89 stats->sz += pkt_size; in get_frame_stats() 129 vpx_fixed_buf_t stats = {0}; in main() local 190 cfg.rc_twopass_stats_in = stats; in main() 204 &stats); in main() 213 &stats); in main() 225 free(stats.buf); in main()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
D | codec_factory.h | 41 TwopassStatsStore *stats) const = 0; 88 const unsigned long init_flags, TwopassStatsStore *stats) in VP8Encoder() argument 89 : Encoder(cfg, deadline, init_flags, stats) {} in VP8Encoder() 117 TwopassStatsStore *stats) const { in CreateEncoder() argument 119 return new VP8Encoder(cfg, deadline, init_flags, stats); in CreateEncoder() 170 const unsigned long init_flags, TwopassStatsStore *stats) in VP9Encoder() argument 171 : Encoder(cfg, deadline, init_flags, stats) {} in VP9Encoder() 199 TwopassStatsStore *stats) const { in CreateEncoder() argument 201 return new VP9Encoder(cfg, deadline, init_flags, stats); in CreateEncoder()
|
D | encode_test_driver.h | 94 const unsigned long init_flags, TwopassStatsStore *stats) in Encoder() argument 95 : cfg_(cfg), deadline_(deadline), init_flags_(init_flags), stats_(stats) { in Encoder()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_mbgraph.c | 172 MBGRAPH_MB_STATS *stats, in update_mbgraph_mb_stats() argument 195 &stats->ref[INTRA_FRAME].m.mode); in update_mbgraph_mb_stats() 198 stats->ref[INTRA_FRAME].err = intra_error; in update_mbgraph_mb_stats() 207 &stats->ref[GOLDEN_FRAME].m.mv, in update_mbgraph_mb_stats() 209 stats->ref[GOLDEN_FRAME].err = g_motion_error; in update_mbgraph_mb_stats() 211 stats->ref[GOLDEN_FRAME].err = INT_MAX; in update_mbgraph_mb_stats() 212 stats->ref[GOLDEN_FRAME].m.mv.as_int = 0; in update_mbgraph_mb_stats() 222 &stats->ref[ALTREF_FRAME].m.mv); in update_mbgraph_mb_stats() 224 stats->ref[ALTREF_FRAME].err = a_motion_error; in update_mbgraph_mb_stats() 226 stats->ref[ALTREF_FRAME].err = INT_MAX; in update_mbgraph_mb_stats() [all …]
|
D | vp9_firstpass.c | 121 static void output_stats(FIRSTPASS_STATS *stats, in output_stats() argument 125 pkt.data.twopass_stats.buf = stats; in output_stats() 138 stats->frame, in output_stats() 139 stats->intra_error, in output_stats() 140 stats->coded_error, in output_stats() 141 stats->sr_coded_error, in output_stats() 142 stats->ssim_weighted_pred_err, in output_stats() 143 stats->pcnt_inter, in output_stats() 144 stats->pcnt_motion, in output_stats() 145 stats->pcnt_second_ref, in output_stats() [all …]
|
D | vp9_onyx_if.c | 1340 FIRSTPASS_STATS *const stats = oxcf->two_pass_stats_in.buf; in vp9_create_compressor() local 1346 &stats[packets - oxcf->ss_number_layers + i]; in vp9_create_compressor() 1366 const int layer_id = (int)stats[i].spatial_layer_id; in vp9_create_compressor() 1369 *stats_copy[layer_id] = stats[i]; in vp9_create_compressor()
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
D | bcm_mpool_pub.h | 250 int bcm_mpm_stats(bcm_mpm_mgr_h mgr, bcm_mp_stats_t *stats, int *nentries); 337 int bcm_mp_stats(bcm_mp_pool_h pool, bcm_mp_stats_t *stats);
|
D | bcmutils.h | 275 extern int pktpool_stats_dump(pktpool_t *pktp, pktpool_stats_t *stats);
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
D | armtime | 218 cat /proc/uptime /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state >$my_log 225 cat /proc/uptime /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state >>$my_log
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | firstpass.c | 132 FIRSTPASS_STATS *stats) in output_stats() argument 136 pkt.data.twopass_stats.buf = stats; in output_stats() 150 stats->frame, in output_stats() 151 stats->intra_error, in output_stats() 152 stats->coded_error, in output_stats() 153 stats->ssim_weighted_pred_err, in output_stats() 154 stats->pcnt_inter, in output_stats() 155 stats->pcnt_motion, in output_stats() 156 stats->pcnt_second_ref, in output_stats() 157 stats->pcnt_neutral, in output_stats() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_cx_iface.c | 209 const FIRSTPASS_STATS *stats; in validate_config() local 221 stats = cfg->rc_twopass_stats_in.buf; in validate_config() 223 const int layer_id = (int)stats[i].spatial_layer_id; in validate_config() 236 stats = (const FIRSTPASS_STATS *)cfg->rc_twopass_stats_in.buf + in validate_config() 238 layer_id = (int)stats->spatial_layer_id; in validate_config() 241 ||(int)(stats->count + 0.5) != n_packets_per_layer[layer_id] - 1) in validate_config() 248 stats = in validate_config() 251 if ((int)(stats->count + 0.5) != n_packets - 1) in validate_config()
|
/hardware/qcom/msm8994/original-kernel-headers/media/ |
D | msmb_isp.h | 620 struct msm_isp_stats_event stats; member 633 struct msm_isp_stats_event stats; member
|
/hardware/qcom/msm8x74/original-kernel-headers/media/ |
D | msmb_isp.h | 352 struct msm_isp_stats_event stats; member
|
/hardware/qcom/msm8x74/kernel-headers/media/ |
D | msmb_isp.h | 387 struct msm_isp_stats_event stats; member
|
/hardware/qcom/msm8x84/kernel-headers/media/ |
D | msmb_isp.h | 471 struct msm_isp_stats_event stats; member
|
/hardware/qcom/msm8x84/original-kernel-headers/media/ |
D | msmb_isp.h | 436 struct msm_isp_stats_event stats; member
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_cx_iface.c | 217 FIRSTPASS_STATS *stats; in validate_config() local 228 stats = (void*)((char *)cfg->rc_twopass_stats_in.buf in validate_config() 231 if ((int)(stats->count + 0.5) != n_packets - 1) in validate_config()
|
/hardware/qcom/msm8994/kernel-headers/media/ |
D | msmb_isp.h | 639 struct msm_isp_stats_event stats; member
|
/hardware/qcom/camera/ |
D | QCamera_Intf.h | 1001 mm_camera_stats_event_t stats; member
|