Searched refs:LineCol (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DDebugLoc.h35 DL.LineCol = 1;
43 DL.LineCol = 2;
47 /// LineCol - This 32-bit value encodes the line and column number for the
50 uint32_t LineCol; member in class:llvm::DebugLoc
56 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
73 return (LineCol << 8) >> 8; // Mask out column.
77 return LineCol >> 24;
98 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DDebugLoc.cpp84 Result.LineCol = Line | (Col << 24);
154 return static_cast<unsigned>(hash_combine(Key.LineCol, Key.ScopeIdx));

Completed in 99 milliseconds