HomeSort by relevance Sort by last modified time
    Searched defs:NumRecords (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 300 /// NumRecords - The total number of records these blocks contain, and the
302 unsigned NumRecords, NumAbbreviatedRecords;
309 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
407 ++BlockStats.NumRecords;
571 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
572 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
576 errs() << " Num Records: " << Stats.NumRecords << "\n";
578 if (Stats.NumRecords) {
579 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 495 unsigned NumRecords = 0;
503 if (NumRecords != TypeList.size())
624 if (NumRecords >= TypeList.size())
628 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
631 TypeList[NumRecords] = 0;
653 if (NumRecords >= TypeList.size())
657 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
660 TypeList[NumRecords] = 0;
685 if (NumRecords >= TypeList.size())
688 assert(TypeList[NumRecords] == 0 && "Already read type?")
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 508 unsigned NumRecords = 0;
516 if (NumRecords != TypeList.size())
637 if (NumRecords >= TypeList.size())
641 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
644 TypeList[NumRecords] = 0;
666 if (NumRecords >= TypeList.size())
670 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
673 TypeList[NumRecords] = 0;
698 if (NumRecords >= TypeList.size())
701 assert(TypeList[NumRecords] == 0 && "Already read type?")
    [all...]

Completed in 93 milliseconds