| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | ExternalASTSource.h | 496 int Position; 507 iterator() : Self(0), Position(0) { } 509 iterator(LazyVector *Self, int Position) 510 : Self(Self), Position(Position) { } 513 if (Position < 0) 514 return Self->Loaded.end()[Position]; 515 return Self->Local[Position]; 519 if (Position < 0) 520 return &Self->Loaded.end()[Position]; 522 return &Self->Local[Position]; [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZLongBranch.cpp | 144 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block); 145 void skipTerminator(BlockPosition &Position, TerminatorInfo &Terminator, 176 void SystemZLongBranch::skipNonTerminators(BlockPosition &Position, in skipNonTerminators() argument 178 if (Block.Alignment > Position.KnownBits) { in skipNonTerminators() 181 Position.Address += ((uint64_t(1) << Block.Alignment) - in skipNonTerminators() 182 (uint64_t(1) << Position.KnownBits)); in skipNonTerminators() 183 Position.KnownBits = Block.Alignment; in skipNonTerminators() 188 Position.Address = (Position.Address + AlignMask) & ~AlignMask; in skipNonTerminators() 191 Block.Address = Position.Address; in skipNonTerminators() 194 Position.Address += Block.Size; in skipNonTerminators() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Lex/ |
| H A D | PreprocessingRecord.h | 397 int Position; variable 406 iterator() : Self(nullptr), Position(0) { } in iterator() 408 iterator(PreprocessingRecord *Self, int Position) in iterator() argument 409 : Self(Self), Position(Position) { } in iterator() 412 bool isLoaded = Position < 0; 414 Self->LoadedPreprocessedEntities.size() + Position : Position; 424 ++Position; 430 ++Position; 435 --Position; 441 --Position; [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 208 StringRef::iterator Position= Range.begin(); in decodeUTF8() local 212 if ((*Position & 0x80) == 0) { in decodeUTF8() 213 return std::make_pair(*Position, 1); in decodeUTF8() 217 if (Position + 1 != End && in decodeUTF8() 218 ((*Position & 0xE0) == 0xC0) && in decodeUTF8() 219 ((*(Position + 1) & 0xC0) == 0x80)) { in decodeUTF8() 220 uint32_t codepoint = ((*Position & 0x1F) << 6) | in decodeUTF8() 221 (*(Position + 1) & 0x3F); in decodeUTF8() 227 if (Position + 2 != End && in decodeUTF8() 228 ((*Position & 0xF0) == 0xE0) && in decodeUTF8() [all …]
|
| H A D | FormattedStream.cpp | 23 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) { in UpdatePosition() argument 24 unsigned &Column = Position.first; in UpdatePosition() 25 unsigned &Line = Position.second; in UpdatePosition() 54 UpdatePosition(Position, Scanned, Size - (Scanned - Ptr)); in ComputePosition() 56 UpdatePosition(Position, Ptr, Size); in ComputePosition()
|
| H A D | Path.cpp | 244 i.Position = 0; in begin() 251 i.Position = path.size(); in end() 256 assert(Position < Path.size() && "Tried to increment past end!"); in operator ++() 259 Position += Component.size(); in operator ++() 262 if (Position == Path.size()) { in operator ++() 275 if (is_separator(Path[Position])) { in operator ++() 283 Component = Path.substr(Position, 1); in operator ++() 288 while (Position != Path.size() && in operator ++() 289 is_separator(Path[Position])) { in operator ++() 290 ++Position; in operator ++() [all …]
|
| H A D | IntervalMap.cpp | 122 unsigned Position, bool Grow) { in distribute() argument 124 assert(Position <= Elements && "Invalid position"); in distribute() 135 if (PosPair.first == Nodes && Sum > Position) in distribute() 136 PosPair = IdxPair(n, Position - (Sum - NewSize[n])); in distribute()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Tooling/ |
| H A D | JSONCompilationDatabase.cpp | 34 : Input(CommandLine), Position(Input.begin()-1) {} in CommandLineArgumentParser() 51 if (*Position == '"') { in parseStringInto() 53 } else if (*Position == '\'') { in parseStringInto() 58 } while (*Position != ' '); in parseStringInto() 64 while (*Position != '"') { in parseDoubleQuotedStringInto() 66 String.push_back(*Position); in parseDoubleQuotedStringInto() 74 while (*Position != '\'') { in parseSingleQuotedStringInto() 75 String.push_back(*Position); in parseSingleQuotedStringInto() 84 String.push_back(*Position); in parseFreeStringInto() 86 } while (*Position != ' ' && *Position != '"' && *Position != '\''); in parseFreeStringInto() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/ |
| H A D | FormattedStream.h | 53 std::pair<unsigned, unsigned> Position; variable 88 : raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) { in raw_ostream() 92 : raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) { in formatted_raw_ostream() 128 unsigned getColumn() { return Position.first; } in getColumn() 131 unsigned getLine() { return Position.second; } in getLine()
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/ |
| H A D | 2008-02-27-DeadSlotElimBug.ll | 3 %struct.CompAtom = type <{ %struct.Position, float, i32 }> 4 … = type { %struct.Position, %struct.Position, %struct.Position, %struct.Position, %struct.Position… 5 %struct.Position = type { double, double, double }
|
| /minix3/external/bsd/llvm/dist/clang/lib/Tooling/Core/ |
| H A D | Replacement.cpp | 146 unsigned shiftedCodePosition(const Replacements &Replaces, unsigned Position) { in shiftedCodePosition() argument 147 unsigned NewPosition = Position; in shiftedCodePosition() 150 if (I->getOffset() >= Position) in shiftedCodePosition() 152 if (I->getOffset() + I->getLength() > Position) in shiftedCodePosition() 153 NewPosition += I->getOffset() + I->getLength() - Position; in shiftedCodePosition() 162 unsigned Position) { in shiftedCodePosition() argument 163 unsigned NewPosition = Position; in shiftedCodePosition() 167 if (I->getOffset() >= Position) in shiftedCodePosition() 169 if (I->getOffset() + I->getLength() > Position) in shiftedCodePosition() 170 NewPosition += I->getOffset() + I->getLength() - Position; in shiftedCodePosition()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Lex/ |
| H A D | Preprocessor.cpp | 371 const char *Position = Buffer->getBufferStart(); in SetCodeCompletionPoint() local 373 for (; *Position; ++Position) { in SetCodeCompletionPoint() 374 if (*Position != '\r' && *Position != '\n') in SetCodeCompletionPoint() 378 if ((Position[1] == '\r' || Position[1] == '\n') && in SetCodeCompletionPoint() 379 Position[0] != Position[1]) in SetCodeCompletionPoint() 380 ++Position; in SetCodeCompletionPoint() 381 ++Position; in SetCodeCompletionPoint() 386 Position += CompleteColumn - 1; in SetCodeCompletionPoint() 392 if (Position - Buffer->getBufferStart() < SkipMainFilePreamble.first) in SetCodeCompletionPoint() 393 Position = Buffer->getBufferStart() + SkipMainFilePreamble.first; in SetCodeCompletionPoint() [all …]
|
| /minix3/share/locale/monetary/ |
| H A D | kk_KZ.PT154.src | 68 # Positive Sign Position (p_sign_posn) 73 # Negative Sign Position (n_sign_posn) 100 # International Positive Sign Position (int_p_sign_posn) 105 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | mn_MN.UTF-8.src | 68 # Positive Sign Position (p_sign_posn) 73 # Negative Sign Position (n_sign_posn) 100 # International Positive Sign Position (int_p_sign_posn) 105 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | he_IL.UTF-8.src | 68 # Positive Sign Position (p_sign_posn) 73 # Negative Sign Position (n_sign_posn) 100 # International Positive Sign Position (int_p_sign_posn) 105 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | de_CH.UTF-8.src | 88 # Positive Sign Position (p_sign_posn) 93 # Negative Sign Position (n_sign_posn) 121 # International Positive Sign Position (int_p_sign_posn) 126 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | el_GR.UTF-8.src | 88 # Positive Sign Position (p_sign_posn) 93 # Negative Sign Position (n_sign_posn) 121 # International Positive Sign Position (int_p_sign_posn) 126 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | hy_AM.UTF-8.src | 88 # Positive Sign Position (p_sign_posn) 93 # Negative Sign Position (n_sign_posn) 121 # International Positive Sign Position (int_p_sign_posn) 126 # International Negative Sign Position (int_n_sign_posn)
|
| /minix3/minix/drivers/power/acpi/utilities/ |
| H A D | uthex.c | 76 UINT32 Position) in AcpiUtHexToAsciiChar() argument 79 return (AcpiGbl_HexToAscii[(Integer >> Position) & 0xF]); in AcpiUtHexToAsciiChar()
|
| /minix3/minix/drivers/power/acpi/include/ |
| H A D | acmacros.h | 290 #define ACPI_GET_BITS(SourcePtr, Position, Mask) \ argument 291 ((*SourcePtr >> Position) & Mask) 293 #define ACPI_SET_BITS(TargetPtr, Position, Mask, Value) \ argument 294 (*TargetPtr |= ((Value & Mask) << Position)) 316 #define ACPI_EXTRACT_1BIT_FLAG(Field, Position) (ACPI_GET_1BIT_FLAG ((Field) >> Position)) argument 317 #define ACPI_EXTRACT_2BIT_FLAG(Field, Position) (ACPI_GET_2BIT_FLAG ((Field) >> Position)) argument 318 #define ACPI_EXTRACT_3BIT_FLAG(Field, Position) (ACPI_GET_3BIT_FLAG ((Field) >> Position)) argument 319 #define ACPI_EXTRACT_4BIT_FLAG(Field, Position) (ACPI_GET_4BIT_FLAG ((Field) >> Position)) argument
|
| /minix3/common/dist/zlib/contrib/delphi/ |
| H A D | ZLib.pas | 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; 502 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; 514 FStrmPos := FStrm.Position; 537 FStrm.Position := 0;
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| H A D | FormatString.h | 87 : Position(nullptr), kind(None) {} in LengthModifier() 89 : Position(pos), kind(k) {} in LengthModifier() 92 return Position; in getStart() 116 const char *Position; 175 : IsPrintf(isPrintf), Position(nullptr), EndScanList(nullptr), in IsPrintf() 179 : IsPrintf(isPrintf), Position(pos), EndScanList(nullptr), kind(k) {} in ConversionSpecifier() 182 return Position; in getStart() 204 return EndScanList ? EndScanList - Position : 1; in getLength() 218 const char *Position; variable
|
| /minix3/external/bsd/llvm/dist/clang/tools/clang-format-vs/ClangFormat/ |
| H A D | ClangFormatPackage.cs | 87 int start = view.Selection.Start.Position.GetContainingLine().Start.Position; in MenuItemCallback() 88 int end = view.Selection.End.Position.GetContainingLine().End.Position; in MenuItemCallback()
|
| /minix3/share/locale/monetary/converted/ |
| H A D | zh_HK.Big5hkscs.src | 88 # Positive Sign Position (p_sign_posn) 93 # Negative Sign Position (n_sign_posn) 121 # International Positive Sign Position (int_p_sign_posn) 126 # International Negative Sign Position (int_n_sign_posn)
|
| H A D | nl_BE.ISO8859-15.src | 88 # Positive Sign Position (p_sign_posn) 93 # Negative Sign Position (n_sign_posn) 121 # International Positive Sign Position (int_p_sign_posn) 126 # International Negative Sign Position (int_n_sign_posn)
|