HomeSort by relevance Sort by last modified time
    Searched refs:NumLines (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/utils/count/
count.c 14 unsigned Count, NumLines, NumRead;
28 NumLines = 0;
36 ++NumLines;
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /external/swiftshader/third_party/LLVM/utils/count/
count.c 14 unsigned Count, NumLines, NumRead;
28 NumLines = 0;
36 ++NumLines;
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /external/llvm/tools/llvm-cov/
CoverageSummaryInfo.h 68 size_t NumLines;
71 : Covered(0), NotCovered(0), NonCodeLines(0), NumLines(0) {}
73 LineCoverageInfo(size_t Covered, size_t NumNonCodeLines, size_t NumLines)
74 : Covered(Covered), NotCovered(NumLines - NumNonCodeLines - Covered),
75 NonCodeLines(NumNonCodeLines), NumLines(NumLines) {}
81 NumLines += RHS.NumLines;
85 bool isFullyCovered() const { return Covered == (NumLines - NonCodeLines); }
88 if (NumLines - NonCodeLines == 0
    [all...]
CoverageSummaryInfo.cpp 33 size_t NumLines = 0, CoveredLines = 0;
65 NumLines += LineCount;
70 LineCoverageInfo(CoveredLines, 0, NumLines));
CoverageReport.cpp 161 (unsigned)Function.LineCoverage.NumLines);
  /external/compiler-rt/lib/esan/
working_set.cpp 89 SIZE_T NumLines = Size / LineSize +
94 while (I < NumLines && (uptr)Shadow % 4 != 0) {
105 while (I + 4 <= NumLines) {
112 while (I < NumLines) {
184 u32 NumLines = computeWorkingSizeAndReset(BitIdx);
186 SnapshotNum, BitIdx, Freq, NumLines);
187 SizePerFreq[BitIdx].push_back(NumLines);
  /external/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 41 BlockHeader->NumLines *
54 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
57 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
ModuleSubstream.h 39 support::ulittle32_t NumLines; // Number of lines
43 // LineNumberEntry Lines[NumLines];
44 // ColumnNumberEntry Columns[NumLines];
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
FileImage.c 212 UnicodeBuffer = CatSPrint(NULL, L"%d Lines Read", HBufferImage.NumLines);
270 UINTN NumLines;
326 NumLines = 0;
337 NumLines++;
382 Str = CatSPrint(NULL, L"%d Lines Wrote", NumLines);
HexEditorTypes.h 96 UINTN NumLines; // number of lines
MemImage.c 240 Str = CatSPrint(NULL, L"%d Lines Read", HBufferImage.NumLines);
BufferImage.c 192 NumLines
206 HBufferImage.NumLines = 0;
610 if (FRow > HBufferImage.NumLines || FColumn == 0) {
664 if (FRow > HBufferImage.NumLines || FColumn == 0) {
1033 NumLines
1058 HBufferImage.NumLines++;
    [all...]
DiskImage.c 278 Str = CatSPrint(NULL, L"%d Lines Read", HBufferImage.NumLines);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
TextEditorTypes.h 75 UINTN NumLines; // total line numbers
FileBuffer.c 315 if (FRow > FileBuffer.NumLines) {
355 if (FRow > FileBuffer.NumLines) {
403 NumLines
439 FileBuffer.NumLines = 0;
668 NumLines
706 FileBuffer.NumLines++;
1164 UnicodeBuffer = CatSPrint (NULL, L"%d Lines Read", FileBuffer.NumLines);
    [all...]
MainTextEditor.c 1124 if (Row > MainEditor.FileBuffer->NumLines || Row <= 0) {
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 191 mutable unsigned NumLines;
194 PreambleData() : File(nullptr), NumLines(0) { }
199 NumLines = 0;
202 void clear() { Buffer.clear(); File = nullptr; NumLines = 0; }
210 if (NumLines)
211 return NumLines;
213 return NumLines;
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 416 unsigned NumLines = C->getNumLines();
417 if (NumLines == 0)
421 for (unsigned i = 0; i != NumLines; ++i) {
423 if (i + 1 != NumLines)
790 unsigned NumLines = C->getNumLines();
791 if (NumLines == 0)
802 for (unsigned i = 0; i != NumLines; ++i) {
804 if (i + 1 != NumLines)
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 124 unsigned NumLines;
146 SourceLineCache(nullptr), NumLines(0), BufferOverridden(false),
164 NumLines = RHS.NumLines;
    [all...]
  /external/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 184 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd;
192 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
212 << ColumnStart << " -> " << (LineStart + NumLines) << ":"
223 LineStart + NumLines, ColumnEnd, Kind));
  /art/tools/
cpplint.py     [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]
  /tools/repohooks/tools/
cpplint.py     [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]

Completed in 1524 milliseconds

1 2