Lines Matching refs:name
120 const getArrayBufferOrView = hideStackFrames((buffer, name, encoding) => {
130 name,
278 function validateMaxBufferLength(data, name) {
281 `${name} must be less than ${kMaxBufferLength + 1} bits`,
293 return normalizeAlgorithm({ name: algorithm }, op);
305 let algName = initialAlg.name;
321 throw lazyDOMException('Unrecognized algorithm name', 'NotSupportedError');
325 return { name: algName };
333 normalizedAlgorithm.name = algName;
388 function validateBitLength(length, name, required = false) {
390 validateNumber(length, name);
392 throw new ERR_OUT_OF_RANGE(name, '> 0');
395 name,
402 function validateByteLength(buf, name, target) {
405 `${name} must contain exactly ${target} bytes`,
410 const validateByteSource = hideStackFrames((val, name) => {
417 name,
432 { name: 'OperationError', cause: err }));
496 function getBlockSize(name) {
497 switch (name) {