Home
last modified time | relevance | path

Searched refs:Last (Results 1 – 25 of 747) sorted by relevance

12345678910>>...30

/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dilist_base.h44 static void removeRangeImpl(node_base_type &First, node_base_type &Last) { in removeRangeImpl() argument
46 node_base_type *Final = Last.getPrev(); in removeRangeImpl()
47 Last.setPrev(Prev); in removeRangeImpl()
48 Prev->setNext(&Last); in removeRangeImpl()
56 node_base_type &Last) { in transferBeforeImpl() argument
57 if (&Next == &Last || &First == &Last) in transferBeforeImpl()
65 node_base_type &Final = *Last.getPrev(); in transferBeforeImpl()
68 First.getPrev()->setNext(&Last); in transferBeforeImpl()
69 Last.setPrev(First.getPrev()); in transferBeforeImpl()
84 template <class T> static void removeRange(T &First, T &Last) { in removeRange() argument
[all …]
Dsimple_ilist.h162 void insert(iterator I, Iterator First, Iterator Last) { in insert() argument
163 for (; First != Last; ++First) in insert()
201 iterator erase(iterator First, iterator Last) { in erase() argument
202 list_base_type::removeRange(*First.getNodePtr(), *Last.getNodePtr()); in erase()
203 return Last; in erase()
217 iterator eraseAndDispose(iterator First, iterator Last, Disposer dispose) { in eraseAndDispose() argument
218 while (First != Last) in eraseAndDispose()
220 return Last; in eraseAndDispose()
244 void splice(iterator I, simple_ilist &, iterator First, iterator Last) { in splice() argument
246 *Last.getNodePtr()); in splice()
/external/swiftshader/third_party/subzero/src/
DIceRangeSpec.cpp49 void getRange(const std::string &Token, uint32_t *First, uint32_t *Last) { in getRange() argument
54 *Last = *First + 1; in getRange()
57 *Last = Tokens[1].empty() ? RangeSpec::RangeMax : std::stoul(Tokens[1]); in getRange()
61 if (*First >= *Last) { in getRange()
80 uint32_t First, Last; in record() local
81 getRange(Token, &First, &Last); in record()
82 if (Last == RangeSpec::RangeMax) { in record()
85 if (Last >= D->Numbers.size()) in record()
86 D->Numbers.resize(Last + 1); in record()
87 D->Numbers.set(First, Last); in record()
DIceMangling.cpp52 size_t Last; in incrementSubstitutions() local
53 for (Last = OldPos + 1; Last < OldLen; ++Last) { in incrementSubstitutions()
54 char Ch = OldName[Last]; in incrementSubstitutions()
68 size_t Length = Last - OldPos; in incrementSubstitutions()
105 OldPos = Last; in incrementSubstitutions()
/external/python/cpython2/Lib/email/test/data/
Dmsg_43.txt49 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
55 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
61 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
67 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
73 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
79 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
85 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
91 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
97 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
103 Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST)
[all …]
/external/clang/lib/Format/
DAffectedRangeManager.cpp35 FormatToken *Last = Line->Last; in computeAffectedLines() local
38 Last = (*PPEnd)->Last; in computeAffectedLines()
42 if (affectsTokenRange(*Line->First, *Last, in computeAffectedLines()
73 const FormatToken &Last, in affectsTokenRange() argument
78 SourceLocation End = Last.getStartOfNonWhitespace(); in affectsTokenRange()
79 End = End.getLocWithOffset(Last.TokenText.size()); in affectsTokenRange()
139 PreviousLine->Affected && PreviousLine->Last->is(tok::comment); in nonPPLineAffected()
DUnwrappedLineFormatter.cpp169 if (TheLine->Last->is(TT_LineComment)) in tryFitMultipleLinesInOne()
184 Limit = TheLine->Last->TotalLength > Limit in tryFitMultipleLinesInOne()
186 : Limit - TheLine->Last->TotalLength; in tryFitMultipleLinesInOne()
197 if (TheLine->Last->is(TT_FunctionLBrace) && in tryFitMultipleLinesInOne()
198 TheLine->First != TheLine->Last) { in tryFitMultipleLinesInOne()
201 if (TheLine->Last->is(tok::l_brace)) { in tryFitMultipleLinesInOne()
208 if (I[1]->Last->is(TT_LineComment)) in tryFitMultipleLinesInOne()
256 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimplePPDirective()
274 if (Line.Last->isNot(tok::r_paren)) in tryMergeSimpleControlStatement()
276 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimpleControlStatement()
[all …]
DTokenAnnotator.h67 Last = Current; in AnnotatedLine()
68 Last->Next = nullptr; in AnnotatedLine()
94 return Last && Last->endsSequence(Tokens...); in endsWith()
103 return !Last->isOneOf(tok::semi, tok::comment); in mightBeFunctionDefinition()
107 FormatToken *Last; variable
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp359 char Last = *FB++ = *FmtStr++; in lle_X_sprintf() local
361 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' && in lle_X_sprintf()
362 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' && in lle_X_sprintf()
363 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' && in lle_X_sprintf()
364 Last != 'p' && Last != 's' && Last != '%') { in lle_X_sprintf()
365 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's in lle_X_sprintf()
366 Last = *FB++ = *FmtStr++; in lle_X_sprintf()
370 switch (Last) { in lle_X_sprintf()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp349 char Last = *FB++ = *FmtStr++; in lle_X_sprintf() local
351 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' && in lle_X_sprintf()
352 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' && in lle_X_sprintf()
353 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' && in lle_X_sprintf()
354 Last != 'p' && Last != 's' && Last != '%') { in lle_X_sprintf()
355 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's in lle_X_sprintf()
356 Last = *FB++ = *FmtStr++; in lle_X_sprintf()
360 switch (Last) { in lle_X_sprintf()
/external/llvm/lib/Target/X86/
DX86OptimizeLEAs.cpp236 int calcInstrDist(const MachineInstr &First, const MachineInstr &Last);
256 bool isReplaceable(const MachineInstr &First, const MachineInstr &Last,
284 const MachineInstr &Last) { in calcInstrDist() argument
287 assert(Last.getParent() == First.getParent() && in calcInstrDist()
290 InstrPos.find(&Last) != InstrPos.end() && in calcInstrDist()
293 return InstrPos[&Last] - InstrPos[&First]; in calcInstrDist()
389 const MachineInstr &Last, in isReplaceable() argument
391 assert(isLEA(First) && isLEA(Last) && in isReplaceable()
395 AddrDispShift = getAddrDispShift(Last, 1, First, 1); in isReplaceable()
402 MRI->getRegClass(Last.getOperand(0).getReg())) in isReplaceable()
[all …]
/external/clang/test/SemaCXX/
Dwarn-infinite-recursion.cpp117 template<int First, int Last>
119 if (First + 1 == Last) { in DoStuff()
124 DoStuff<First, (First + Last)/2>(); in DoStuff()
125 DoStuff<(First + Last)/2, Last>(); in DoStuff()
/external/llvm/lib/CodeGen/
DInterferenceCache.cpp154 BI->First = BI->Last = SlotIndex(); in update()
217 if (!BI->Last.isValid() || StopI > BI->Last) in update()
218 BI->Last = StopI; in update()
234 if (!BI->Last.isValid() || StopI > BI->Last) in update()
235 BI->Last = StopI; in update()
241 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; in update()
247 BI->Last = RegMaskSlots[i-1].getDeadSlot(); in update()
/external/apache-http/src/org/apache/http/
Dsvn.info6 Last Changed Author: olegk
7 Last Changed Rev: 677250
8 Last Changed Date: 2008-07-16 04:45:47 -0700 (Wed, 16 Jul 2008)
/external/clang/lib/StaticAnalyzer/Checkers/
DCastSizeChecker.cpp58 const FieldDecl *Last = nullptr; in evenFlexibleArraySize() local
60 Last = *Iter; in evenFlexibleArraySize()
61 assert(Last && "empty structs should already be handled"); in evenFlexibleArraySize()
63 const Type *ElemType = Last->getType()->getArrayElementTypeNoTypeQual(); in evenFlexibleArraySize()
66 Ctx.getAsConstantArrayType(Last->getType())) { in evenFlexibleArraySize()
/external/clang/utils/TableGen/
DClangASTNodesEmitter.cpp80 Record *First = nullptr, *Last = nullptr; in EmitNode() local
84 First = Last = Base; in EmitNode()
109 Last = Result.second; in EmitNode()
112 Last = R; in EmitNode()
123 assert (Last && "Got a first node but not a last node for a range!"); in EmitNode()
129 << Last->getName() << ")\n\n"; in EmitNode()
132 return std::make_pair(First, Last); in EmitNode()
/external/curl/tests/data/
Dtest112816 Last-Modified: Tue, 13 Jun 1980 12:10:00 GMT
26 Last-Modified: Tue, 13 Jun 2002 12:10:00 GMT
71 Last-Modified: Tue, 13 Jun 1980 12:10:00 GMT
78 Last-Modified: Tue, 13 Jun 2002 12:10:00 GMT
Dtest151114 Last-Modified: Mon, 22 Apr 2013 17:45:05 GMT
26 Last-Modified: Mon, 22 Apr 2013 17:45:05 GMT
34 Last-Modified: Mon, 22 Apr 2013 17:45:05 GMT
/external/pdfium/third_party/lcms2-2.6/
D0016-check-LUT-and-MPE.patch17 - cmsStage *First, *Last;
21 + cmsStage* Last;
24 Last = cmsPipelineGetPtrToLastStage(lut);
27 - if (Last != NULL) lut ->OutputChannels = Last ->OutputChannels;
28 + if (First == NULL || Last == NULL) return FALSE;
31 + lut->OutputChannels = Last->OutputChannels;
/external/clang/lib/ASTMatchers/Dynamic/
DDiagnostics.cpp69 ErrorContent &Last = Errors.back(); in addError() local
70 Last.ContextStack = ContextStack; in addError()
71 Last.Messages.emplace_back(); in addError()
72 Last.Messages.back().Range = Range; in addError()
73 Last.Messages.back().Type = Error; in addError()
74 return ArgStream(&Last.Messages.back().Args); in addError()
/external/clang/lib/AST/
DTypeLoc.cpp209 TypeLoc Last; in getEndLoc() local
213 if (!Last) in getEndLoc()
214 Last = Cur; in getEndLoc()
215 return Last.getLocalSourceRange().getEnd(); in getEndLoc()
222 Last = Cur; in getEndLoc()
226 Last = TypeLoc(); in getEndLoc()
228 Last = Cur; in getEndLoc()
236 if (!Last) in getEndLoc()
237 Last = Cur; in getEndLoc()
/external/e2fsprogs/tests/
Dfilter.sed16 /^Last write time:/d
17 /^Last mount time:/d
18 /^Last checked:/d
/external/llvm/lib/Target/AArch64/
DAArch64AddressTypePromotion.cpp451 Value *Last; in analyzeSExtension() local
457 Last = Inst->getOperand(OpdIdx); in analyzeSExtension()
458 Inst = dyn_cast<Instruction>(Last); in analyzeSExtension()
461 DEBUG(dbgs() << "Head of the chain:\n" << *Last << '\n'); in analyzeSExtension()
463 SeenChains.find(Last); in analyzeSExtension()
470 SeenChains[Last] = nullptr; in analyzeSExtension()
474 SeenChains[Last] = SExt; in analyzeSExtension()
/external/pcre/dist2/testdata/
Dtestoutput257 Last code unit = 'c'
89 Last code unit = 'c'
95 Last code unit = 'c'
101 Last code unit = 'c'
162 Last code unit = 'b'
168 Last code unit = 'b'
237 Last code unit = 'c'
316 Last code unit = 'c'
332 Last code unit = 'x'
403 Last code unit = '>'
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_two_side.c86 ts->num_inputs = MAX2(ts->num_inputs, decl->Range.Last + 1); in xform_decl()
89 ts->num_temps = MAX2(ts->num_temps, decl->Range.Last + 1); in xform_decl()
114 decl.Range.First = decl.Range.Last = ts->num_inputs++; in emit_prolog()
127 decl.Range.Last = ts->num_temps + num_colors - 1; in emit_prolog()
139 decl.Range.First = decl.Range.Last = ts->num_inputs++; in emit_prolog()

12345678910>>...30