bps              1175 src/filemanager/file.c     ctx->bps = file_part / ctx->bps_time;
bps              1190 src/filemanager/file.c             tctx->bps = tctx->copied_bytes / total_secs;
bps              1191 src/filemanager/file.c             tctx->eta_secs = (tctx->bps != 0) ? remain_bytes / tctx->bps : 0;
bps              1196 src/filemanager/file.c         tctx->bps = (tctx->bps * (tctx->bps_count - 1) + ctx->bps) / tctx->bps_count;
bps              1197 src/filemanager/file.c         tctx->eta_secs = (tctx->bps != 0) ? remain_bytes / tctx->bps : 0;
bps              2582 src/filemanager/file.c     ctx->bps = 0;
bps              2584 src/filemanager/file.c     if (tctx->bps == 0 || (file_size / tctx->bps) > FILEOP_UPDATE_INTERVAL)
bps               371 src/filemanager/filegui.c file_bps_prepare_for_show (char *buffer, long bps)
bps               373 src/filemanager/filegui.c     if (bps > 1024 * 1024)
bps               374 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%.2f MB/s"), bps / (1024 * 1024.0));
bps               375 src/filemanager/filegui.c     else if (bps > 1024)
bps               376 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%.2f KB/s"), bps / 1024.0);
bps               377 src/filemanager/filegui.c     else if (bps > 1)
bps               378 src/filemanager/filegui.c         g_snprintf (buffer, BUF_TINY, _("%ld B/s"), bps);
bps              1020 src/filemanager/filegui.c         if (ctx->bps == 0)
bps              1026 src/filemanager/filegui.c             file_bps_prepare_for_show (buffer3, ctx->bps);
bps              1082 src/filemanager/filegui.c     if (!show_summary && tctx->bps == 0)
bps              1096 src/filemanager/filegui.c             if (tctx->bps == 0)
bps              1100 src/filemanager/filegui.c                 file_bps_prepare_for_show (buffer4, (long) tctx->bps);
bps              1106 src/filemanager/filegui.c             if (tctx->bps == 0)
bps              1110 src/filemanager/filegui.c                 file_bps_prepare_for_show (buffer4, (long) tctx->bps);
bps                82 src/filemanager/fileopctx.h     long bps;
bps               171 src/filemanager/fileopctx.h     size_t bps;