Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buffer: removed unused variable conf from buffer-base64-decode & buffer-base64-encode #10175

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions benchmark/buffers/buffer-base64-decode.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
const assert = require('assert');
const common = require('../common.js');

const bench = common.createBenchmark(main, {});
const bench = common.createBenchmark(main, {
n: [32],
});

function main(conf) {
const n = +conf.n;
const s = 'abcd'.repeat(8 << 20);
s.match(/./); // Flatten string.
assert.strictEqual(s.length % 4, 0);
const b = Buffer.allocUnsafe(s.length / 4 * 3);
b.write(s, 0, s.length, 'base64');
bench.start();
for (var i = 0; i < 32; i += 1) b.base64Write(s, 0, s.length);
bench.end(32);
for (var i = 0; i < n; i += 1) b.base64Write(s, 0, s.length);
bench.end(n);
}
20 changes: 12 additions & 8 deletions benchmark/buffers/buffer-base64-encode.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
'use strict';
var common = require('../common.js');

var bench = common.createBenchmark(main, {});
const bench = common.createBenchmark(main, {
len: [64 * 1024 * 1024],
n: [32]
});

function main(conf) {
var N = 64 * 1024 * 1024;
var b = Buffer.allocUnsafe(N);
var s = '';
var i;
const n = +conf.n;
const len = +conf.len;
const b = Buffer.allocUnsafe(len);
let s = '';
let i;
for (i = 0; i < 256; ++i) s += String.fromCharCode(i);
for (i = 0; i < N; i += 256) b.write(s, i, 256, 'ascii');
for (i = 0; i < len; i += 256) b.write(s, i, 256, 'ascii');
bench.start();
for (i = 0; i < 32; ++i) b.toString('base64');
bench.end(64);
for (i = 0; i < n; ++i) b.toString('base64');
bench.end(n);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the change from 64 to 32 in the bench.end(n) here intentional?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nevermind... just spotted the other comment about it :-)

}