Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A Draw_ostream.cpp412 if (FB.FirstByteOffset.hasValue()) { in operator <<()
417 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
432 if (FB.FirstByteOffset.hasValue()) { in operator <<()
433 uint64_t Offset = FB.FirstByteOffset.getValue(); in operator <<()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGClass.cpp944 CharUnits getMemcpySize(uint64_t FirstByteOffset) const { in getMemcpySize()
952 FirstByteOffset + Ctx.getCharWidth() - 1; in getMemcpySize()
964 uint64_t FirstByteOffset; in emitMemcpy() local
971 FirstByteOffset = CGF.getContext().toBits(BFInfo.StorageOffset); in emitMemcpy()
973 FirstByteOffset = FirstFieldOffset; in emitMemcpy()
976 CharUnits MemcpySize = getMemcpySize(FirstByteOffset); in emitMemcpy()