Home
last modified time | relevance | path

Searched refs:writeBigInt64BE (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dutils.d.ts57 writeBigInt64BE(value: bigint, offset?: number): number;
Dsmartbuffer.d.ts197 writeBigInt64BE(value: bigint, offset?: number): SmartBuffer;
/third_party/node/benchmark/buffers/
Dbuffer-write.js46 writeBigInt64BE: INT64, property
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js286 writeBigInt64BE(value, offset) { method in SmartBuffer
288 return this._writeNumberValue(Buffer.prototype.writeBigInt64BE, 8, value, offset);
300 return this._insertNumberValue(Buffer.prototype.writeBigInt64BE, 8, value, offset);
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js323 this.writeBigInt64BE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/lib/internal/
Dbuffer.js634 function writeBigInt64BE(value, offset = 0) { function
974 proto.writeBigInt64BE = writeBigInt64BE;
/third_party/node/deps/npm/node_modules/smart-buffer/docs/
DREADME_v3.md250 * writeBigInt64BE
/third_party/typescript/src/compiler/
Dsys.ts1065 writeBigInt64BE?(value: bigint, offset?: number): number; method
/third_party/node/doc/api/
Dbuffer.md2428 ### `buf.writeBigInt64BE(value[, offset])`
2447 buf.writeBigInt64BE(0x0102030405060708n, 0);