Lines Matching defs:fill
63 fill: bindingFill,
402 * alloc(size[, fill[, encoding]])
404 Buffer.alloc = function alloc(size, fill, encoding) {
406 if (fill !== undefined && fill !== 0 && size > 0) {
408 return _fill(buf, fill, 0, buf.length, encoding);
415 * instance. If `--zero-fill-buffers` is set, will zero-fill the buffer.
425 * If `--zero-fill-buffers` is set, will zero-fill the buffer.
432 // If --zero-fill-buffers command line argument is set, a zero-filled
612 // Zero-fill the remaining bytes if the specified `length` was more than
1018 // buffer.fill(number[, offset[, end]])
1019 // buffer.fill(buffer[, offset[, end]])
1020 // buffer.fill(string[, offset[, end]][, encoding])
1021 Buffer.prototype.fill = function fill(value, offset, end, encoding) {