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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugInfoEntry.cpp 50 if (Optional<size_t> FixedSize = AbbrevDecl->getFixedAttributesByteSize(U)) {
51 *OffsetPtr += *FixedSize;
58 if (auto FixedSize = AttrSpec.getByteSize(U)) {
60 *OffsetPtr += *FixedSize;
DWARFAbbreviationDeclaration.cpp 166 if (auto FixedSize = AttributeSpecs[CurAttrIdx].getByteSize(U))
167 Offset += *FixedSize;
DWARFFormValue.cpp 172 if (Optional<uint8_t> FixedSize =
174 *OffsetPtr += *FixedSize;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 376 static const unsigned char FixedSize[] = { 8, 16, 32, 64, 32, 64 };
379 return FixedSize[i-1];
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 436 if (Optional<uint8_t> FixedSize = dwarf::getFixedFormByteSize(Form, Params))
437 return *FixedSize;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 774 unsigned FixedSize = ElementCount * SEW;
778 } else if (FixedSize < 64) {
781 LMUL = 64 / FixedSize;
783 LMUL = FixedSize / 64;

Completed in 36 milliseconds