HomeSort by: relevance | last modified time | path
    Searched defs:Line (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_powerpc64.cc 38 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
39 asm volatile("dcbf 0, %0" : : "r"(Line));
42 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
43 asm volatile("icbi 0, %0" : : "r"(Line));
xray_x86_64.cc 58 char Line[BufSize] = {};
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
66 long long Tmp = internal_simple_strtoll(Line, &End, 10);
68 if (Line[0] != '\0' && (*End == '\n' || *End == '\0')) {
  /src/sys/external/bsd/acpica/dist/compiler/
dtutils.c 189 UINT32 Line = 0;
196 Line = FieldObject->Line;
202 Line, Level, MessageId))
210 FieldObject->Line,
211 FieldObject->Line,
266 FieldObject->Line,
267 FieldObject->Line,
dtcompiler.h 175 /* Types for individual fields (one per input line) */
200 UINT32 Line; /* Line number for this field */
219 UINT32 Line; /* Line number for this field */
458 UINT32 Line,
asltypes.h 253 UINT32 Line;
391 * An entry in the line-based expected messages list
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 44 // file2 # One file name per line.
52 std::string Line;
55 if (!std::getline(IS, Line, '\n')) return false;
56 std::istringstream L1(Line);
62 if (!std::getline(IS, Line, '\n')) return false;
63 std::istringstream L2(Line);
79 while (std::getline(IS, Line, '\n')) {
80 std::istringstream ISS1(Line);
190 std::string Line, Tmp;
192 while (std::getline(IS, Line, '\n'))
    [all...]
FuzzerTracePC.cpp 355 size_t Line = std::stoul(LineStr);
363 Printf(" %s %s:%zd\n", FunctionStr.c_str(), FileStr.c_str(), Line);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.h 47 u32 Line;
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
53 : Filename(Filename), Line(Line), Column(Column) {}
64 return SourceLocation(Filename, Line, OldColumn);
75 /// \brief Get the presumed line number.
76 unsigned getLine() const { return Line; }
77 /// \brief Get the column within the presumed line.

Completed in 34 milliseconds