Home
last modified time | relevance | path

Searched refs:write16 (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/ELF/Arch/
H A DMips.cpp257 write16(loc, data); in writeMicroRelocation16()
272 write16(buf + 14, 0xfffe); in writePltHeader()
275 write16(buf + 18, 0x0f83); // move $28, $3 in writePltHeader()
276 write16(buf + 20, 0x472b); // jalrc $25 in writePltHeader()
277 write16(buf + 22, 0x0c00); // nop in writePltHeader()
280 write16(buf + 18, 0x45f9); // jalrc $25 in writePltHeader()
282 write16(buf + 22, 0x0c00); // nop in writePltHeader()
331 write16(buf + 4, 0xff22); // lw $25, 0($2) in writePlt()
332 write16(buf + 8, 0x0f02); // move $24, $2 in writePlt()
337 write16(buf + 4, 0xff22); // lw $25, 0($2) in writePlt()
[all …]
H A DPPC64.cpp1228 write16(loc, val); in relocate()
1241 write16(loc, (read16(loc) & mask) | lo(val)); in relocate()
1250 write16(loc, ha(val)); in relocate()
1257 write16(loc, hi(val)); in relocate()
1260 write16(loc, hi(val)); in relocate()
1264 write16(loc, higher(val)); in relocate()
1268 write16(loc, highera(val)); in relocate()
1272 write16(loc, highest(val)); in relocate()
1276 write16(loc, highesta(val)); in relocate()
1292 write16(loc, lo(val)); in relocate()
[all …]
H A DPPC.cpp316 write16(loc, val); in relocate()
324 write16(loc, val); in relocate()
333 write16(loc, ha(val)); in relocate()
342 write16(loc, val >> 16); in relocate()
351 write16(loc, val); in relocate()
H A DAArch64.cpp345 write16(loc, val); in relocate()
/freebsd-13.1/contrib/bearssl/src/ssl/
H A Dssl_hs_client.t0462 addr-version_max get16 write16
474 addr-suites_num get8 dup 1 << write16
480 write16
490 total-ext-length write16
513 2 - write16 \ list length
523 2- write16 \ list length
526 0xDFFFFFFF and 29 write16
529 dup2 >> 1 and if dup write16 then
544 2- write16 \ list length
1118 dup write16
[all …]
H A Dssl_hs_server.t0941 addr-version get16 write16
963 write16
965 0xFF01 write16
966 4 - dup write16
972 0x0001 write16
978 0x0010 write16
979 4 - dup write16
980 2- dup write16
1035 3 write8 curve-id write16
1046 write16
[all …]
H A Dssl_hs_common.t0620 : write16 ( n -- )
625 dup 16 u>> write8 write16 ;
663 dup write16 write-blob ;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h395 inline void write16(void *P, uint16_t V, endianness E) { in write16() function
405 template <endianness E> inline void write16(void *P, uint16_t V) { in write16() function
415 inline void write16le(void *P, uint16_t V) { write16<little>(P, V); } in write16le()
418 inline void write16be(void *P, uint16_t V) { write16<big>(P, V); } in write16be()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DThunks.cpp769 write16(buf, 0x41b9); // lui $25, %hi(func) in writeTo()
770 write16(buf + 4, 0xd400); // j func in writeTo()
771 write16(buf + 8, 0x3339); // addiu $25, $25, %lo(func) in writeTo()
772 write16(buf + 12, 0x0c00); // nop in writeTo()
794 write16(buf, 0x1320); // lui $25, %hi(func) in writeTo()
795 write16(buf + 4, 0x3339); // addiu $25, $25, %lo(func) in writeTo()
796 write16(buf + 8, 0x9400); // bc func in writeTo()
H A DTarget.h280 inline void write16(void *p, uint16_t v) { in write16() function
281 llvm::support::endian::write16(p, v, config->endianness); in write16()
H A DOutputSections.cpp318 write16(buf, data); in writeInt()
H A DSyntheticSections.cpp3114 write16(buf, 1); // vd_version in writeOne()
3115 write16(buf + 2, flags); // vd_flags in writeOne()
3116 write16(buf + 4, index); // vd_ndx in writeOne()
3117 write16(buf + 6, 1); // vd_cnt in writeOne()
3166 write16(buf, s.sym->isLazy() ? static_cast<uint16_t>(VER_NDX_GLOBAL) in writeTo()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DCompactUnwindPass.cpp222 using normalized::write16; in addRegularSecondLevelPage()
226 write16(&_contents[curPageOffset + 4], headerSize, _isBig); in addRegularSecondLevelPage()
227 write16(&_contents[curPageOffset + 6], page.entries.size(), _isBig); in addRegularSecondLevelPage()
H A DMachONormalizedFileBinaryUtils.h89 inline void write16(uint8_t *loc, uint16_t value, bool isBig) { in write16() function