Home
last modified time | relevance | path

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

/third_party/node/test/common/
Ddns.js43 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);
Dtls.js85 const length = record.slice(3, 5).readUInt16BE(0);
Dinspector-helper.js72 dataLen = buffer.readUInt16BE(2);
/third_party/node/test/parallel/
Dtest-buffer-readuint.js59 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/
Dsocksclient.js172 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/
Dbuffer.js268 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/
Dip.js77 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/
Dindex.d.ts21 readUInt16BE(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/safe-buffer/
Dindex.d.ts21 readUInt16BE(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/
Dindex.d.ts21 readUInt16BE(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/
Dindex.d.ts21 readUInt16BE(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dsmartbuffer.d.ts238 readUInt16BE(offset?: number): number;
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js342 readUInt16BE(offset) { method in SmartBuffer
343 return this._readNumberValue(Buffer.prototype.readUInt16BE, 2, offset);
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js258 this.readUInt16BE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/smart-buffer/docs/
DREADME_v3.md176 * readUInt16BE
/third_party/node/lib/internal/http2/
Dcore.js38 const { readUInt16BE, readUInt32BE } = require('internal/buffer');
3285 const id = ReflectApply(readUInt16BE, buf, [offset]);
/third_party/node/deps/npm/node_modules/smart-buffer/
DREADME.md274 ### buff.readUInt16BE([offset])
/third_party/typescript/src/compiler/
Dsys.ts1031 readUInt16BE(offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md1900 ### `buf.readUInt16BE([offset])`
1925 console.log(buf.readUInt16BE(0).toString(16));
1927 console.log(buf.readUInt16BE(1).toString(16));