Home
last modified time | relevance | path

Searched refs:writeInt32BE (Results 1 – 12 of 12) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeint.js107 buffer.writeInt32BE(0x23, 0);
113 buffer.writeInt32BE(-5, 0);
119 buffer.writeInt32BE(-805306713, 0);
126 buffer.writeInt32BE(0x7fffffff, 0);
127 buffer.writeInt32BE(-0x80000000, 4);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp997 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr) in createStubFunction()
998 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr) in createStubFunction()
999 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32 in createStubFunction()
1000 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr) in createStubFunction()
1001 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr) in createStubFunction()
1005 writeInt32BE(Addr+20, 0xF8410018); // std r2, 24(r1) in createStubFunction()
1006 writeInt32BE(Addr+24, 0x7D8903A6); // mtctr r12 in createStubFunction()
1007 writeInt32BE(Addr+28, 0x4E800420); // bctr in createStubFunction()
1012 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1) in createStubFunction()
1013 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12) in createStubFunction()
[all …]
DRuntimeDyldELF.cpp796 writeInt32BE(LocalAddress, Result); in resolvePPC64Relocation()
805 writeInt32BE(LocalAddress, (Inst & 0xFC000003) | (delta & 0x03FFFFFC)); in resolvePPC64Relocation()
812 writeInt32BE(LocalAddress, delta); in resolvePPC64Relocation()
844 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
856 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()
871 writeInt32BE(LocalAddress, Value + Addend); in resolveSystemZRelocation()
1544 writeInt32BE(Target + 4, 0xE8410018); // ld r2,24(r1) in processRelocationRef()
1546 writeInt32BE(Target + 4, 0xE8410028); // ld r2,40(r1) in processRelocationRef()
DRuntimeDyldImpl.h328 void writeInt32BE(uint8_t *Addr, uint32_t Value) { in writeInt32BE() function
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js242 writeInt32BE(value, offset) { method in SmartBuffer
243 return this._writeNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset);
254 return this._insertNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset);
/third_party/node/benchmark/buffers/
Dbuffer-write.js53 writeInt32BE: INT32, property
/third_party/node/lib/internal/
Dbuffer.js891 function writeInt32BE(value, offset = 0) { function
1020 proto.writeInt32BE = writeInt32BE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js378 this.writeInt32BE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1628 Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) { method in Buffer
/third_party/typescript/src/compiler/
Dsys.ts1304 writeInt32BE(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md4396 ### `buf.writeInt32BE(value[, offset])`
4423 buf.writeInt32BE(0x01020304, 0);
4434 buf.writeInt32BE(0x01020304, 0);
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs6954 writeInt32BE(value, offset) {
6955 return this._writeNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset);
6966 return this._insertNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset);