Searched refs:ByteIndex (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | GOFF.h | 58 static void getBits(const uint8_t *Bytes, uint8_t ByteIndex, uint8_t BitIndex, in getBits() argument 60 assert(ByteIndex < GOFF::RecordLength && "Byte index out of bounds!"); in getBits() 64 get<uint8_t>(Bytes, ByteIndex, Value); in getBits() 69 static void get(const uint8_t *Bytes, uint8_t ByteIndex, T &Value) { in get() argument 70 assert(ByteIndex + sizeof(T) <= GOFF::RecordLength && in get() 72 Value = support::endian::read<T, llvm::endianness::big>(&Bytes[ByteIndex]); in get()
|
/freebsd/sys/contrib/dev/acpica/common/ |
H A D | dmrestag.c | 711 UINT32 ByteIndex = ACPI_DIV_8 (BitIndex); in AcpiDmGetResourceNode() local 729 if ((ByteIndex >= Node->Value) && in AcpiDmGetResourceNode() 730 (ByteIndex < (Node->Value + Node->Length))) in AcpiDmGetResourceNode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600ISelLowering.cpp | 1163 SDValue ByteIndex = DAG.getNode(ISD::AND, DL, PtrVT, Ptr, in LowerSTORE() local 1165 SDValue BitShift = DAG.getNode(ISD::SHL, DL, VT, ByteIndex, in LowerSTORE()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 2320 uint64_t ByteIndex = M == -1 ? J : (uint64_t)M * LaneBytes + J; in LowerVECTOR_SHUFFLE() local 2321 Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32); in LowerVECTOR_SHUFFLE()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 1272 Value *ByteIndex = CGF.Builder.CreateAShr( in EmitBitTestIntrinsic() local 1276 ByteIndex, "bittest.byteaddr"), in EmitBitTestIntrinsic()
|