Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp665 write16(ctx, loc, (read16(ctx, loc) & 0xff00) | ((val >> 1) & 0x00ff)); in relocate()
670 write16(ctx, loc, (read16(ctx, loc) & 0xf800) | ((val >> 1) & 0x07ff)); in relocate()
676 (read16(ctx, loc) & 0xfbc0) | // opcode cond in relocate()
694 bool isBlx = (read16(ctx, loc + 2) & 0x1000) == 0; in relocate()
704 write16(ctx, loc + 2, read16(ctx, loc + 2) & ~0x1000); in relocate()
706 write16(ctx, loc + 2, (read16(ctx, loc + 2) & ~0x1000) | 1 << 12); in relocate()
716 (read16(ctx, loc + 2) & 0xd000) | // opcode in relocate()
732 (read16(ctx, loc + 2) & 0xd000) | // opcode in relocate()
762 (read16(ctx, loc + 2) & 0x8f00) | // opcode in relocate()
775 (read16(ctx, loc + 2) & 0x8f00) | // opcode in relocate()
[all …]
H A DMips.cpp251 uint16_t instr = read16(ctx, loc); in writeMicroRelocation16()
447 return SignExtend64<8>(read16(ctx, buf) << 1); in getImplicitAddend()
449 return SignExtend64<11>(read16(ctx, buf) << 1); in getImplicitAddend()
H A DPPC64.cpp1290 write16(ctx, loc, (read16(ctx, loc) & mask) | lo(val)); in relocate()
1362 write16(ctx, loc, (read16(ctx, loc) & mask) | lo(val)); in relocate()
H A DAArch64.cpp280 return SignExtend64<16>(read16(ctx, 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.h406 [[nodiscard]] inline uint16_t read16(const void *P, endianness E) { in read16() function
416 template <endianness E> [[nodiscard]] inline uint16_t read16(const void *P) { in read16() function
427 return read16<llvm::endianness::little>(P); in read16le()
436 return read16<llvm::endianness::big>(P); in read16be()
/freebsd/sys/contrib/dev/rtw88/
H A Dhci.h29 u16 (*read16)(struct rtw_dev *rtwdev, u32 addr); member
109 return rtwdev->hci.ops->read16(rtwdev, addr); in rtw_read16()
H A Dsdio.c1177 .read16 = rtw_sdio_read16,
H A Dusb.c955 .read16 = rtw_usb_read16,
H A Dpci.c1688 .read16 = rtw_pci_read16,
/freebsd/contrib/llvm-project/lld/ELF/
H A DTarget.h301 inline uint16_t read16(Ctx &ctx, const void *p) { in read16() function
302 return llvm::support::endian::read16(p, ctx.arg.endianness); in read16()
H A DSyntheticSections.cpp611 return read16(ctx, buf); in readFdeAddr()
613 return (int16_t)read16(ctx, buf); in readFdeAddr()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp665 support::endian::read16(PltContents.data() + Byte, InstrEndianness); in findPltEntries()
669 uint32_t MovwPart2 = support::endian::read16( in findPltEntries()
678 uint32_t MovtPart1 = support::endian::read16( in findPltEntries()
683 uint32_t MovtPart2 = support::endian::read16( in findPltEntries()
/freebsd/crypto/krb5/src/lib/krb5/ccache/
H A Dcc_file.c177 read16(krb5_context context, FILE *fp, int version, uint16_t *out) in read16() function
408 if (read16(context, fp, version, &fields_len)) in read_header()
411 if (fields_len < 4 || read16(context, fp, version, &tag) || in read_header()
412 read16(context, fp, version, &flen) || flen > fields_len - 4) in read_header()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DOutputSections.cpp233 return support::endian::read16(getContents().data() + PatchOffset, in getIntVal()
/freebsd/sys/contrib/dev/rtw89/
H A Dusb.c838 .read16 = rtw89_usb_ops_read16,
H A Dcore.h3734 u16 (*read16)(struct rtw89_dev *rtwdev, u32 addr); member
6641 return rtwdev->hci.ops->read16(rtwdev, addr); in rtw89_read16()
H A Dpci.c4799 .read16 = rtw89_pci_ops_read16,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp2587 support::endian::read16(&Bytes[amdhsa::KERNEL_CODE_PROPERTIES_OFFSET], in decodeKernelDescriptor()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1433 << format_hex(support::endian::read16(Bytes.data() + Index, Endian), 6); in dumpARMELFData()