HomeSort by: relevance | last modified time | path
    Searched defs:Position (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormattedStream.h 24 /// of line and column position, allowing padding out to specific column
36 /// Position - The current output column and line of the data that's
40 std::pair<unsigned, unsigned> Position;
57 /// current_pos - Return the current position within the stream,
60 // Our current position in the stream is all the contents which have been
61 // written to the underlying stream (*not* the current position of the
67 /// position after output. This is safe to call multiple times on the same
107 : TheStream(nullptr), Position(0, 0) {
110 explicit formatted_raw_ostream() : TheStream(nullptr), Position(0, 0) {
127 // Calculate current position, taking buffer contents into account
    [all...]
Path.h 57 size_t Position = 0; ///< The iterators current position within Path.
60 // An end iterator has Position = Path.size() + 1.
83 size_t Position = 0; ///< The iterators current position within Path.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
CodeRegionGenerator.cpp 82 unsigned Position = Comment.find_first_not_of(" \t");
83 if (Position >= Comment.size())
87 Comment = Comment.drop_front(Position);
90 Position = Comment.find_first_not_of(" \t");
91 if (Position < Comment.size())
92 Comment = Comment.drop_front(Position);
102 Position = Comment.find_first_not_of(" \t");
103 if (Position < Comment.size())
104 Comment = Comment.drop_front(Position);
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsfield.c 330 UINT64 Position;
362 Position = (UINT64) Info->FieldBitPosition +
365 if (Position > ACPI_UINT32_MAX)
372 Info->FieldBitPosition = (UINT32) Position;
487 /* Keep track of bit position for the next field */
489 Position = (UINT64) Info->FieldBitPosition +
492 if (Position > ACPI_UINT32_MAX)
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not supported.
275 public override long Position
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 200 char *Position;
216 Position = strrchr (NewFilename, '.');
218 if (Position && (Position > DirectoryPosition))
222 Position++;
223 *Position = 0;
224 strcat (Position, Suffix);
  /src/sys/external/bsd/gnu-efi/dist/lib/
init.c 119 UINTN Index, Position, Length;
148 for (Position=0; Position < Length; Position += ISO_639_2_ENTRY_SIZE) {
154 if (CompareMem (Languages+Position, LangCode, ISO_639_2_ENTRY_SIZE) == 0) {
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeEmitter.cpp 106 const int64_t Position = Code.size() + sizeof(Opcode) + sizeof(int32_t);
111 return It->second - Position;
115 LabelRelocs[Label].push_back(Position);
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not supported.
275 public override long Position
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not suppported.
275 public override long Position
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not suppported.
275 public override long Position
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not supported.
275 public override long Position
  /src/sys/external/bsd/acpica/dist/compiler/
cvcompiler.c 151 * retain it's position for stylistic reasons. If it doesn't,
388 char *Position;
405 Position = strrchr (NewFilename, '.');
407 if (Position && (Position > DirectoryPosition))
411 Position++;
412 *Position = 0;
413 strcat (Position, FILE_SUFFIX_DISASSEMBLY);
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahdecode.c 77 * CurrentPosition - Position on current line
81 * RETURN: Line position after field is written
94 UINT32 Position;
102 Position = CurrentPosition;
104 if (Position == 0)
107 Position = Indent;
114 Position += TokenLength;
118 if (Position > MaxPosition)
121 Position = TokenLength;
133 Position += TokenLength
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Speculation.h 49 auto Position = Maps.find(StubSymbol);
50 if (Position != Maps.end())
51 return Position->getSecond();
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 154 size_t Position = Comments.find('\n');
155 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
157 Comments = Comments.substr(Position+1);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h 156 // segment's Data location to get the element in the position of Offset.
377 // In-place construct at Position.
409 // In-place construct at Position.
426 auto Position = reinterpret_cast<T *>(AlignedOffset);
427 return *reinterpret_cast<T *>(Position);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
JSONCompilationDatabase.cpp 55 : Input(CommandLine), Position(Input.begin()-1) {}
72 if (*Position == '"') {
74 } else if (*Position == '\'') {
79 } while (*Position != ' ');
85 while (*Position != '"') {
87 String.push_back(*Position);
95 while (*Position != '\'') {
96 String.push_back(*Position);
105 String.push_back(*Position);
107 } while (*Position != ' ' && *Position != '"' && *Position != '\'')
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
RustDemangle.h 68 // Position in the input string.
69 size_t Position;
127 if (Error || Position >= Input.size())
130 return Input[Position];
134 if (Error || Position >= Input.size()) {
139 return Input[Position++];
143 if (Error || Position >= Input.size() || Input[Position] != Prefix)
146 Position += 1;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DbgEntityHistoryCalculator.cpp 45 // DBG_VALUEs between two real instructions at the same position. And a
54 // range. DBG_VALUEs at or after this position for
57 unsigned Position = 0;
60 InstNumberMap[&MI] = MI.isMetaInstruction() ? Position : ++Position;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 939 unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups, STI);
942 return Position + Size - 1;
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 72 unsigned Position;
121 IO.mapRequired("Position", P.Position);
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentParser.cpp 40 /// A position in \c Toks.
41 struct Position {
49 /// Current position in Toks.
50 Position Pos;
157 Position SavedPos = Pos;
190 Position SavedPos = Pos;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmStreamer.cpp 423 size_t Position = Comments.find('\n');
424 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
426 Comments = Comments.substr(Position+1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMemoryLegalizer.cpp 48 /// Position to insert a new instruction relative to an existing
50 enum class Position {
314 /// Inserts any necessary instructions at position \p Pos relative
326 Position Pos) const = 0;
328 /// Inserts any necessary instructions at position \p Pos relative to
336 Position Pos) const = 0;
338 /// Inserts any necessary instructions at position \p Pos relative to
348 Position Pos) const = 0;
396 Position Pos) const override;
401 Position Pos) const override
    [all...]

Completed in 26 milliseconds

1 2