Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DFormat.h219 std::optional<uint64_t> FirstByteOffset;
230 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
240 std::optional<uint64_t> FirstByteOffset = std::nullopt,
243 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
249 std::optional<uint64_t> FirstByteOffset = std::nullopt,
252 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A Draw_ostream.cpp418 if (FB.FirstByteOffset) { in operator <<()
423 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
438 if (FB.FirstByteOffset) { in operator <<()
439 uint64_t Offset = *FB.FirstByteOffset; in operator <<()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGClass.cpp943 CharUnits getMemcpySize(uint64_t FirstByteOffset) const { in getMemcpySize()
951 FirstByteOffset + Ctx.getCharWidth() - 1; in getMemcpySize()
963 uint64_t FirstByteOffset; in emitMemcpy() local
970 FirstByteOffset = CGF.getContext().toBits(BFInfo.StorageOffset); in emitMemcpy()
972 FirstByteOffset = FirstFieldOffset; in emitMemcpy()
975 CharUnits MemcpySize = getMemcpySize(FirstByteOffset); in emitMemcpy()