Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/DWARFLinker/
DDWARFStreamer.cpp352 unsigned TupleSize = AddressSize * 2; in emitUnitRangesEntries() local
353 unsigned Padding = offsetToAlignment(HeaderSize, Align(TupleSize)); in emitUnitRangesEntries()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp1644 unsigned TupleSize = PtrSize * 2; in emitDebugARanges() local
1648 OffsetToAlignment(sizeof(int32_t) + ContentSize, TupleSize); in emitDebugARanges()
1651 ContentSize += (List.size() + 1) * TupleSize; in emitDebugARanges()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp2658 unsigned TupleSize = PtrSize * 2; in emitDebugARanges() local
2662 offsetToAlignment(sizeof(int32_t) + ContentSize, Align(TupleSize)); in emitDebugARanges()
2665 ContentSize += (List.size() + 1) * TupleSize; in emitDebugARanges()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp2871 unsigned TupleSize = PtrSize * 2; in emitDebugARanges() local
2875 Asm->getUnitLengthFieldByteSize() + ContentSize, Align(TupleSize)); in emitDebugARanges()
2878 ContentSize += (List.size() + 1) * TupleSize; in emitDebugARanges()
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h826 typedef ::testing::tuple_size<Tuple> TupleSize; typedef
832 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out); in Run()
839 *out++ = f(::testing::get<TupleSize::value - kRemainingSize>(t)); in operator()
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h707 typedef ::std::tuple_size<Tuple> TupleSize; typedef
713 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out); in Run()
720 *out++ = f(::std::get<TupleSize::value - kRemainingSize>(t)); in operator()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp785 unsigned TupleSize = AddressSize * 2; in emitUnitRangesEntries() local
786 unsigned Padding = OffsetToAlignment(HeaderSize, TupleSize); in emitUnitRangesEntries()
/external/llvm-project/clang/lib/Sema/
DSemaDeclCXX.cpp1148 const llvm::APSInt &TupleSize) { in checkTupleLikeDecomposition() argument
1149 if ((int64_t)Bindings.size() != TupleSize) { in checkTupleLikeDecomposition()
1151 << DecompType << (unsigned)Bindings.size() << TupleSize.toString(10) in checkTupleLikeDecomposition()
1152 << (TupleSize < Bindings.size()); in checkTupleLikeDecomposition()
1492 llvm::APSInt TupleSize(32); in CheckCompleteDecompositionDeclaration() local
1493 switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) { in CheckCompleteDecompositionDeclaration()
1499 if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize)) in CheckCompleteDecompositionDeclaration()
/external/fmtlib/test/gmock/
Dgmock.h5462 typedef typename ::std::tr1::tuple_size<Tuple> TupleSize;
5468 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out);
5475 *out++ = f(::std::tr1::get<TupleSize::value - kRemainingSize>(t));
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/gmock-1.8.0/gmock/
Dgmock.h5643 typedef ::testing::tuple_size<Tuple> TupleSize;
5649 return IterateOverTuple<Tuple, TupleSize::value>()(f, t, out);
5656 *out++ = f(::testing::get<TupleSize::value - kRemainingSize>(t));