/third_party/node/test/common/ |
D | dns.js | 43 const pointeeOffset = buffer.readUInt16BE(offset) &~ 0xC000; 54 id: buffer.readUInt16BE(0), 55 flags: buffer.readUInt16BE(2), 59 ['questions', buffer.readUInt16BE(4)], 60 ['answers', buffer.readUInt16BE(6)], 61 ['authorityAnswers', buffer.readUInt16BE(8)], 62 ['additionalRecords', buffer.readUInt16BE(10)], 72 const type = buffer.readUInt16BE(offset); 76 cls: buffer.readUInt16BE(offset + 2), 87 const dataLength = buffer.readUInt16BE(offset);
|
D | tls.js | 85 const length = record.slice(3, 5).readUInt16BE(0);
|
D | inspector-helper.js | 72 dataLen = buffer.readUInt16BE(2);
|
/third_party/node/test/parallel/ |
D | test-buffer-readuint.js | 59 assert.strictEqual(data.readUInt16BE(0), 0x2a); 60 assert.strictEqual(data.readUInt16BE(1), 0x2a42); 61 assert.strictEqual(data.readUInt16BE(2), 0x423f); 68 assert.strictEqual(data.readUInt16BE(0), 0xfefe);
|
/third_party/node/deps/npm/node_modules/socks/build/client/ |
D | socksclient.js | 172 const remotePort = buff.readUInt16BE(); 413 port: buff.readUInt16BE(), 444 port: buff.readUInt16BE(), 587 port: buff.readUInt16BE() 607 port: buff.readUInt16BE() 621 port: buff.readUInt16BE() 676 port: buff.readUInt16BE() 696 port: buff.readUInt16BE() 710 port: buff.readUInt16BE()
|
/third_party/node/lib/internal/ |
D | buffer.js | 268 return this.readUInt16BE(offset); 326 function readUInt16BE(offset = 0) { function 982 proto.readUInt16BE = readUInt16BE; 989 proto.readUint16BE = readUInt16BE; 1057 readUInt16BE, property
|
/third_party/node/deps/npm/node_modules/ip/lib/ |
D | ip.js | 77 result.push(buff.readUInt16BE(offset + i).toString(16)); 292 var word = b.readUInt16BE(10);
|
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/ |
D | index.d.ts | 21 readUInt16BE(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/safe-buffer/ |
D | index.d.ts | 21 readUInt16BE(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/ |
D | index.d.ts | 21 readUInt16BE(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/ |
D | index.d.ts | 21 readUInt16BE(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/smart-buffer/typings/ |
D | smartbuffer.d.ts | 238 readUInt16BE(offset?: number): number;
|
/third_party/node/deps/npm/node_modules/smart-buffer/build/ |
D | smartbuffer.js | 342 readUInt16BE(offset) { method in SmartBuffer 343 return this._readNumberValue(Buffer.prototype.readUInt16BE, 2, offset);
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 258 this.readUInt16BE = function (...args) { method in mockBuffer.BufferClass
|
/third_party/node/deps/npm/node_modules/smart-buffer/docs/ |
D | README_v3.md | 176 * readUInt16BE
|
/third_party/node/lib/internal/http2/ |
D | core.js | 38 const { readUInt16BE, readUInt32BE } = require('internal/buffer'); 3285 const id = ReflectApply(readUInt16BE, buf, [offset]);
|
/third_party/node/deps/npm/node_modules/smart-buffer/ |
D | README.md | 274 ### buff.readUInt16BE([offset])
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1031 readUInt16BE(offset: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 1900 ### `buf.readUInt16BE([offset])` 1925 console.log(buf.readUInt16BE(0).toString(16)); 1927 console.log(buf.readUInt16BE(1).toString(16));
|