HomeSort by relevance Sort by last modified time
    Searched refs:Pos (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/llvm/lib/CodeGen/
AllocationOrder.h 28 const unsigned *Pos;
50 if (!Pos) {
51 Pos = Begin;
56 while (Pos != End) {
57 unsigned Reg = *Pos++;
65 void rewind() { Pos = 0; }
BranchFolding.h 82 void setTailStartPos(MachineBasicBlock::iterator Pos) {
83 TailStartPos = Pos;
AllocationOrder.cpp 28 : Begin(0), End(0), Pos(0), RCI(RegClassInfo), OwnedBegin(false) {
  /external/icu4c/common/
ruleiter.h 46 ParsePosition& pos; member in class:RuleCharacterIterator
98 * @param pos upon input, the index of the next character to return. If a
99 * variable has been dereferenced, then pos will <em>not</em> increment as
103 ParsePosition& pos);
134 struct Pos : public UMemory {
137 int32_t pos; member in struct:RuleCharacterIterator::Pos
147 * RuleCharacterIterator::Pos pos;
148 * iterator.getPos(pos);
150 * iterator.getPos(pos);
    [all...]
ruleiter.cpp 25 pos(thePos),
32 return buf == 0 && pos.getIndex() == text.length();
47 UnicodeString name = sym->parseReference(text, pos, text.length());
89 void RuleCharacterIterator::getPos(RuleCharacterIterator::Pos& p) const {
91 p.pos = pos.getIndex();
95 void RuleCharacterIterator::setPos(const RuleCharacterIterator::Pos& p) {
97 pos.setIndex(p.pos);
118 text.extract(pos.getIndex(), maxLookAhead, result)
    [all...]
  /external/llvm/lib/Support/
FileUtilities.cpp 50 static const char *BackupNumber(const char *Pos, const char *FirstChar) {
52 if (!isNumberChar(*Pos)) return Pos;
56 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
58 if (Pos[-1] == '.') {
64 --Pos;
65 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1])
    [all...]
FoldingSet.cpp 103 unsigned Pos = 0;
109 Pos = (Units + 1) * 4;
115 for (Pos += 4; Pos <= Size; Pos += 4) {
116 unsigned V = ((unsigned char)String[Pos - 4] << 24) |
117 ((unsigned char)String[Pos - 3] << 16) |
118 ((unsigned char)String[Pos - 2] << 8) |
119 (unsigned char)String[Pos - 1];
124 for (Pos += 4; Pos <= Size; Pos += 4)
    [all...]
Triple.cpp 454 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
455 if (Found[Pos])
466 switch (Pos) {
493 if (Pos < Idx) {
499 // Insert the component being moved at Pos, displacing any existing
501 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
508 } else if (Pos > Idx) {
510 // reaches the target position Pos. For example, pc-a -> -pc-a whe
    [all...]
CommandLine.cpp 232 static bool CommaSeparateAndAddOccurence(Option *Handler, unsigned pos,
240 StringRef::size_type Pos = Val.find(',');
242 while (Pos != StringRef::npos) {
244 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
247 Val = Val.substr(Pos+1);
248 Value.substr(Pos+1); // Increment the original value pointer as well.
250 Pos = Val.find(',');
256 if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
444 size_t Pos = WorkStr.find_first_not_of(Delims)
    [all...]
StringRef.cpp 165 unsigned Len = Length-From, Pos = From;
167 if (substr(Pos, N).equals(Str)) // See if this is the correct substring.
168 return Pos;
171 uint8_t Skip = BadCharSkip[(uint8_t)(*this)[Pos+N-1]];
173 Pos += Skip;
  /external/mesa3d/src/mesa/program/
prog_uniform.h 53 GLint Pos;
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 272 char *CEnvBuf, *Pos;
291 Pos = CEnvBuf;
298 CEnv[I] = Pos;
299 memcpy(Pos, Name, NameLen);
300 Pos += NameLen;
301 *Pos++ = '=';
302 memcpy(Pos, Value, ValueLen);
303 Pos += ValueLen;
304 *Pos++ = '\0';
  /external/clang/include/clang/Sema/
IdentifierResolver.h 57 void InsertDecl(DeclsTy::iterator Pos, NamedDecl *D) {
58 Decls.insert(Pos, D);
176 void InsertDeclAfter(iterator Pos, NamedDecl *D);
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 197 unsigned Mask = 0, Pos = 3;
200 for (; MBBI != E && Pos &&
211 Mask |= (NCC & 1) << Pos;
228 --Pos;
232 Mask |= (1 << Pos);
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 248 llvm::DenseMap<const MacroInfo *, PPEntityID>::iterator Pos
250 if (Pos == MacroDefinitions.end())
253 PreprocessedEntity *Entity = getPreprocessedEntity(Pos->second);
284 llvm::DenseMap<const MacroInfo *, PPEntityID>::iterator Pos
286 if (Pos != MacroDefinitions.end())
287 MacroDefinitions.erase(Pos);
  /external/llvm/lib/MC/
SubtargetFeature.cpp 74 size_t Pos = 0;
77 size_t Comma = S.find(',', Pos);
81 V.push_back(S.substr(Pos));
85 V.push_back(S.substr(Pos, Comma - Pos));
87 Pos = Comma + 1;
  /external/clang/lib/Basic/
Diagnostic.cpp 147 DiagStatePointsTy::iterator Pos = DiagStatePoints.end();
151 Pos = std::upper_bound(DiagStatePoints.begin(), DiagStatePoints.end(),
153 --Pos;
154 return Pos;
207 DiagStatePointsTy::iterator Pos = GetDiagStatePointForLoc(Loc);
208 assert(Pos != DiagStatePoints.end());
212 I = Pos+1, E = DiagStatePoints.end(); I != E; ++I) {
217 if (Pos->Loc == Loc) {
224 Pos->Loc.isBeforeInTranslationUnitThan(Loc);
225 DiagStates.push_back(*Pos->State)
    [all...]
  /external/clang/lib/Sema/
IdentifierResolver.cpp 171 void IdentifierResolver::InsertDeclAfter(iterator Pos, NamedDecl *D) {
183 if (Pos == iterator()) {
203 if (Pos.isIterator()) {
204 IDI->InsertDecl(Pos.getIterator() + 1, D);
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 17 vector pos; member in struct:bnode
30 #define Pos(x) ((x)->pos)
  /external/clang/lib/AST/
CXXInheritance.cpp 631 Pos = Overriding.begin(), PosEnd = Overriding.end();
632 Pos != PosEnd;
634 if (!Pos->InVirtualSubobject) {
635 ++Pos;
649 if (Pos == OP)
653 const_cast<CXXRecordDecl *>(Pos->InVirtualSubobject)))
660 Pos = Overriding.erase(Pos);
663 ++Pos;
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 249 iterator advanceTo(iterator I, SlotIndex Pos) {
251 if (Pos >= endIndex())
253 while (I->end <= Pos) ++I;
258 /// Pos, or end(). This is the same as advanceTo(begin(), Pos), but faster
261 /// If Pos is contained in a LiveRange, that range is returned.
262 /// If Pos is in a hole, the following LiveRange is returned.
263 /// If Pos is beyond endIndex, end() is returned.
264 iterator find(SlotIndex Pos);
266 const_iterator find(SlotIndex Pos) const
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 345 PathDiagnosticLocation Pos;
347 PathDiagnosticSpotPiece(const PathDiagnosticLocation &pos,
351 : PathDiagnosticPiece(s, k), Pos(pos) {
352 assert(Pos.isValid() && Pos.asLocation().isValid() &&
354 if (addPosRange && Pos.hasRange()) addRange(Pos.asRange());
357 PathDiagnosticLocation getLocation() const { return Pos; }
358 virtual void flattenLocations() { Pos.flatten();
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 126 void setIVIncInsertPos(const Loop *L, Instruction *Pos) {
130 IVIncInsertPos = Pos;
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 153 unsigned Pos = 16 + Constraint * 4;
154 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 241 SourceLocation Pos) {
290 PP.Diag(Pos.getLocWithOffset(PH.C-PH.Begin),
299 PP.Diag(Pos.getLocWithOffset(PH.C-PH.Begin),
321 Directive *D = Directive::Create(RegexKind, Pos, Text, Count);
326 PP.Diag(Pos.getLocWithOffset(ContentBegin-PH.Begin),

Completed in 829 milliseconds

1 2 3 4