Home
last modified time | relevance | path

Searched refs:read16 (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp668 (read16(loc) & 0xfbc0) | // opcode cond in relocate()
686 bool isBlx = (read16(loc + 2) & 0x1000) == 0; in relocate()
696 write16(loc + 2, read16(loc + 2) & ~0x1000); in relocate()
698 write16(loc + 2, (read16(loc + 2) & ~0x1000) | 1 << 12); in relocate()
708 (read16(loc + 2) & 0xd000) | // opcode in relocate()
724 (read16(loc + 2) & 0xd000) | // opcode in relocate()
752 (read16(loc + 2) & 0x8f00) | // opcode in relocate()
765 (read16(loc + 2) & 0x8f00) | // opcode in relocate()
770 write16(loc, (read16(loc) &~ 0x00ff) | ((val >> 24) & 0x00ff)); in relocate()
773 write16(loc, (read16(loc) &~ 0x00ff) | ((val >> 16) & 0x00ff)); in relocate()
[all …]
H A DMips.cpp252 uint16_t instr = read16(loc); in writeMicroRelocation16()
446 return SignExtend64<8>(read16(buf) << 1); in getImplicitAddend()
448 return SignExtend64<11>(read16(buf) << 1); in getImplicitAddend()
H A DPPC64.cpp1289 write16(loc, (read16(loc) & mask) | lo(val)); in relocate()
1361 write16(loc, (read16(loc) & mask) | lo(val)); in relocate()
H A DAArch64.cpp232 return SignExtend64<16>(read16(buf)); in getImplicitAddend()
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_server.t0417 read16 open-elt
420 read16 open-elt
428 read16
465 read16 1 <> if ERR_BAD_FRAGLEN fail then
484 read16
517 read16 open-elt
527 read16 open-elt
530 read16 open-elt
535 read16 dup 32 < if
551 read16 open-elt
[all …]
H A Dssl_hs_client.t0571 read16 if ERR_BAD_SNI fail then ;
579 read16 1 = ifnot ERR_BAD_FRAGLEN fail then
588 read16
613 read16 open-elt
615 read16 open-elt
655 read16 { version }
689 read16
705 read16 open-elt
718 read16
857 read16 dup addr-ecdhe_curve set8
[all …]
H A Dssl_hs_common.t0554 : read16 ( lim -- lim n )
581 read16 skip-blob ;
1166 read16 open-elt
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h402 [[nodiscard]] inline uint16_t read16(const void *P, endianness E) { in read16() function
412 template <endianness E> [[nodiscard]] inline uint16_t read16(const void *P) { in read16() function
423 return read16<llvm::endianness::little>(P); in read16le()
432 return read16<llvm::endianness::big>(P); in read16be()
/freebsd/contrib/llvm-project/lld/ELF/
H A DTarget.h285 inline uint16_t read16(const void *p) { in read32()
286 return llvm::support::endian::read16(p, config->endianness);
279 inline uint16_t read16(const void *p) { read16() function
H A DSyntheticSections.cpp592 return read16(buf); in readFdeAddr()
594 return (int16_t)read16(buf); in readFdeAddr()
/freebsd/sys/contrib/dev/rtw88/
H A Dhci.h26 u16 (*read16)(struct rtw_dev *rtwdev, u32 addr); member
94 return rtwdev->hci.ops->read16(rtwdev, addr); in rtw_read16()
H A Dusb.c735 .read16 = rtw_usb_read16, in rtw_usb_deinit_rx()
H A Dsdio.c300 rtw_warn(rtwdev, "sdio read16 failed (0x%x): %d", addr, ret); in rtw_sdio_read16()
1161 .read16 = rtw_sdio_read16, in rtw_sdio_request_irq()
H A Dpci.c1684 .read16 = rtw_pci_read16,
/freebsd/sys/contrib/dev/rtw89/
H A Dcore.h3475 u16 (*read16)(struct rtw89_dev *rtwdev, u32 addr);
5682 return rtwdev->hci.ops->read16(rtwdev, addr);
2955 u16 (*read16)(struct rtw89_dev *rtwdev, u32 addr); global() member
H A Dpci.c4347 .read16 = rtw89_pci_ops_read16,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp2327 support::endian::read16(&Bytes[amdhsa::KERNEL_CODE_PROPERTIES_OFFSET], in decodeKernelDescriptor()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1362 << format_hex(support::endian::read16(Bytes.data() + Index, Endian), 6); in dumpARMELFData()