bps              1153 src/filemanager/file.c     ctx->bps = file_part / ctx->bps_time;
bps              1168 src/filemanager/file.c             tctx->bps = tctx->copied_bytes / total_secs;
bps              1169 src/filemanager/file.c             tctx->eta_secs = (tctx->bps != 0) ? remain_bytes / tctx->bps : 0;
bps              1174 src/filemanager/file.c         tctx->bps = (tctx->bps * (tctx->bps_count - 1) + ctx->bps) / tctx->bps_count;
bps              1175 src/filemanager/file.c         tctx->eta_secs = (tctx->bps != 0) ? remain_bytes / tctx->bps : 0;
bps              2663 src/filemanager/file.c     ctx->bps = 0;
bps              2665 src/filemanager/file.c     if (tctx->bps == 0 || (file_size / tctx->bps) > FILEOP_UPDATE_INTERVAL)
bps               368 src/filemanager/filegui.c file_bps_prepare_for_show (char *buffer, long bps)
bps               370 src/filemanager/filegui.c     if (bps > 1024 * 1024)
bps               371 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%.2f MB/s"), bps / (1024 * 1024.0));
bps               372 src/filemanager/filegui.c     else if (bps > 1024)
bps               373 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%.2f KB/s"), bps / 1024.0);
bps               374 src/filemanager/filegui.c     else if (bps > 1)
bps               375 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%ld B/s"), bps);
bps              1016 src/filemanager/filegui.c         if (ctx->bps == 0)
bps              1022 src/filemanager/filegui.c             file_bps_prepare_for_show (buffer3, ctx->bps);
bps              1078 src/filemanager/filegui.c     if (!show_summary && tctx->bps == 0)
bps              1092 src/filemanager/filegui.c             if (tctx->bps == 0)
bps              1096 src/filemanager/filegui.c                 file_bps_prepare_for_show (buffer4, (long) tctx->bps);
bps              1102 src/filemanager/filegui.c             if (tctx->bps == 0)
bps              1106 src/filemanager/filegui.c                 file_bps_prepare_for_show (buffer4, (long) tctx->bps);
bps                83 src/filemanager/fileopctx.h     long bps;
bps               165 src/filemanager/fileopctx.h     size_t bps;