Lines Matching refs:alloc
303 Buffer.alloc(8, '');
306 const buf = Buffer.alloc(64, 10);
338 const buf = Buffer.alloc(10, 'abc');
347 () => { internalBinding('buffer').fill(Buffer.alloc(1), 1, -1, 0, 1); },
360 Buffer.alloc(1).fill(Buffer.alloc(1), 0, end);
371 () => { internalBinding('buffer').fill(Buffer.alloc(1), 1, 1, -2, 1); },
435 const bufEmptyString = Buffer.alloc(5, '');
438 const bufEmptyArray = Buffer.alloc(5, []);
441 const bufEmptyBuffer = Buffer.alloc(5, Buffer.alloc(5));
444 const bufZero = Buffer.alloc(5, 0);