HomeSort by relevance Sort by last modified time
    Searched refs:stats_buf (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/test/
svc_test.cc 90 void GetStatsData(std::string *const stats_buf) {
98 stats_buf->append(static_cast<char *>(cx_pkt->data.twopass_stats.buf),
105 std::string *const stats_buf) {
123 GetStatsData(stats_buf);
131 GetStatsData(stats_buf);
163 void Pass2EncodeNFrames(std::string *const stats_buf, const int n,
175 ASSERT_TRUE(stats_buf != NULL);
176 ASSERT_GT(stats_buf->size(), 0U);
177 codec_enc_.rc_twopass_stats_in.buf = &(*stats_buf)[0];
178 codec_enc_.rc_twopass_stats_in.sz = stats_buf->size()
459 std::string stats_buf; local
473 std::string stats_buf; local
488 std::string stats_buf; local
504 std::string stats_buf; local
529 std::string stats_buf; local
545 std::string stats_buf; local
578 std::string stats_buf; local
595 std::string stats_buf; local
612 std::string stats_buf; local
632 std::string stats_buf; local
657 std::string stats_buf; local
675 std::string stats_buf; local
696 std::string stats_buf; local
719 std::string stats_buf; local
744 std::string stats_buf; local
766 std::string stats_buf; local
    [all...]
  /system/extras/tests/ext4/
rand_emmc_perf.c 49 static void print_stats(struct stats *stats_buf, int stats_count,
73 timersub(&stats_buf[i].end, &stats_buf[i].start, &t);
100 timersub(&stats_buf[i].end, &stats_buf[i].start, &t); /* Xi */
113 struct stats *stats_buf; local
117 stats_buf = malloc(stats_count * sizeof(struct stats));
118 if (stats_buf == NULL) {
119 fprintf(stderr, "Cannot allocate stats_buf\n");
124 gettimeofday(&stats_buf[i].start, NULL)
    [all...]
  /external/syslinux/gpxe/src/interface/efi/
efi_snp.c 353 EFI_NETWORK_STATISTICS stats_buf; local
359 memset ( &stats_buf, 0, sizeof ( stats_buf ) );
360 stats_buf.TxGoodFrames = snpdev->netdev->tx_stats.good;
361 stats_buf.TxDroppedFrames = snpdev->netdev->tx_stats.bad;
362 stats_buf.TxTotalFrames = ( snpdev->netdev->tx_stats.good +
364 stats_buf.RxGoodFrames = snpdev->netdev->rx_stats.good;
365 stats_buf.RxDroppedFrames = snpdev->netdev->rx_stats.bad;
366 stats_buf.RxTotalFrames = ( snpdev->netdev->rx_stats.good +
368 if ( *stats_len > sizeof ( stats_buf ) )
    [all...]

Completed in 113 milliseconds