Home
last modified time | relevance | path

Searched refs:TupleSize (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp451 unsigned TupleSize = AddressSize * 2; in emitDwarfDebugArangesTable() local
452 unsigned Padding = offsetToAlignment(HeaderSize, Align(TupleSize)); in emitDwarfDebugArangesTable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp855 unsigned TupleSize = OutArangesSection.getFormParams().AddrSize * 2; in emitAranges() local
856 unsigned Padding = offsetToAlignment(HeaderSize, Align(TupleSize)); in emitAranges()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp3100 unsigned TupleSize = PtrSize * 2; in emitDebugARanges() local
3104 Asm->getUnitLengthFieldByteSize() + ContentSize, Align(TupleSize)); in emitDebugARanges()
3107 ContentSize += (List.size() + 1) * TupleSize; in emitDebugARanges()
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h708 typedef ::std::tuple_size<Tuple> TupleSize; typedef
714 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out); in Run()
721 *out++ = f(::std::get<TupleSize::value - kRemainingSize>(t)); in operator()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp1227 const llvm::APSInt &TupleSize) { in checkTupleLikeDecomposition() argument
1228 if ((int64_t)Bindings.size() != TupleSize) { in checkTupleLikeDecomposition()
1231 << (unsigned)TupleSize.getLimitedValue(UINT_MAX) in checkTupleLikeDecomposition()
1232 << toString(TupleSize, 10) << (TupleSize < Bindings.size()); in checkTupleLikeDecomposition()
1572 llvm::APSInt TupleSize(32); in CheckCompleteDecompositionDeclaration() local
1573 switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) { in CheckCompleteDecompositionDeclaration()
1579 if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize)) in CheckCompleteDecompositionDeclaration()