Home
last modified time | relevance | path

Searched refs:writeInt8 (Results 1 – 20 of 20) 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.js821 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/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/
Dindex.d.ts41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/safe-buffer/
Dindex.d.ts41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/
Dindex.d.ts41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/
Dindex.d.ts41 writeInt8(value: number, offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dsmartbuffer.d.ts107 writeInt8(value: number, offset?: number): SmartBuffer;
/third_party/node/deps/npm/node_modules/smart-buffer/docs/
DCHANGELOG.md13 * Ability to write over data when an offset is given (see breaking changes) ex: writeInt8(5, 0);
DREADME_v3.md245 * writeInt8
266 ### SmartBuffer.writeInt8( value, [offset] )
/third_party/node/lib/internal/
Dbuffer.js867 function writeInt8(value, offset = 0) { function
1015 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/node/deps/npm/node_modules/smart-buffer/
DREADME.md122 buff.writeInt8(7, 2);
131 buff.writeInt8(7, 2);
291 ### buff.writeInt8(value[, offset])
/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/typescript/src/compiler/
Dsys.ts1052 writeInt8(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md2646 ### `buf.writeInt8(value[, offset])`
2670 buf.writeInt8(2, 0);
2671 buf.writeInt8(-2, 1);