/third_party/node/test/parallel/ |
D | test-buffer-writeuint.js | 37 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);
|
D | test-buffer-alloc.js | 840 assert.strictEqual(b.writeUInt8(0, 6), 7);
|
/third_party/node/deps/npm/node_modules/socks/build/client/ |
D | socksclient.js | 160 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/ |
D | smartbuffer.js | 400 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/ |
D | buffer-write.js | 55 writeUInt8: UINT8, property
|
/third_party/node/test/common/ |
D | inspector-helper.js | 96 wsHeaderBuf.writeUInt8(0x81, 0); 113 wsHeaderBuf.writeUInt8(byte2, 1);
|
/third_party/node/lib/internal/ |
D | buffer.js | 749 function writeUInt8(value, offset = 0) { function 1004 proto.writeUInt8 = writeUInt8; 1011 proto.writeUint8 = writeUInt8;
|
/third_party/node/src/ |
D | node_wasi.h | 92 inline void writeUInt8(char* memory, uint8_t value, uint32_t offset);
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 398 this.writeUInt8 = function (...args) { method in mockBuffer.BufferClass
|
/third_party/node/deps/npm/node_modules/buffer/ |
D | index.js | 1440 Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { method in Buffer
|
/third_party/node/doc/api/ |
D | buffer.md | 4572 ### `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/ |
D | sys.ts | 1295 writeUInt8(value: number, offset: number): number; method
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 7112 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 …]
|