Searched defs:sizeChars (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGAtomic.cpp678 CharUnits sizeChars, alignChars; local
679 std::tie(sizeChars, alignChars) = getContext().getTypeInfoInChars(AtomicTy);
680 uint64_t Size = sizeChars.getQuantity();
682 bool UseLibcall = (sizeChars != alignChars ||
683 getContext().toBits(sizeChars) > MaxInlineWidthInBits);
878 MemTy, E->getExprLoc(), sizeChars);
890 MemTy, E->getExprLoc(), sizeChars);
901 MemTy, E->getExprLoc(), sizeChars);
919 LoweredMemTy, E->getExprLoc(), sizeChars);
930 MemTy, E->getExprLoc(), sizeChars);
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp8687 CharUnits sizeChars = getTypeSizeInChars(AtomicTy); local
8688 uint64_t Size = sizeChars.getQuantity();
8692 return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);

Completed in 709 milliseconds