Home
last modified time | relevance | path

Searched refs:FirstByteOffset (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormat.h219 Optional<uint64_t> FirstByteOffset;
230 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
239 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
242 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
248 Optional<uint64_t> FirstByteOffset = None,
251 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
/llvm-project-15.0.7/llvm/lib/Support/
H A Draw_ostream.cpp411 if (FB.FirstByteOffset) { in operator <<()
416 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
431 if (FB.FirstByteOffset) { in operator <<()
432 uint64_t Offset = FB.FirstByteOffset.value(); in operator <<()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGClass.cpp942 CharUnits getMemcpySize(uint64_t FirstByteOffset) const { in getMemcpySize()
950 FirstByteOffset + Ctx.getCharWidth() - 1; in getMemcpySize()
962 uint64_t FirstByteOffset; in emitMemcpy() local
969 FirstByteOffset = CGF.getContext().toBits(BFInfo.StorageOffset); in emitMemcpy()
971 FirstByteOffset = FirstFieldOffset; in emitMemcpy()
974 CharUnits MemcpySize = getMemcpySize(FirstByteOffset); in emitMemcpy()