Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp140 DWORD valueSize = 0; in readFullStringValue() local
144 &valueSize); in readFullStringValue()
145 if (result != ERROR_SUCCESS || type != REG_SZ || !valueSize) in readFullStringValue()
147 std::vector<BYTE> buffer(valueSize); in readFullStringValue()
149 &valueSize); in readFullStringValue()
152 valueSize / sizeof(wchar_t)); in readFullStringValue()
153 if (valueSize && WideValue.back() == L'\0') { in readFullStringValue()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenTypes.cpp802 uint64_t valueSize = Context.getTypeSize(valueType); in ConvertType() local
804 if (valueSize != atomicSize) { in ConvertType()
805 assert(valueSize < atomicSize); in ConvertType()
808 llvm::ArrayType::get(CGM.Int8Ty, (atomicSize - valueSize) / 8) in ConvertType()
H A DSwiftCallingConv.cpp101 auto valueSize = CGM.getContext().getTypeSizeInChars(valueType); in addTypedData() local
106 auto atomicPadding = atomicSize - valueSize; in addTypedData()
108 addOpaqueData(begin + valueSize, begin + atomicSize); in addTypedData()