Home
last modified time | relevance | path

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

/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dutils.d.ts59 writeBigUInt64BE(value: bigint, offset?: number): number;
Dsmartbuffer.d.ts372 writeBigUInt64BE(value: bigint, offset?: number): SmartBuffer;
/third_party/node/benchmark/buffers/
Dbuffer-write.js48 writeBigUInt64BE: UINT64, property
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js510 writeBigUInt64BE(value, offset) { method in SmartBuffer
512 return this._writeNumberValue(Buffer.prototype.writeBigUInt64BE, 8, value, offset);
524 return this._insertNumberValue(Buffer.prototype.writeBigUInt64BE, 8, value, offset);
/third_party/node/lib/internal/
Dbuffer.js625 function writeBigUInt64BE(value, offset = 0) { function
970 proto.writeBigUInt64BE = writeBigUInt64BE;
972 proto.writeBigUint64BE = writeBigUInt64BE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js333 this.writeBigUInt64BE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/smart-buffer/docs/
DREADME_v3.md257 * writeBigUInt64BE
/third_party/typescript/src/compiler/
Dsys.ts1067 writeBigUInt64BE?(value: bigint, offset?: number): number; method
/third_party/node/doc/api/
Dbuffer.md2478 ### `buf.writeBigUInt64BE(value[, offset])`
2501 buf.writeBigUInt64BE(0xdecafafecacefaden, 0);