Home
last modified time | relevance | path

Searched refs:readInt8 (Results 1 – 19 of 19) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-readint.js51 assert.strictEqual(data.readInt8(0), 0x23);
54 assert.strictEqual(data.readInt8(0), -1);
57 assert.strictEqual(data.readInt8(0), -121);
58 assert.strictEqual(data.readInt8(1), -85);
59 assert.strictEqual(data.readInt8(2), 124);
60 assert.strictEqual(data.readInt8(3), -17);
Dtest-buffer-read.js86 () => buf.readInt8(0), OOB_ERROR);
/third_party/node/lib/internal/
Dbuffer.js350 return this.readInt8(offset);
419 function readInt8(offset = 0) { function
442 return this.readInt8(offset);
993 proto.readInt8 = readInt8;
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/
Dindex.d.ts24 readInt8(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/safe-buffer/
Dindex.d.ts24 readInt8(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/
Dindex.d.ts24 readInt8(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/
Dindex.d.ts24 readInt8(offset: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dsmartbuffer.d.ts56 readInt8(offset?: number): number;
/third_party/node/deps/npm/node_modules/smart-buffer/docs/
DCHANGELOG.md12 * Ability to read data from a specific offset. ex: readInt8(5)
DREADME_v3.md168 * readInt8
189 let num = reader.readInt8();
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js108 readInt8(offset) { method in SmartBuffer
109 return this._readNumberValue(Buffer.prototype.readInt8, 1, offset);
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Ddecoder_test.js278 jspb.BinaryDecoder.prototype.readInt8,
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Ddecoder_test.js267 jspb.BinaryDecoder.prototype.readInt8,
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js218 this.readInt8 = function (...args) { method in mockBuffer.BufferClass
/third_party/protobuf/js/binary/
Ddecoder.js710 jspb.BinaryDecoder.prototype.readInt8 = function() { method in jspb.BinaryDecoder
Ddecoder_test.js428 jspb.BinaryDecoder.prototype.readInt8,
/third_party/node/deps/npm/node_modules/smart-buffer/
DREADME.md266 ### readInt8([offset])
/third_party/typescript/src/compiler/
Dsys.ts1034 readInt8(offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md1675 ### `buf.readInt8([offset])`
1696 console.log(buf.readInt8(0));
1698 console.log(buf.readInt8(1));
1700 console.log(buf.readInt8(2));