HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 276 - 300 of 1604) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 80 IndexRange(IndexType Start, IndexType End, bool F = false, bool T = false)
81 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {}
83 IndexType end() const { return second; } function in class:llvm::HexagonBlockRanges::IndexType::IndexRange
93 bool TiedEnd; // The end is not a use, but a dead def tied to a use.
104 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) {
105 push_back(IndexRange(Start, End, Fixed, TiedEnd));
  /external/llvm/tools/llvm-cov/
SourceCoverageViewText.cpp 107 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
111 << Line.substr(Col - 1, End - Col);
113 HighlightedRanges.push_back(std::make_pair(Col, End));
114 Col = End;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringRef.h 88 iterator end() const { return Data + Length; } function in class:llvm::StringRef
205 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
347 /// slice - Return a reference to the substring from [Start, End).
353 /// \param End - The index following the last character to include in the
357 StringRef slice(size_t Start, size_t End) const {
359 End = min(max(Start, End), Length);
360 return StringRef(Data + Start, End - Start);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CriticalAntiDepBreaker.h 84 MachineBasicBlock::iterator End,
  /external/v8/src/compiler/
pipeline-statistics.h 39 void End(PipelineStatistics* pipeline_stats,
  /packages/apps/Messaging/
ForceProguard.mk 37 # End local intermediates directory existence check
40 # End LOCAL_MODULE is a build target check
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dcompanimation.h 69 virtual HRESULT STDMETHODCALLTYPE End(
122 HRESULT (STDMETHODCALLTYPE *End)(
145 #define IDCompositionAnimation_End(This,a,b) (This)->lpVtbl->End(This,a,b)
174 return This->lpVtbl->End(This,a,b);
244 /* End additional prototypes */
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Region.py 301 End = 0
305 End = Start + BlockSize * BlockNum
307 if self.Offset >= End:
308 Start = End
313 if self.Offset + self.Size <= End:
323 UsedBlockNum = (End - self.Offset) / BlockSize
324 Start = End
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 339 /// This version of the builder inserts the newly-built instruction at the end
343 return BuildMI(*BB, BB->end(), DL, MCID);
347 /// end of the given MachineBasicBlock, and sets up the first operand as a
351 return BuildMI(*BB, BB->end(), DL, MCID, DestReg);
414 MachineBasicBlock::instr_iterator End;
420 : MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {}
425 : MBB(BB), Begin(B.getInstrIterator()), End(E.getInstrIterator()) {
438 : MBB(*MI->getParent()), Begin(MI), End(getBundleEnd(*MI)) {}
445 bool empty() const { return Begin == End; }
451 MachineBasicBlock::instr_iterator end() const { return End; function in class:llvm::MIBundleBuilder
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 69 // Use <= here so that a pointer to the null at the end of the buffer
161 // Get the end of the line.
175 if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart)
181 if (R.End.getPointer() > LineEnd)
182 R.End = SMLoc::getFromPointer(LineEnd);
187 R.End.getPointer()-LineStart));
239 FixIts(Hints.begin(), Hints.end()) {
240 std::sort(FixIts.begin(), FixIts.end());
249 const char *LineEnd = SourceLine.end();
253 for (ArrayRef<SMFixIt>::iterator I = FixIts.begin(), E = FixIts.end();
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/I2CLibDxe/
I2CLib.c 190 DEBUG ((EFI_D_INFO, "ProgramPciLpssI2C() End:I2C[%x] is disabled\n",I2cControllerIndex));
274 DEBUG ((EFI_D_INFO, "ProgramPciLpssI2C() End\n"));
484 @param End Whether STOP is generated after a data byte is sent or received
496 IN UINT8 End
566 if(End && Start) {
568 } else if (!End && Start) {
570 } else if (End && !Start) {
572 } else if (!End && !Start) {
592 @param End Whether STOP is generated after a data byte is sent or received
603 IN UINT8 End
    [all...]
  /external/clang/lib/Tooling/Core/
Replacement.cpp 125 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
126 if (Start.first != End.first) return -1;
128 End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, LangOpts);
129 return End.second - Start.second;
190 std::sort(Replaces.begin(), Replaces.end(), LessNoPath);
191 Replaces.erase(std::unique(Replaces.begin(), Replaces.end(), EqualNoPath),
192 Replaces.end());
224 E = Replaces.end();
241 E = Replaces.end();
269 for (Replacements::const_iterator I = Replaces.begin(), E = Replaces.end();
    [all...]
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 47 DEBUG(for (unsigned Idx = 0, End = getNumRegBanks(); Idx != End; ++Idx) {
223 for (unsigned OpIdx = 0, End = MI.getNumOperands(); OpIdx != End; ++OpIdx) {
288 for (unsigned OpIdx = 0, End = MI.getNumOperands(); OpIdx != End; ++OpIdx) {
352 if (NewRegs.begin() == NewRegs.end()) {
534 // end of the list of NewVReg.
540 SmallVectorImpl<unsigned>::iterator End =
543 return make_range(&NewVRegs[StartIdx], End);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCStreamer.cpp 166 if (!CurFrame || CurFrame->End)
276 if (CurFrame && !CurFrame->End)
299 CurFrame->End = getContext().CreateTempSymbol();
300 EmitLabel(CurFrame->End);
419 if (!CurFrame || CurFrame->End)
425 if (CurFrame && !CurFrame->End)
439 CurFrame->End = getContext().CreateTempSymbol();
440 EmitLabel(CurFrame->End);
458 report_fatal_error("End of a chained region outside a chained region!");
459 CurFrame->End = getContext().CreateTempSymbol()
    [all...]
  /art/compiler/
elf_writer_quick.cc 108 bool End() OVERRIDE;
205 builder_->GetRoData()->End();
218 builder_->GetText()->End();
270 bool ElfWriterQuick<ElfTypes>::End() {
271 builder_->End();
292 // End of file.
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 135 // Start/End - A semi range that describes the span that this range covers.
136 // The range is closed at the start and open at the end: [Start, End).
137 int64_t Start, End;
151 } // end anon namespace
155 if (TheStores.size() >= 4 || End-Start >= 16) return true;
178 // size. If so, check to see whether we will end up actually reducing the
180 unsigned Bytes = unsigned(End-Start);
207 const_iterator end() const { return Ranges.end(); } function in class:__anon26024::MemsetRanges
    [all...]
  /system/update_engine/payload_consumer/
extent_writer_unittest.cc 79 EXPECT_TRUE(direct_writer.End());
88 expected_file.insert(expected_file.end(),
103 EXPECT_TRUE(direct_writer.End());
147 EXPECT_TRUE(direct_writer.End());
156 expected_file.insert(expected_file.end(),
159 expected_file.insert(expected_file.end(),
161 expected_file.insert(expected_file.end(),
162 data.begin() + kBlockSize * 2, data.end());
197 EXPECT_TRUE(zero_pad_writer.End());
206 expected_file.insert(expected_file.end(),
    [all...]
  /external/clang/lib/CodeGen/
SwiftCallingConv.cpp 181 // bit-field; since we otherwise expect exclusive ends, the end is the
196 CharUnits begin, CharUnits end) {
198 assert(getTypeStoreSize(CGM, type) == end - begin);
203 legalizeVectorType(CGM, end - begin, vecTy, componentTys);
210 assert(componentSize < end - begin);
215 return addLegalTypedData(componentTys.back(), begin, end);
221 return addOpaqueData(begin, end);
225 return addLegalTypedData(type, begin, end);
229 CharUnits begin, CharUnits end) {
235 auto split = splitLegalVectorType(CGM, end - begin, vecTy)
462 auto end = orig[i].End; local
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 68 } // End anonymous namespace.
145 // Send the diagnostic to the buffer, we will check it once we reach the end
204 : Begin(S.begin()), End(S.end()), C(Begin), P(Begin), PEnd(nullptr) {}
210 if (PEnd > End)
220 for (; P < End && P[0] >= '0' && P[0] <= '9'; ++P) {
235 P = std::search(C, End, S.begin(), S.end());
237 if (P == End)
256 while (P < End) {
    [all...]
  /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/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...]
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
ShowEnvironment.bat 37 @goto End
63 @if defined HIDE_PATH goto End
87 @goto End
174 @if "%FIRST_COPY%"=="TRUE" @goto End
175 @if not "%RECONFIG%"=="TRUE" @goto End
193 @goto End
212 :End
SetVisualStudio.bat 73 @goto End
99 @goto End
107 :End
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Support.c 20 Allocate a MTFTP block range, then init it to the range of [Start, End].
23 @param[in] End The last block number in the range.
31 IN UINT16 End
44 Range->End = End;
45 Range->Bound = End;
53 different requirements for Start and End. For example, during startup,
65 @param[in] End The last block number.
75 IN UINT16 End
80 Range = Mtftp6AllocateRange (Start, End);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 258 // Emit a .seh_endproc directive to mark the end of the function.
262 // Let's make sure we don't try to end the same funclet twice.
316 // For 32-bit, offsets should be relative to the end of the EH registration
317 // node. For 64-bit, it's relative to SP at the end of the prologue.
346 /// entire function or funclet, and the start and end of the range are treated
350 /// change back to NullState is always reported at the end of iteration).
367 MachineFunction::const_iterator End, int BaseState = NullState) {
369 // the end of the last block.
370 assert(Begin != End);
372 auto BlockEnd = std::prev(End)->end()
    [all...]

Completed in 1440 milliseconds

<<11121314151617181920>>