HomeSort by: relevance | last modified time | path
    Searched refs:AlignmentValue (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
llvm-lipo.cpp 205 uint32_t AlignmentValue;
206 if (!to_integer<uint32_t>(Segalign->getValue(1), AlignmentValue, 16))
210 if (!isPowerOf2_32(AlignmentValue))
214 if (Log2_32(AlignmentValue) > MachOUniversalBinary::MaxSectionAlignment)
220 Log2_32(AlignmentValue));
225 Twine(AlignmentValue));
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 142 StructInfo(StringRef StructName, bool Union, unsigned AlignmentValue)
143 : Name(StructName), IsUnion(Union), Alignment(AlignmentValue) {}
4309 int64_t AlignmentValue = 1;
4312 parseAbsoluteExpression(AlignmentValue)) {
4316 if (!isPowerOf2_64(AlignmentValue)) {
4318 std::to_string(AlignmentValue));
4336 StructInProgress.emplace_back(Name, DirKind == DK_UNION, AlignmentValue);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 285 Value *AlignmentValue = CGF.EmitScalarExpr(AVAttr->getAlignment());
286 llvm::ConstantInt *AlignmentCI = cast<llvm::ConstantInt>(AlignmentValue);
CGBuiltin.cpp 2816 Value *AlignmentValue = EmitScalarExpr(E->getArg(1));
2817 ConstantInt *AlignmentCI = cast<ConstantInt>(AlignmentValue);

Completed in 43 milliseconds