Home
last modified time | relevance | path

Searched refs:writeUInt32BE (Results 1 – 15 of 15) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeuint.js104 data.writeUInt32BE(value, 0);
107 data.writeUInt32BE(value, 1);
110 data.writeUInt32BE(value, 2);
Dtest-crypto-prime.js118 buf.writeUInt32BE(check);
128 buf.writeUInt32BE(check);
Dtest-buffer-arraybuffer.js28 buf.writeUInt32BE(0xB47, 4);
/third_party/node/test/common/
Dinspector-helper.js109 wsHeaderBuf.writeUInt32BE(bodyLen, 2);
110 wsHeaderBuf.writeUInt32BE(0, 6);
114 wsHeaderBuf.writeUInt32BE(0x01020408, maskOffset);
Dtls.js121 write_seq.writeUInt32BE(this.write_seq++, 4);
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
Dutf32.js35 var write32 = this.isLE ? dst.writeUInt32LE : dst.writeUInt32BE;
91 buf.writeUInt32BE(this.highSurrogate, 0);
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js466 writeUInt32BE(value, offset) { method in SmartBuffer
467 return this._writeNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset);
478 return this._insertNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset);
/third_party/node/benchmark/buffers/
Dbuffer-write.js58 writeUInt32BE: UINT32, property
/third_party/node/lib/internal/
Dbuffer.js816 function writeUInt32BE(value, offset = 0) { function
1006 proto.writeUInt32BE = writeUInt32BE;
1013 proto.writeUint32BE = writeUInt32BE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js413 this.writeUInt32BE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/socks/build/client/
Dsocksclient.js164 buff.writeUInt32BE(ip.toLong(options.remoteHost.host));
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1481 Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) { method in Buffer
/third_party/typescript/src/compiler/
Dsys.ts1299 writeUInt32BE(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md4729 ### `buf.writeUInt32BE(value[, offset])`
4761 buf.writeUInt32BE(0xfeedface, 0);
4772 buf.writeUInt32BE(0xfeedface, 0);
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs7178 writeUInt32BE(value, offset) {
7179 return this._writeNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset);
7190 return this._insertNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset);
8310 buff.writeUInt32BE(ip.toLong(options.remoteHost.host));