Searched refs:Begin (Results 126 - 150 of 302) sorted by relevance

1234567891011>>

/external/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp167 const SCEV *Begin; member in class:__anon14709::InductiveRangeCheck::Range
171 Range(const SCEV *Begin, const SCEV *End) : Begin(Begin), End(End) { argument
172 assert(Begin->getType() == End->getType() && "ill-typed range!");
175 Type *getType() const { return Begin->getType(); }
176 const SCEV *getBegin() const { return Begin; }
454 /// The algorithm this class implements is given a Loop and a range [Begin,
457 /// in a subset of [Begin, End). The algorithm emits appropriate pre and post
459 /// which the induction variable is < Begin, an
1328 const SCEV *Begin = SE.getNegativeSCEV(M); local
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dtensor.cc275 static FieldType::const_iterator Begin(const TensorProto& proto) { \
304 static const int64* Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
318 static const uint64* Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
332 static protobuf::RepeatedPtrField<ResourceHandleProto>::const_iterator Begin( function in struct:tensorflow::__anon26273::ProtoHelper
351 Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
371 static const complex64* Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
387 static const complex128* Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
403 static const qint32* Begin(const TensorProto& proto) { function in struct:tensorflow::__anon26273::ProtoHelper
479 auto begin = ProtoHelper<T>::Begin(in);
/external/clang/include/clang/Serialization/
H A DASTBitCodes.h168 unsigned Begin; member in struct:clang::serialization::PPEntityOffset
175 : Begin(R.getBegin().getRawEncoding()),
179 return SourceLocation::getFromRawEncoding(Begin);
/external/clang/lib/Format/
H A DSortJavaScriptImports.cpp233 StringRef getSourceText(SourceLocation Begin, SourceLocation End) { argument
235 return FileContents.substr(SM.getFileOffset(Begin),
236 SM.getFileOffset(End) - SM.getFileOffset(Begin));
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h223 // ByValRegs[0] describes how "%r" is stored (Begin == r1, End == r2)
224 // ByValRegs[1] describes how "%t" is stored (Begin == r3, End == r4).
240 Begin(B), End(E), Waste(IsWaste) {}
242 unsigned Begin; member in struct:llvm::CCState::ByValInfo
466 BeginReg = info.Begin;
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h173 virtual ParamIteratorInterface<T>* Begin() const = 0;
195 iterator begin() const { return iterator(impl_->Begin()); }
214 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::RangeGenerator
299 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::ValuesInIteratorRangeGenerator
/external/libmojo/base/android/
H A Dtrace_event_binding.cc98 static void Begin(JNIEnv* env, function in namespace:base::android
/external/libvpx/libvpx/test/
H A Dactive_map_refresh_test.cc119 video_holder.Begin();
H A Dbyte_alignment_test.cc64 video_->Begin();
H A Dvp9_skip_loopfilter_test.cc42 video_->Begin();
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-param-util.h173 virtual ParamIteratorInterface<T>* Begin() const = 0;
195 iterator begin() const { return iterator(impl_->Begin()); }
214 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::RangeGenerator
299 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::ValuesInIteratorRangeGenerator
/external/llvm/include/llvm/MC/
H A DMCObjectStreamer.h128 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DScheduleDAGInstrs.h137 MachineBasicBlock::iterator Begin; // The beginning of the range to member in class:llvm::ScheduleDAGInstrs
H A DScheduleDAGInstrs.cpp51 Begin = begin;
228 for (MachineBasicBlock::iterator MII = InsertPos, MIE = Begin;
663 while (Begin != InsertPos) {
664 MachineBasicBlock::iterator I = Begin;
665 ++Begin;
682 // Update the Begin iterator, as the first instruction in the block
685 Begin = Sequence[0]->getInstr();
/external/v8/src/ic/
H A Dic-stats.cc23 void ICStats::Begin() { function in class:v8::internal::ICStats
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h173 virtual ParamIteratorInterface<T>* Begin() const = 0;
195 iterator begin() const { return iterator(impl_->Begin()); }
214 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::RangeGenerator
299 virtual ParamIteratorInterface<T>* Begin() const { function in class:testing::internal::ValuesInIteratorRangeGenerator
/external/webrtc/webrtc/test/
H A Drtcp_packet_parser.cc28 for (RTCPUtility::RTCPPacketTypes type = parser.Begin();
/external/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp457 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
460 if (std::next(Begin) != MRI->def_end())
462 DefMI = Begin->getParent();
887 MachineBasicBlock::iterator Begin = MI; local
888 MachineBasicBlock::iterator AfterMI = std::next(Begin);
946 while (Begin != MBB->begin() && std::prev(Begin)->isDebugValue())
947 --Begin;
964 MBB->splice(InsertPos, MBB, Begin, End);
1378 MachineBasicBlock::iterator Begin(NewMI
[all...]
H A DMachineFunction.cpp331 MachineFunction::extractLoadMemRefs(MachineInstr::mmo_iterator Begin, argument
335 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I)
342 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) {
363 MachineFunction::extractStoreMemRefs(MachineInstr::mmo_iterator Begin, argument
367 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I)
374 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) {
/external/clang/lib/AST/
H A DDeclPrinter.cpp151 void Decl::printGroup(Decl** Begin, unsigned NumDecls, argument
155 (*Begin)->print(Out, Policy, Indentation);
159 Decl** End = Begin + NumDecls;
160 TagDecl* TD = dyn_cast<TagDecl>(*Begin);
162 ++Begin;
167 for ( ; Begin != End; ++Begin) {
179 (*Begin)->print(Out, SubPolicy, Indentation);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineFunction.h396 extractLoadMemRefs(MachineInstr::mmo_iterator Begin,
403 extractStoreMemRefs(MachineInstr::mmo_iterator Begin,
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.h376 RTCPPacketTypes Begin();
478 const RtcpCommonHeader* Begin();
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp108 bool update(const MachineInstr &MI, unsigned Begin, unsigned End);
236 /// This function searches range [Begin, End) for an instruction that can be
239 bool searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End,
386 bool RegDefsUses::update(const MachineInstr &MI, unsigned Begin, unsigned End) { argument
390 for (unsigned I = Begin; I != End; ++I) {
646 bool Filler::searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End, argument
651 for (IterTy I = Begin; I != End;) {
H A DMipsSEISelLowering.cpp2494 fitsRegularPattern(typename SmallVectorImpl<ValType>::const_iterator Begin, argument
2498 auto &I = Begin;
2560 const auto &Begin = Indices.begin(); local
2565 if (fitsRegularPattern<int>(Begin, 2, End, 0, 2))
2567 else if (fitsRegularPattern<int>(Begin, 2, End, Indices.size(), 2))
2574 if (fitsRegularPattern<int>(Begin + 1, 2, End, 0, 2))
2576 else if (fitsRegularPattern<int>(Begin + 1, 2, End, Indices.size(), 2))
2606 const auto &Begin = Indices.begin(); local
2611 if (fitsRegularPattern<int>(Begin, 2, End, 1, 2))
2613 else if (fitsRegularPattern<int>(Begin,
2653 const auto &Begin = Indices.begin(); local
2701 const auto &Begin = Indices.begin(); local
2748 const auto &Begin = Indices.begin(); local
2791 const auto &Begin = Indices.begin(); local
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dutils.h949 template<int Begin, int End, int Step = 1>
953 func(Begin);
954 UnrollerL<Begin + Step, End, Step>::step(func);
966 template<int Begin, int End, int Step = 1, int Mask = 0x7f>
970 if(Mask & (1 << Begin))
972 func(Begin);
974 UnrollerL<Begin + Step, End, Step>::step(func);

Completed in 667 milliseconds

1234567891011>>