/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),
|
/third_party/flatbuffers/tests/my-game/example/ |
D | test.js | 23 this.bb.writeInt8(this.bb_pos + 2, value); 35 builder.writeInt8(b);
|
D | test.ts | 30 this.bb!.writeInt8(this.bb_pos + 2, value); 45 builder.writeInt8(b);
|
D | vec3.ts | 80 builder.writeInt8(test3_b); 83 builder.writeInt8(test2);
|
D | vec3.js | 62 builder.writeInt8(test3_b); 65 builder.writeInt8(test2);
|
D | struct-of-structs.js | 36 builder.writeInt8(b_b);
|
D | struct-of-structs.ts | 45 builder.writeInt8(b_b);
|
D | type-aliases.js | 29 this.bb.writeInt8(this.bb_pos + offset, value);
|
/third_party/flatbuffers/ts/ |
D | builder.ts | 123 this.bb.writeInt8(--this.space, 0); 127 writeInt8(value: number): void { method in Builder 128 this.bb.writeInt8(this.space -= 1, value); 157 this.writeInt8(value); 436 this.writeInt8(file_identifier.charCodeAt(i));
|
D | byte-buffer.ts | 97 writeInt8(offset: number, value: number): void { method in ByteBuffer
|
/third_party/node/benchmark/buffers/ |
D | buffer-write.js | 50 writeInt8: INT8, property
|
/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/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/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/flatbuffers/tests/namespace_test/namespace-a/ |
D | table-in-first-n-s.js | 37 this.bb.writeInt8(this.bb_pos + offset, value);
|
D | table-in-first-n-s.ts | 46 this.bb!.writeInt8(this.bb_pos + offset, value);
|
/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);
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | decoder_test.js | 268 jspb.BinaryEncoder.prototype.writeInt8,
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | decoder_test.js | 279 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/lib/internal/ |
D | buffer.js | 867 function writeInt8(value, offset = 0) { function 1015 proto.writeInt8 = writeInt8;
|
/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])
|