Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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.cpp102 auto valueSize = CGM.getContext().getTypeSizeInChars(valueType); in addTypedData() local
107 auto atomicPadding = atomicSize - valueSize; in addTypedData()
109 addOpaqueData(begin + valueSize, begin + atomicSize); in addTypedData()