Home
last modified time | relevance | path

Searched refs:otherBufData (Results 1 – 1 of 1) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-swap.js71 const otherBufData = new Uint32Array(256).fill(0x03040102);
72 const otherBuf = Buffer.from(otherBufData.buffer, otherBufData.byteOffset);
80 const otherBufData = new Uint32Array(256).fill(0x01020304);
81 const otherBuf = Buffer.from(otherBufData.buffer, otherBufData.byteOffset);
88 const otherBufData = new Uint8Array(256 * 8); constant
91 otherBufData[otherBufData.length - i - 1] = i % 8;
94 const otherBuf = Buffer.from(otherBufData.buffer, otherBufData.byteOffset);
102 const otherBufData = new Uint8Array(256 * 8 - 2); constant
106 for (let i = 1; i < otherBufData.length; i++) {
107 otherBufData[otherBufData.length - i] = (i + 1) % 2;
[all …]