/third_party/node/test/parallel/ |
D | test-buffer-writeint.js | 18 buffer.writeInt8(0x23, 0); 19 buffer.writeInt8(-5, 1); 23 buffer.writeInt8(0x7f, 0); 24 buffer.writeInt8(-0x80, 1); 28 buffer.writeInt8(0x7f + 1, 0); 31 buffer.writeInt8(-0x80 - 1, 0); 35 buffer.writeInt8(23, undefined); 36 buffer.writeInt8(23); 40 () => buffer.writeInt8(23, off), 46 () => buffer.writeInt8(23, off),
|
D | test-buffer-alloc.js | 821 assert.strictEqual(b.writeInt8(0, 7), 8);
|
/third_party/node/deps/npm/node_modules/smart-buffer/build/ |
D | smartbuffer.js | 175 writeInt8(value, offset) { method in SmartBuffer 176 this._writeNumberValue(Buffer.prototype.writeInt8, 1, value, offset); 188 return this._insertNumberValue(Buffer.prototype.writeInt8, 1, value, offset);
|
/third_party/node/benchmark/buffers/ |
D | buffer-write.js | 50 writeInt8: INT8, property
|
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/ |
D | index.d.ts | 41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/safe-buffer/ |
D | index.d.ts | 41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/ |
D | index.d.ts | 41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/ |
D | index.d.ts | 41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/smart-buffer/typings/ |
D | smartbuffer.d.ts | 107 writeInt8(value: number, offset?: number): SmartBuffer;
|
/third_party/node/deps/npm/node_modules/smart-buffer/docs/ |
D | CHANGELOG.md | 13 * Ability to write over data when an offset is given (see breaking changes) ex: writeInt8(5, 0);
|
D | README_v3.md | 245 * writeInt8 266 ### SmartBuffer.writeInt8( value, [offset] )
|
/third_party/node/lib/internal/ |
D | buffer.js | 867 function writeInt8(value, offset = 0) { function 1015 proto.writeInt8 = writeInt8;
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | decoder_test.js | 279 jspb.BinaryEncoder.prototype.writeInt8,
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | decoder_test.js | 268 jspb.BinaryEncoder.prototype.writeInt8,
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 363 this.writeInt8 = function (...args) { method in mockBuffer.BufferClass
|
/third_party/node/deps/npm/node_modules/smart-buffer/ |
D | README.md | 122 buff.writeInt8(7, 2); 131 buff.writeInt8(7, 2); 291 ### buff.writeInt8(value[, offset])
|
/third_party/protobuf/js/binary/ |
D | encoder.js | 315 jspb.BinaryEncoder.prototype.writeInt8 = function(value) { method in jspb.BinaryEncoder
|
D | decoder_test.js | 429 jspb.BinaryEncoder.prototype.writeInt8,
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1052 writeInt8(value: number, offset: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 2646 ### `buf.writeInt8(value[, offset])` 2670 buf.writeInt8(2, 0); 2671 buf.writeInt8(-2, 1);
|