Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/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/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp852 unsigned TupleSize = OutArangesSection.getFormParams().AddrSize * 2; in emitAranges() local
853 unsigned Padding = offsetToAlignment(HeaderSize, Align(TupleSize)); in emitAranges()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp3537 unsigned TupleSize = PtrSize * 2; in emitDebugARanges() local
3541 Asm->getUnitLengthFieldByteSize() + ContentSize, Align(TupleSize)); in emitDebugARanges()
3544 ContentSize += (List.size() + 1) * TupleSize; in emitDebugARanges()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h720 typedef ::std::tuple_size<Tuple> TupleSize; typedef
726 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out); in Run()
733 *out++ = f(::std::get<TupleSize::value - kRemainingSize>(t)); in operator()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp1271 const llvm::APSInt &TupleSize) { in checkTupleLikeDecomposition() argument
1273 unsigned NumElems = (unsigned)TupleSize.getLimitedValue(UINT_MAX); in checkTupleLikeDecomposition()
1630 llvm::APSInt TupleSize(32); in CheckCompleteDecompositionDeclaration() local
1631 switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) { in CheckCompleteDecompositionDeclaration()
1637 if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize)) in CheckCompleteDecompositionDeclaration()
1679 llvm::APSInt TupleSize(Ctx.getTypeSize(Ctx.getSizeType())); in GetDecompositionElementCount() local
1680 switch (isTupleLike(*this, Loc, T, TupleSize)) { in GetDecompositionElementCount()
1684 return static_cast<unsigned>(TupleSize.getExtValue()); in GetDecompositionElementCount()