Home
last modified time | relevance | path

Searched refs:writeInt8 (Results 1 – 14 of 14) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeint.js18 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),
Dtest-buffer-alloc.js841 assert.strictEqual(b.writeInt8(0, 7), 8);
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js175 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/
Dbuffer-write.js50 writeInt8: INT8, property
/third_party/node/lib/internal/
Dbuffer.js870 function writeInt8(value, offset = 0) { function
1018 proto.writeInt8 = writeInt8;
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Ddecoder_test.js279 jspb.BinaryEncoder.prototype.writeInt8,
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Ddecoder_test.js268 jspb.BinaryEncoder.prototype.writeInt8,
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js363 this.writeInt8 = function (...args) { method in mockBuffer.BufferClass
/third_party/protobuf/js/binary/
Dencoder.js315 jspb.BinaryEncoder.prototype.writeInt8 = function(value) { method in jspb.BinaryEncoder
Ddecoder_test.js429 jspb.BinaryEncoder.prototype.writeInt8,
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1590 Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) { method in Buffer
/third_party/typescript/src/compiler/
Dsys.ts1300 writeInt8(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md4262 ### `buf.writeInt8(value[, offset])`
4289 buf.writeInt8(2, 0);
4290 buf.writeInt8(-2, 1);
4301 buf.writeInt8(2, 0);
4302 buf.writeInt8(-2, 1);
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs6887 writeInt8(value, offset) {
6888 this._writeNumberValue(Buffer.prototype.writeInt8, 1, value, offset);
6900 return this._insertNumberValue(Buffer.prototype.writeInt8, 1, value, offset);