Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenTypes.cpp625 uint64_t atomicSize = Context.getTypeSize(Ty); in ConvertType() local
626 if (valueSize != atomicSize) { in ConvertType()
627 assert(valueSize < atomicSize); in ConvertType()
630 llvm::ArrayType::get(CGM.Int8Ty, (atomicSize - valueSize) / 8) in ConvertType()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenTypes.cpp763 uint64_t atomicSize = Context.getTypeSize(Ty); in ConvertType() local
764 if (valueSize != atomicSize) { in ConvertType()
765 assert(valueSize < atomicSize); in ConvertType()
768 llvm::ArrayType::get(CGM.Int8Ty, (atomicSize - valueSize) / 8) in ConvertType()
DSwiftCallingConv.cpp99 auto atomicSize = CGM.getContext().getTypeSizeInChars(atomicType); in addTypedData() local
105 auto atomicPadding = atomicSize - valueSize; in addTypedData()
107 addOpaqueData(begin + valueSize, begin + atomicSize); in addTypedData()