/art/runtime/ |
mem_map.h | 117 // Resize the mem-map by unmapping pages at the end. Currently only supports shrinking. 120 uint8_t* End() const { 137 return Begin() <= addr && addr < End(); 140 // Unmap the pages at end and remap them to create another memory map.
|
elf_file_impl.h | 64 uint8_t* End() const { 65 return map_->End();
|
/external/clang/include/clang/AST/ |
DeclLookups.h | 27 StoredDeclsMap::iterator It, End; 37 StoredDeclsMap::iterator End) 38 : It(It), End(End) {} 51 } while (It != End && 76 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()), 77 all_lookups_iterator(Map->end(), Map->end())); 89 return lookups().end(); 95 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()), [all...] |
/external/clang/tools/clang-format/ |
ClangFormat.cpp | 50 "-length, clang-format will format up to the end\n" 55 LineRanges("lines", cl::desc("<start line>:<end line> - format a range of\n" 115 // Parses <start line>:<end line> input to a pair of line numbers. 136 llvm::errs() << "error: invalid <start line>:<end line> pair\n"; 140 llvm::errs() << "error: start line should be less than end line\n"; 144 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX); 145 if (Start.isInvalid() || End.isInvalid()) 147 Ranges.push_back(CharSourceRange::getCharRange(Start, End)); 168 SourceLocation End; 176 End = Start.getLocWithOffset(Lengths[i]) [all...] |
/external/google-breakpad/src/common/ |
dwarf_cfi_to_module.cc | 263 bool DwarfCFIToModule::End() {
|
/external/llvm/include/llvm/MC/ |
MCWinEH.h | 35 const MCSymbol *End; 49 : Begin(nullptr), End(nullptr), ExceptionHandler(nullptr), 54 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr), 60 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RTDyldMemoryManager.cpp | 103 const char *End = P + Size; 106 } while(P != End); 113 const char *End = P + Size; 116 } while(P != End); 127 // How can it find the end? Because crtendS.o is linked
|
/external/llvm/lib/IR/ |
Dominators.cpp | 46 if (TI->getSuccessor(i) == End) 154 const BasicBlock *End = BBE.getEnd(); 155 if (!dominates(End, UseBB)) 158 // Simple case: if the end BB has a single predecessor, the fact that it 160 if (End->getSinglePredecessor()) 183 for (const_pred_iterator PI = pred_begin(End), E = pred_end(End); 189 if (!dominates(End, BB)) 202 // A PHI in the end of the edge is dominated by it. 224 // happening at the end of the predecessor block [all...] |
/external/v8/src/compiler/ |
control-builders.cc | 29 void IfBuilder::End() { 73 control_if.End();
|
/external/webp/src/utils/ |
thread.h | 73 void (*End)(WebPWorker* const worker);
|
/art/compiler/utils/ |
swap_space.h | 42 uintptr_t End() const {
|
/art/runtime/gc/accounting/ |
atomic_stack.h | 167 StackReference<T>* End() const { 185 std::sort(Begin(), End(), ObjectComparator()); 195 return std::binary_search(Begin(), End(), value, ObjectComparator()); 199 for (auto cur = Begin(), end = End(); cur != end; ++cur) {
|
/external/clang/lib/Lex/ |
HeaderMap.cpp | 55 } // end namespace clang. 62 const char *S = Str.begin(), *End = Str.end(); 64 for (; S != End; S++) 167 // that the "string" can not overrun the end of the file, because the buffer 233 DestPath.append(Prefix.begin(), Prefix.end()); 234 DestPath.append(Suffix.begin(), Suffix.end());
|
/external/clang/lib/Tooling/Core/ |
Replacement.cpp | 131 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd); 132 if (Start.first != End.first) return -1; 134 End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, 136 return End.second - Start.second; 148 for (Replacements::iterator I = Replaces.begin(), E = Replaces.end(); I != E; 165 E = Replaces.end(); 197 std::sort(Replaces.begin(), Replaces.end(), LessNoPath); 198 Replaces.erase(std::unique(Replaces.begin(), Replaces.end(), EqualNoPath), 199 Replaces.end()); 231 E = Replaces.end(); [all...] |
/external/clang/unittests/Tooling/ |
CommentHandlerTest.cpp | 92 CommentList::const_iterator End; 97 : Current(Comments.begin()), End(Comments.end()), PP(PP) 101 if (Current != End) { 102 EXPECT_TRUE(Current == End) << "Unexpected comment \"" 109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found"; 110 if (Current == End) return; 221 } // end namespace clang
|
/external/deqp/framework/common/ |
tcuThreadUtil.cpp | 159 const MessageBuilder::EndToken Message::End = MessageBuilder::EndToken(); 214 newMessage() << "tcu::NotSupportedError '" << e.what() << "'" << Message::End; 220 newMessage() << "tcu::Exception '" << e.what() << "'" << Message::End; 226 newMessage() << "std::exception '" << error.what() << "'" << Message::End; 232 newMessage() << "Unkown exception" << Message::End; 287 thread.newMessage() << "Begin -- CompareData" << Message::End; 294 thread.newMessage() << "CompareData failed at offset :" << byteNdx << Message::End; 300 thread.newMessage() << "CompareData passed" << Message::End; 304 thread.newMessage() << "End -- CompareData" << Message::End; [all...] |
/external/libvpx/libvpx/test/ |
vp9_thread_test.cc | 35 vp9_get_worker_interface()->end(&worker_); 129 vp9_get_worker_interface()->end(&workers[n]); 146 case 5: winterface.end = NULL; break; 214 void End(VP9Worker *const /*worker*/) {} 220 impl::Init, impl::Reset, impl::Sync, impl::Launch, impl::Execute, impl::End
|
/external/llvm/include/llvm/ADT/ |
SmallPtrSet.h | 150 const void *const *End; 153 : Bucket(BP), End(E) { 166 /// that is. This is guaranteed to stop because the end() bucket is marked 169 assert(Bucket <= End); 170 while (Bucket != End && 195 assert(Bucket < End); 289 inline iterator end() const {
|
/external/llvm/include/llvm/IR/ |
Dominators.h | 56 const BasicBlock *End; 59 Start(Start_), End(End_) { } 64 return End; 140 return N->end(); 233 } // End llvm namespace
|
/external/llvm/lib/Analysis/ |
TargetLibraryInfo.cpp | 385 std::move(std::begin(TLI.AvailableArray), std::end(TLI.AvailableArray), 399 std::move(std::begin(TLI.AvailableArray), std::end(TLI.AvailableArray), 418 const char *const *End = &StandardNames[LibFunc::NumLibFuncs]; 425 Start, End, funcName, [](const char *LHS, StringRef RHS) { 428 if (I != End && *I == funcName) { 458 VectorDescs.insert(VectorDescs.end(), Fns.begin(), Fns.end()); 459 std::sort(VectorDescs.begin(), VectorDescs.end(), compareByScalarFnName); 461 ScalarDescs.insert(ScalarDescs.end(), Fns.begin(), Fns.end()); [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
WinCodeViewLineTables.h | 37 // to the end of the function. 40 MCSymbol *End; 41 FunctionInfo() : End(nullptr) {} 120 E = DirAndFilenameToFilepathMap.end(); 139 /// \brief Process end of an instruction. 142 } // End of namespace llvm
|
/external/llvm/lib/CodeGen/ |
LiveInterval.cpp | 66 if (I == segments().end()) { 100 if (I->end <= StartIdx) 102 if (I->end < Use) 108 /// by I to end at the specified endpoint. To do this, we should 112 assert(I != segments().end() && "Not a valid segment!"); 118 for (; MergeTo != segments().end() && NewEnd >= MergeTo->end; ++MergeTo) 122 S->end = std::max(NewEnd, std::prev(MergeTo)->end); 126 if (MergeTo != segments().end() && MergeTo->start <= I->end & [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
ScheduleDAGSDNodes.cpp | 147 MachineSDNode::mmo_iterator Begin = nullptr, End = nullptr; 153 End = MN->memoperands_end(); 160 MN->setMemRefs(Begin, End); 246 std::sort(Offsets.begin(), Offsets.end()); 452 --NumUsed; // Skip over unused values at the end. 762 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end(); 768 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late"); 772 EE = SU->Succs.end(); II != EE; ++II) { 862 std::sort(Orders.begin(), Orders.end(), less_first()); [all...] |
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
IntelJITEventListener.cpp | 137 DILineInfoTable::iterator End = Lines.end(); 138 for (DILineInfoTable::iterator It = Begin; It != End; ++It) { 151 // as the end of the corresponding code region. The start of the code 187 if (DebugObjects.find(Obj.getData().data()) == DebugObjects.end()) 196 if (OI == LoadedObjectMap.end()) 202 FE = Functions.end(); 207 if (MI != MethodIDs.end()) {
|
/external/llvm/lib/Passes/ |
PassBuilder.cpp | 96 } // End anonymous namespace. 231 size_t End = PipelineText.find_first_of(",)"); 232 if (!parseFunctionPassName(FPM, PipelineText.substr(0, End))) 237 PipelineText = PipelineText.substr(End); 284 size_t End = PipelineText.find_first_of(",)"); 285 if (!parseCGSCCPassName(CGPM, PipelineText.substr(0, End))) 289 PipelineText = PipelineText.substr(End); 351 size_t End = PipelineText.find_first_of(",)"); 352 if (!parseModulePassName(MPM, PipelineText.substr(0, End))) 357 PipelineText = PipelineText.substr(End); [all...] |