| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZLongBranch.cpp | 121 // Used to keep track of the current position while iterating over the blocks. 123 // The address that we assume this position has. 151 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block); 152 void skipTerminator(BlockPosition &Position, TerminatorInfo &Terminator, 177 // Position describes the state immediately before Block. Update Block 178 // accordingly and move Position to the end of the block's non-terminator 180 void SystemZLongBranch::skipNonTerminators(BlockPosition &Position, 182 if (Log2(Block.Alignment) > Position.KnownBits) { 185 Position.Address += 186 (Block.Alignment.value() - (uint64_t(1) << Position.KnownBits)) [all...] |
| /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/utilities/ |
| utascii.c | 88 * Position - Byte position (0-3) 104 UINT32 Position) 111 /* Allow a '!' in the last position */ 113 if (Character == '!' && Position == 3)
|
| uthex.c | 64 * Position - bit position of the digit within the 76 UINT32 Position) 80 AcpiUtShortShiftRight (Integer, Position, &Index);
|
| /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/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/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...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| YAMLParser.cpp | 199 StringRef::iterator Position= Range.begin(); 203 if (Position < End && (*Position & 0x80) == 0) { 204 return std::make_pair(*Position, 1); 208 if (Position + 1 < End && ((*Position & 0xE0) == 0xC0) && 209 ((*(Position + 1) & 0xC0) == 0x80)) { 210 uint32_t codepoint = ((*Position & 0x1F) << 6) | 211 (*(Position + 1) & 0x3F); 217 if (Position + 2 < End && ((*Position & 0xF0) == 0xE0) & [all...] |
| IntervalMap.cpp | 122 unsigned Position, bool Grow) { 124 assert(Position <= Elements && "Invalid position"); 135 if (PosPair.first == Nodes && Sum > Position) 136 PosPair = IdxPair(n, Position - (Sum - NewSize[n]));
|
| FormattedStream.cpp | 27 unsigned &Column = Position.first; 28 unsigned &Line = Position.second;
|
| Path.cpp | 94 // '/', it returns the position of the '/'. 112 // Returns the position of the root directory in str. If there is no root 134 // Returns the position past the end of the "parent path" of path. The parent 228 i.Position = 0; 236 i.Position = path.size(); 241 assert(Position < Path.size() && "Tried to increment past end!"); 243 // Increment Position to past the current component 244 Position += Component.size(); 247 if (Position == Path.size()) { 258 if (is_separator(Path[Position], S)) [all...] |
| /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/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/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...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| SnippetGenerator.h | 126 typename decltype(Range)::const_iterator Position; 128 // Rewind the tape, placing the position to again point at the beginning. 129 void rewind() { Position = Range.begin(); } 131 // Advance position forward, possibly wrapping to the beginning. 134 ++Position; 135 bool Wrapped = Position == Range.end(); 142 operator const value_type &() const { return *Position; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| RustDemangle.cpp | 102 Position = 0; 117 if (Position != Input.size()) 424 size_t Start = Position; 479 Position = Start; 651 if (Error || Bytes > Input.size() - Position) { 655 StringView S = Input.substr(Position, Bytes); 656 Position += Bytes; 759 size_t Start = Position; 786 size_t End = Position - 1;
|
| /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/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| LanaiInstrInfo.h | 50 void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator Position, 56 MachineBasicBlock::iterator Position, 63 MachineBasicBlock::iterator 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/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);
|
| aslresource.c | 481 * Position - Bit position within the flag byte 497 UINT8 Position, 505 *Flags |= (DefaultBit << Position); 511 *Flags |= (((UINT8) Op->Asl.Value.Integer) << Position); 520 UINT8 Position, 528 *Flags |= (DefaultBit << Position); 534 *Flags |= (((UINT16) Op->Asl.Value.Integer) << Position);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| Preprocessor.cpp | 400 // Find the byte position of the truncation point. 401 const char *Position = Buffer->getBufferStart(); 403 for (; *Position; ++Position) { 404 if (*Position != '\r' && *Position != '\n') 408 if ((Position[1] == '\r' || Position[1] == '\n') && 409 Position[0] != Position[1] [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| FormatString.h | 40 void setPosition(const char *position) { 41 assert(position); 43 this->position = position; 46 assert(position); 47 return position; 59 const char *position; member in class:clang::analyze_format_string::OptionalFlag 88 : Position(nullptr), kind(None) {} 90 : Position(pos), kind(k) {} 93 return Position; [all...] |
| /src/common/dist/zlib/contrib/delphi/ |
| ZLib.pas | 69 The Position property returns the number of uncompressed bytes of 102 backwards. The special case of setting the stream position to zero is 103 allowed. Seeking forward decompresses data until the requested position in 108 The Position property returns the number of bytes of uncompressed data that 393 FStrmPos := Strm.Position; 423 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; 448 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; 457 FStrmPos := FStrm.Position; [all...] |
| /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)
|