Searched defs:Next (Results 151 - 175 of 284) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/
H A DAnalysis.cpp431 /// Find the first non-empty, scalar-like type in Next and setup the iterator
434 /// Assuming Next is an aggregate of some kind, this function will traverse the
438 /// For example, if Next was {[0 x i64], {{}, i32, {}}, i32} then we would setup
439 /// Path as [1, 1] and SubTypes as [Next, {{}, i32, {}}] to represent the first
441 static bool firstRealType(Type *Next, argument
447 while (Next->isAggregateType() &&
448 indexReallyValid(cast<CompositeType>(Next), 0)) {
449 SubTypes.push_back(cast<CompositeType>(Next));
451 Next = cast<CompositeType>(Next)
[all...]
/external/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp319 const MachineInstr *Next = MI.getNextNode(); local
320 assert((!Next || Next->isUnconditionalBranch()) &&
322 if (Next)
326 assert(!Next->readsRegister(Reg) && "Need to split between terminators");
/external/llvm/lib/IR/
H A DValue.cpp649 if (!UseList || !UseList->Next)
654 Use *Current = UseList->Next;
655 Head->Next = nullptr;
657 Use *Next = Current->Next; local
658 Current->Next = Head;
659 Head->setPrev(&Current->Next);
661 Current = Next;
675 Next = *List;
678 if (Next) {
[all...]
/external/llvm/lib/Target/X86/
H A DX86WinEHState.cpp211 /// EHRegistrationNode *Next;
220 EHLinkRegistrationTy->getPointerTo(0), // EHRegistrationNode *Next
429 // Next = [fs:00]
432 Value *Next = Builder.CreateLoad(FSZero); local
433 Builder.CreateStore(Next, Builder.CreateStructGEP(LinkTy, Link, 0));
446 // [fs:00] = Link->Next
447 Value *Next = local
451 Builder.CreateStore(Next, FSZero);
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp470 auto Next = I + 1; local
471 if (Next != E) {
472 assert(Next->Low > I->High);
/external/llvm/tools/llvm-c-test/
H A Decho.cpp707 LLVMValueRef Next = nullptr; local
710 Next = LLVMGetNextInstruction(Cur);
711 if (Next == nullptr) {
717 LLVMValueRef Prev = LLVMGetPreviousInstruction(Next);
719 report_fatal_error("Next.Previous instruction is not Current");
721 Cur = Next;
737 LLVMBasicBlockRef Next = nullptr; local
741 Next = LLVMGetNextBasicBlock(Cur);
742 if (Next == nullptr) {
748 LLVMBasicBlockRef Prev = LLVMGetPreviousBasicBlock(Next);
765 LLVMValueRef Next = nullptr; local
844 LLVMValueRef Next = nullptr; local
[all...]
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp670 BasicBlock *Next = Curr->splitBasicBlock(Loc, "CF"); local
673 BranchInst::Create(Curr, Next, Instr, Curr->getTerminator());
/external/lzma/C/
H A DPpmd7.c50 CPpmd7_Node_Ref Next; /* must be at offset >= 4 */ member in struct:CPpmd7_Node_
168 node->Next = n;
176 NODE(head)->Next = n;
192 NODE(node2->Prev)->Next = node2->Next;
193 NODE(node2->Next)->Prev = node2->Prev;
196 n = node->Next;
200 for (n = NODE(head)->Next; n != head;)
204 CPpmd7_Node_Ref next = node->Next;
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc260 if (!input_->Next(&data, &buffer_size_)) {
562 bool Tokenizer::Next() { function in class:google::protobuf::io::Tokenizer
796 return Next();
808 return Next();
838 bool result = Next();
1127 // Mirrors IDENTIFIER definition in Tokenizer::Next() above.
/external/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc261 CALLER_ATTACH NameTable::NameEntry* NameTable::NameEntryIterator::Next() { function in class:sfntly::NameTable::NameEntryIterator
420 name_entry.Attach(name_iter->Next());
534 result = name_entry_iter->Next();
/external/skia/src/core/
H A DSkTextBlob.cpp210 static const RunRecord* Next(const RunRecord* run) { function in namespace:__anon16995
305 const auto* nextRun = RunRecord::Next(run);
449 fCurrentRun = SkTextBlob::RunRecord::Next(fCurrentRun);
555 SkASSERT((void*)glyphPosX <= SkTextBlob::RunRecord::Next(&run));
579 SkASSERT((void*)(glyphPos + run.glyphCount()) <= SkTextBlob::RunRecord::Next(&run));
593 SkASSERT((void*)(glyphPosPts + run.glyphCount()) <= SkTextBlob::RunRecord::Next(&run));
795 run = SkTextBlob::RunRecord::Next(run)) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegAllocFast.cpp197 MachineOperand *Next = &MO; local
198 while ((Next = Next->getNextOperandForReg()))
199 if (!Next->isDebug())
854 // Next instruction.
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMachObjectWriter.cpp100 unsigned Next = SD->getLayoutOrder() + 1; local
101 if (Next >= Layout.getSectionOrder().size())
104 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next];
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Ddpath.c47 EFI_DEVICE_PATH *Start, *Next, *DevPath; local
62 Next = NextDevicePathNode(DevPath);
77 DevPath = Next;
88 Next = NULL;
91 *DevicePath = Next;
965 // Next device path node
/external/tinyxml/
H A Dtinyxml.cpp777 for ( attrib = attributeSet.First(); attrib; attrib = attrib->Next() )
822 for ( attrib = attributeSet.First(); attrib; attrib = attrib->Next() )
858 attribute = attribute->Next() )
1162 const TiXmlAttribute* TiXmlAttribute::Next() const function in class:TiXmlAttribute
1171 TiXmlAttribute* TiXmlAttribute::Next() function in class:TiXmlAttribute
/external/v8/src/
H A Ddateparser.h56 Next();
62 void Next() { function in class:v8::internal::DateParser::BASE_EMBEDDED
76 Next();
86 for (len = 0; IsAsciiAlphaOrAbove(); Next(), len++) {
96 Next();
224 DateToken Next() { function in class:v8::internal::DateParser::DateStringTokenizer
H A Dlookup.cc67 void LookupIterator::Next() { function in class:v8::internal::LookupIterator
/external/v8/src/debug/
H A Ddebug-scopes.cc214 void ScopeIterator::Next() { function in class:v8::internal::ScopeIterator
/external/v8/src/parsing/
H A Dscanner.cc61 scanner_->Next();
277 Token::Value Scanner::Next() { function in class:v8::internal::Scanner
319 Next();
1631 // (next_ + next_next_ will be overwrittem by Next(),
1640 Next();
/external/webrtc/webrtc/base/
H A Dthread_unittest.cc30 int Next(int prev) { function in class:TestGenerator
70 uint32_t result = Next(prev);
94 int result = Next(msg->value);
/external/webrtc/webrtc/libjingle/xmpp/
H A Dchatroommoduleimpl.cc119 virtual bool Next();
704 XmppChatroomMemberEnumeratorImpl::Next() { function in class:buzz::XmppChatroomMemberEnumeratorImpl
/external/c-ares/
H A Dares_iphlpapi.h128 struct _IP_ADAPTER_UNICAST_ADDRESS *Next; member in struct:_IP_ADAPTER_UNICAST_ADDRESS
146 struct _IP_ADAPTER_ANYCAST_ADDRESS *Next; member in struct:_IP_ADAPTER_ANYCAST_ADDRESS
158 struct _IP_ADAPTER_MULTICAST_ADDRESS *Next; member in struct:_IP_ADAPTER_MULTICAST_ADDRESS
170 struct _IP_ADAPTER_DNS_SERVER_ADDRESS *Next; member in struct:_IP_ADAPTER_DNS_SERVER_ADDRESS
182 struct _IP_ADAPTER_PREFIX *Next; member in struct:_IP_ADAPTER_PREFIX
195 struct _IP_ADAPTER_ADDRESSES *Next; member in struct:_IP_ADAPTER_ADDRESSES
/external/clang/lib/AST/
H A DDeclPrinter.cpp353 DeclContext::decl_iterator Next = D; local
354 ++Next;
355 if (Next != DEnd)
/external/clang/lib/Format/
H A DFormatToken.h268 FormatToken *Next = nullptr; member in struct:clang::format::FormatToken
301 /// following the ``Next`` pointers, ignoring comments.
322 (!ColonRequired || (Next && Next->is(tok::colon)));
329 return is(tok::at) && Next && (Next->isObjCAtKeyword(tok::objc_public) ||
330 Next->isObjCAtKeyword(tok::objc_protected) ||
331 Next->isObjCAtKeyword(tok::objc_package) ||
332 Next->isObjCAtKeyword(tok::objc_private));
376 (is(TT_LineComment) || !Next || Nex
[all...]
H A DTokenAnnotator.cpp200 if (LookForDecls && CurrentToken->Next) {
204 FormatToken *Next = CurrentToken->Next; local
207 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) {
223 if (MightBeFunctionType && ProbablyFunctionType && CurrentToken->Next &&
224 (CurrentToken->Next->is(tok::l_paren) ||
225 (CurrentToken->Next->is(tok::l_square) && Line.MustBeDeclaration)))
230 if (CurrentToken->Next && CurrentToken->Next->is(tok::l_brace) &&
235 for (FormatToken *Tok = Left; Tok != CurrentToken; Tok = Tok->Next) {
1612 const FormatToken *Next = Current.Next; local
[all...]

Completed in 739 milliseconds

1234567891011>>