Home
last modified time | relevance | path

Searched refs:writeUInt8 (Results 1 – 13 of 13) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeuint.js37 data.writeUInt8(23, 0);
38 data.writeUInt8(23, 1);
39 data.writeUInt8(23, 2);
40 data.writeUInt8(23, 3);
43 data.writeUInt8(23, 0);
44 data.writeUInt8(23, 1);
45 data.writeUInt8(23, 2);
46 data.writeUInt8(23, 3);
49 data.writeUInt8(255, 0);
52 data.writeUInt8(255, 0);
Dtest-buffer-alloc.js840 assert.strictEqual(b.writeUInt8(0, 6), 7);
/third_party/node/deps/npm/node_modules/socks/build/client/
Dsocksclient.js160 buff.writeUInt8(options.frameNumber || 0);
163 buff.writeUInt8(constants_1.Socks5HostType.IPv4);
167 buff.writeUInt8(constants_1.Socks5HostType.IPv6);
171 buff.writeUInt8(constants_1.Socks5HostType.Hostname);
172 buff.writeUInt8(Buffer.byteLength(options.remoteHost.host));
399 buff.writeUInt8(0x04);
400 buff.writeUInt8(constants_1.SocksCommand[this.options.command]);
409 buff.writeUInt8(0x00);
410 buff.writeUInt8(0x00);
411 buff.writeUInt8(0x00);
[all …]
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js400 writeUInt8(value, offset) { method in SmartBuffer
401 return this._writeNumberValue(Buffer.prototype.writeUInt8, 1, value, offset);
412 return this._insertNumberValue(Buffer.prototype.writeUInt8, 1, value, offset);
784 this.writeUInt8(0x00, typeof arg2 === 'number' ? arg2 + value.length : this.writeOffset);
881 … this.writeUInt8(0x00, typeof offset === 'number' ? offset + value.length : this._writeOffset);
/third_party/node/benchmark/buffers/
Dbuffer-write.js55 writeUInt8: UINT8, property
/third_party/node/test/common/
Dinspector-helper.js96 wsHeaderBuf.writeUInt8(0x81, 0);
113 wsHeaderBuf.writeUInt8(byte2, 1);
/third_party/node/lib/internal/
Dbuffer.js749 function writeUInt8(value, offset = 0) { function
1004 proto.writeUInt8 = writeUInt8;
1011 proto.writeUint8 = writeUInt8;
/third_party/node/src/
Dnode_wasi.h92 inline void writeUInt8(char* memory, uint8_t value, uint32_t offset);
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js398 this.writeUInt8 = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1440 Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { method in Buffer
/third_party/node/doc/api/
Dbuffer.md4572 ### `buf.writeUInt8(value[, offset])`
4604 buf.writeUInt8(0x3, 0);
4605 buf.writeUInt8(0x4, 1);
4606 buf.writeUInt8(0x23, 2);
4607 buf.writeUInt8(0x42, 3);
4618 buf.writeUInt8(0x3, 0);
4619 buf.writeUInt8(0x4, 1);
4620 buf.writeUInt8(0x23, 2);
4621 buf.writeUInt8(0x42, 3);
/third_party/typescript/src/compiler/
Dsys.ts1295 writeUInt8(value: number, offset: number): number; method
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs7112 writeUInt8(value, offset) {
7113 return this._writeNumberValue(Buffer.prototype.writeUInt8, 1, value, offset);
7124 return this._insertNumberValue(Buffer.prototype.writeUInt8, 1, value, offset);
7487 this.writeUInt8(0, typeof arg2 === "number" ? arg2 + value.length : this.writeOffset);
7575 this.writeUInt8(0, typeof offset === "number" ? offset + value.length : this._writeOffset);
8307 buff.writeUInt8(options.frameNumber || 0);
8309 buff.writeUInt8(constants_1.Socks5HostType.IPv4);
8312 buff.writeUInt8(constants_1.Socks5HostType.IPv6);
8315 buff.writeUInt8(constants_1.Socks5HostType.Hostname);
8316 buff.writeUInt8(Buffer.byteLength(options.remoteHost.host));
[all …]