Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h221 std::optional<uint64_t> FirstByteOffset;
232 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
242 std::optional<uint64_t> FirstByteOffset = std::nullopt,
245 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
251 std::optional<uint64_t> FirstByteOffset = std::nullopt,
254 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp413 if (FB.FirstByteOffset) { in operator <<()
418 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
433 if (FB.FirstByteOffset) { in operator <<()
434 uint64_t Offset = *FB.FirstByteOffset; in operator <<()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp945 CharUnits getMemcpySize(uint64_t FirstByteOffset) const { in getMemcpySize()
953 FirstByteOffset + Ctx.getCharWidth() - 1; in getMemcpySize()
965 uint64_t FirstByteOffset; in emitMemcpy() local
972 FirstByteOffset = CGF.getContext().toBits(BFInfo.StorageOffset); in emitMemcpy()
974 FirstByteOffset = FirstFieldOffset; in emitMemcpy()
977 CharUnits MemcpySize = getMemcpySize(FirstByteOffset); in emitMemcpy()