/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_optimize.c | 354 printf("Optimize: End dead code removal.\n"); 371 END 379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator 406 return END; 428 return END; 590 printf("Optimize: End remove extra move use.\n"); 630 if (use == WRITE || use == END) 800 if (next_use == WRITE || next_use == END) { 831 printf("Optimize: End remove extra moves. %u instructions removed\n", rem); 843 GLuint Start, End; /** Start/end instruction numbers * 954 GLuint end = ic; local [all...] |
/external/clang/lib/Frontend/ |
VerifyDiagnosticConsumer.cpp | 71 } // End anonymous namespace. 148 // Send the diagnostic to the buffer, we will check it once we reach the end 209 : Begin(S.begin()), End(S.end()), C(Begin), P(Begin), PEnd(nullptr) {} 215 if (PEnd > End) 225 for (; P < End && P[0] >= '0' && P[0] <= '9'; ++P) { 240 P = std::search(C, End, S.begin(), S.end()); 242 if (P == End) 261 while (P < End) { [all...] |
/external/llvm/lib/CodeGen/ |
LiveInterval.cpp | 39 return end(); 44 if (Pos < I[Mid].end) 56 if (I == end()) { 102 const_iterator ie = end(); 104 const_iterator je = other.end(); 107 StartPos != other.end() && "Bogus start position hint!"); 114 if (StartPos != other.end() && StartPos->start <= i->start) { 115 assert(StartPos < other.end() && i < end()); 131 if (i->end > j->start [all...] |
StackColoring.cpp | 100 BitVector End; 146 /// Record the findings in the BEGIN and END vectors. 151 /// the slots, based on the BEGIN/END vectors. Set the LifetimeLIVE_IN and 175 } // end anonymous namespace 202 assert(BI != BlockLiveness.end() && "Block not found"); 210 DEBUG(dbgs()<<"END : {"); 211 for (unsigned i=0; i < BlockInfo.End.size(); ++i) 212 DEBUG(dbgs()<<BlockInfo.End.test(i)<<" "); 244 BlockInfo.End.resize(NumSlot); 269 // Allocas that start and end within a single block are handle [all...] |
SplitKit.h | 129 /// can create live ranges that end in mid-air. 379 /// enterIntvAtEnd - Enter the open interval at the end of MBB. 380 /// Use the open interval from the inserted copy to the MBB end. 388 void useIntv(SlotIndex Start, SlotIndex End); 391 /// Return the end of the live range. 395 /// Return the end of the live range. 400 /// Return the end of the live range. 409 /// The Start index should be a return value from a leaveIntv* call, and End 413 void overlapIntv(SlotIndex Start, SlotIndex End);
|
/external/mesa3d/src/mesa/program/ |
prog_optimize.c | 354 printf("Optimize: End dead code removal.\n"); 371 END 379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator 406 return END; 428 return END; 590 printf("Optimize: End remove extra move use.\n"); 630 if (use == WRITE || use == END) 800 if (next_use == WRITE || next_use == END) { 831 printf("Optimize: End remove extra moves. %u instructions removed\n", rem); 843 GLuint Start, End; /** Start/end instruction numbers * 954 GLuint end = ic; local [all...] |
/external/llvm/lib/Support/ |
YAMLParser.cpp | 209 StringRef::iterator End = Range.end(); 217 if (Position + 1 != End && 227 if (Position + 2 != End && 242 if (Position + 3 != End && 277 if (Current >= End) 278 Current = End - 1; 298 return StringRef(Current, End - Current); 308 return ::decodeUTF8(StringRef(Position, End - Position)); 435 /// @brief Scan a ] or } and generate the proper flow collection end token 1554 document_iterator Stream::end() { function in class:Stream [all...] |
/external/llvm/lib/Transforms/Utils/ |
IntegerDivision.cpp | 216 // | end | 220 BasicBlock *End = SpecialCases->splitBasicBlock(Builder.GetInsertPoint(), 221 "udiv-end"); 223 "udiv-loop-exit", F, End); 225 "udiv-do-while", F, End); 227 "udiv-preheader", F, End); 229 "udiv-bb1", F, End); 250 // ; br i1 %earlyRet, label %end, label %bb1 263 Builder.CreateCondBr(EarlyRet, End, BB1); 329 // ; br label %end [all...] |
/external/clang/lib/Tooling/ |
Refactoring.cpp | 130 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd); 131 if (Start.first != End.first) return -1; 133 End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, 135 return End.second - Start.second; 148 E = Replaces.end(); 165 E = Replaces.end(); 191 for (Replacements::const_iterator I = Replaces.begin(), E = Replaces.end(); 207 for (Replacements::iterator I = Replaces.begin(), E = Replaces.end(); I != E; 224 E = Replaces.end(); 241 std::sort(Replaces.begin(), Replaces.end()); [all...] |
/external/clang/tools/driver/ |
driver.cpp | 79 /// '+': Add FOO as a new argument at the end of the command line. 90 /// at the end of the command line. 110 OS << "### Adding argument " << Str << " at end\n"; 137 OS << "### Invalid X edit, end of command line!\n"; 154 OS << "### Adding argument " << Edit << " at end\n"; 179 const char *End = ::strchr(S, ' '); 180 if (!End) 181 End = S + strlen(S); 182 if (End != S) 183 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings) [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveInterval.h | 128 /// Return the end point of the last live range segment to interact with 131 /// The end point is an invalid SlotIndex only if the live range doesn't 134 /// The end point may be at or past the end of the instruction's basic 150 /// The start point is inclusive, the end point exclusive. These intervals 151 /// are rendered as [start,end). 154 SlotIndex end; // End point of the interval (exclusive) member in struct:llvm::LiveRange::Segment 160 : start(S), end(E), valno(V) { 166 return start <= I && I < end; [all...] |
/external/clang/lib/Basic/ |
VirtualFileSystem.cpp | 107 } // end anonymous namespace 168 } // end anonymous namespace 278 assert(CurrentFS != Overlays.overlays_end() && "incrementing past end"); 293 "incrementing past end"); 327 } // end anonymous namespace 384 iterator contents_end() { return Contents.end(); } 416 DirectoryEntry::iterator Current, End; 420 DirectoryEntry::iterator End, std::error_code &EC); 504 /// \brief Looks up the path <tt>[Start, End)</tt> in \p From, possibly 507 sys::path::const_iterator End, Entry *From) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporter.cpp | 109 // it to the end of the path. The entire path is processed in this way. 163 // want to keep once we are done, we will push it back on the end. 220 for (PathPieces::iterator I = Pieces.begin(), E = Pieces.end(); I != E; ++I) { 254 for (PathPieces::iterator I = Pieces.begin(), E = Pieces.end(); I != E;) { 264 const Stmt *End = CF->getEndLocation().asStmt(); 268 } else if (End && isa<CXXDefaultInitExpr>(End)) { 289 for (PathPieces::iterator I = Pieces.begin(), E = Pieces.end(); I != E;) { 361 } // end anonymous namespace 387 os << "Execution jumps to the end of the " 2268 const Stmt *end = getLocStmt(PieceI->getEndLocation()); local [all...] |
/art/compiler/utils/ |
scoped_arena_allocator.cc | 70 top_end_ = top_arena_->End(); 133 mark_end_ = arena_stack_->top_end_ = mark_arena_->End();
|
/art/runtime/ |
elf_file.h | 59 byte* End() const { 60 return map_->End();
|
/art/runtime/gc/space/ |
bump_pointer_space.h | 36 typedef void(*WalkCallback)(void *start, void *end, size_t num_bytes, void* callback_arg); 116 return Begin() == End(); 125 return byte_obj >= Begin() && byte_obj < End();
|
large_object_space.cc | 87 LargeObjectSpace::LargeObjectSpace(const std::string& name, byte* begin, byte* end) 90 total_objects_allocated_(0), begin_(begin), end_(end) { 144 if (UNLIKELY(found == mem_maps_.end())) { 160 CHECK(found != mem_maps_.end()) << "Attempted to get size of a large object which is not live"; 177 for (auto it = mem_maps_.begin(); it != mem_maps_.end(); ++it) { 179 callback(mem_map->Begin(), mem_map->End(), mem_map->Size(), arg); 188 return mem_maps_.find(const_cast<mirror::Object*>(obj)) != mem_maps_.end(); 191 return mem_maps_.find(const_cast<mirror::Object*>(obj)) != mem_maps_.end(); 264 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_->End())); 291 return new FreeListSpace(name, mem_map, mem_map->Begin(), mem_map->End()); [all...] |
/external/chromium_org/base/test/expectations/ |
parser.cc | 50 // the parser may be at the end of the input. 115 return SyntaxError("Expected ']' for end of modifiers list"); 149 return SkipWhitespace(&Parser::End); 152 Parser::StateFunc Parser::End() {
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_window_pos.spec | 112 Begin and End.
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/ |
omxSP_FFTInv_CCSToR_F32_Sfs_s.S | 123 B End 178 @// because the end of the "grpZeroSetLoop" loop inside 213 End: 227 .end
|
/external/clang/lib/Lex/ |
HeaderMap.cpp | 55 } // end namespace clang. 62 const char *S = Str.begin(), *End = Str.end(); 64 for (; S != End; S++) 171 // that the "string" can not overrun the end of the file, because the buffer 237 DestPath.append(Prefix.begin(), Prefix.end()); 238 DestPath.append(Suffix.begin(), Suffix.end());
|
/external/eigen/lapack/ |
dsecnd_NONE.f | 50 * End of DSECND 52 END
|
second_NONE.f | 50 * End of SECOND 52 END
|
/external/llvm/include/llvm/ADT/ |
SmallString.h | 31 SmallString(StringRef S) : SmallVector<char, InternalLen>(S.begin(), S.end()) {} 59 SmallVectorImpl<char>::append(RHS.begin(), RHS.end()); 65 SmallVectorImpl<char>::append(RHS.begin(), RHS.end()); 85 SmallVectorImpl<char>::append(RHS.begin(), RHS.end()); 90 SmallVectorImpl<char>::append(RHS.begin(), RHS.end()); 250 /// Return a reference to the substring from [Start, End). 256 /// \param End The index following the last character to include in the 260 StringRef slice(size_t Start, size_t End) const { 261 return str().slice(Start, End); 286 this->append(RHS.begin(), RHS.end()); [all...] |
/external/llvm/lib/Bitcode/Writer/ |
ValueEnumerator.h | 104 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); 114 assert(I != AttributeMap.end() && "Attribute not in ValueEnumerator!"); 121 assert(I != AttributeGroupMap.end() && "Attribute not in ValueEnumerator!"); 127 void getFunctionConstantRange(unsigned &Start, unsigned &End) const { 129 End = FirstInstID; 178 } // End llvm namespace
|