Home
last modified time | relevance | path

Searched refs:Next (Results 1 – 25 of 531) sorted by last modified time

12345678910>>...22

/freebsd/share/misc/
H A Dusb_vendors11595 7100 WN121T RangeMax Next Wireless-N [Marvell TopDog]
11597 9001 WN111(v2) RangeMax Next Wireless [Atheros AR9170+AR9101]
16968 7331 Dangerous Prototypes Bus Pirate Next Gen CDC
16969 7332 Dangerous Prototypes Bus Pirate Next Gen Logic Analyzer
19912 6210 Contour Next Link 2.4 glucometer
19914 7410 Contour Next
22647 298d Next Biometrics
24812 0b5 Scan Next Track
24921 1a3 AL Next Task/Application
24949 229 AC Next Link
[all …]
H A Dpci_vendors16011 1385 7c00 WN511T RangeMax Next 300 Mbps Wireless PC Card
16012 1385 7c01 WN511T RangeMax Next 300 Mbps Wireless Notebook Adapter
16013 1385 7e00 WN311T RangeMax Next 300 Mbps Wireless PCI Adapter
21001 1385 7d00 WN311B RangeMax Next 270 Mbps Wireless PCI Adapter
/freebsd/contrib/unbound/doc/
H A Dunbound.doxygen1553 # enables the Previous and Next buttons.
/freebsd/contrib/unbound/libunbound/
H A Dlibunbound.c1171 ptr = ptr->Next; in ub_ctx_resolvconf()
/freebsd/sys/conf/
H A DNOTES25 # come first. Next should come device, options, and hints lines in that
/freebsd/sys/contrib/device-tree/src/arm64/amlogic/
H A Dmeson-axg-s400.dts22 label = "Next";
/freebsd/sys/contrib/device-tree/Bindings/
H A Dvendor-prefixes.yaml981 description: Next Thing Co.
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dlpc1850-creg-clk.txt5 32 kHz oscillator driver with power up/down and clock gating. Next
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp16879 auto Next = next_nodbg(MI.getIterator(), BB->instr_end()); in emitSelectPseudo() local
16880 if (MI.getOpcode() != RISCV::Select_GPR_Using_CC_GPR && Next != BB->end() && in emitSelectPseudo()
16881 Next->getOpcode() == MI.getOpcode() && in emitSelectPseudo()
16882 Next->getOperand(5).getReg() == MI.getOperand(0).getReg() && in emitSelectPseudo()
16883 Next->getOperand(5).isKill()) { in emitSelectPseudo()
16884 return EmitLoweredCascadedSelect(MI, *Next, BB, Subtarget); in emitSelectPseudo()
16955 auto Next = std::next(SelectMBBI); in emitSelectPseudo() local
16966 SelectMBBI = Next; in emitSelectPseudo()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.td1843 // Next, we have various ELF relocations with the ":XYZ_g0:sym" syntax.
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp510 if (Next != MBB.instr_end() && Next->isCopy()) { in isLibCallInTailPosition()
536 Next = Ret; in isLibCallInTailPosition()
539 if (Next == MBB.instr_end() || TII.isTailCall(*Next) || !Next->isReturn()) in isLibCallInTailPosition()
577 MachineInstr *Next = MI->getNextNode(); in createLibcall() local
578 assert(Next && in createLibcall()
579 (Next->isCopy() || Next->isReturn() || Next->isDebugInstr()) && in createLibcall()
583 Next->eraseFromParent(); in createLibcall()
693 MachineInstr *Next = MI.getNextNode(); in createMemLibcall() local
694 assert(Next && in createMemLibcall()
695 (Next->isCopy() || Next->isReturn() || Next->isDebugInstr()) && in createMemLibcall()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3087 llvm::Value *Next = Builder.CreateICmpNE(Field, fields[I], "memptr.cmp"); in EmitMemberPointerIsNotNull() local
3088 Res = Builder.CreateOr(Res, Next, "memptr.tobool"); in EmitMemberPointerIsNotNull()
H A DCGBuiltin.cpp4158 BasicBlock *Next = createBasicBlock("wmemchr.next"); in EmitBuiltinExpr() local
4173 Builder.CreateCondBr(StrEqChr, Exit, Next); in EmitBuiltinExpr()
4175 EmitBlock(Next); in EmitBuiltinExpr()
4181 StrPhi->addIncoming(NextStr, Next); in EmitBuiltinExpr()
4182 SizePhi->addIncoming(NextSize, Next); in EmitBuiltinExpr()
4227 Builder.CreateCondBr(DstLtSrc, Exit, Next); in EmitBuiltinExpr()
4229 EmitBlock(Next); in EmitBuiltinExpr()
4236 DstPhi->addIncoming(NextDst, Next); in EmitBuiltinExpr()
4237 SrcPhi->addIncoming(NextSrc, Next); in EmitBuiltinExpr()
4238 SizePhi->addIncoming(NextSize, Next); in EmitBuiltinExpr()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp103 for (; End->Next; End = End->Next) { in getLengthToMatchingParen()
104 if (End->Next->CanBreakBefore) in getLengthToMatchingParen()
703 return Next && in addTokenOnCurrentLine()
922 if (Next && Next->isMemberAccess() && State.Stack.size() > 1 && in addTokenOnCurrentLine()
1273 (!Current.Next || in getNewLineColumn()
1406 FormatToken *PragmaType = State.Line->First->Next->Next; in getNewLineColumn()
1414 NextNonComment->Next && NextNonComment->Next->is(TT_ObjCMethodExpr)) { in getNewLineColumn()
1508 return Next && Next->MustBreakBefore; in moveStateToNextToken()
1918 next = next->Next; in moveStatePastScopeOpener()
2073 (!Newline && Current.Next && Current.Next->is(tok::r_paren)) in reformatRawStringLiteral()
[all …]
H A DTokenAnnotator.cpp1692 Tok.Next->Next->Next && Tok.Next->Next->Next->is(tok::l_paren); in isClosureImportStatement()
3298 for (; Next; Next = Next->Next) { in isFunctionDeclarationName()
3307 Next = Next->Next->Next; in isFunctionDeclarationName()
3313 Next = Next->Next; in isFunctionDeclarationName()
3317 Next->Next && Next->Next->isPointerOrReference()) { in isFunctionDeclarationName()
3319 Next = Next->Next; in isFunctionDeclarationName()
3352 for (; Next; Next = Next->Next) { in isFunctionDeclarationName()
3356 Next = Next->Next; in isFunctionDeclarationName()
3401 if (IsCpp && Next->Next && Next->Next->is(tok::identifier) && in isFunctionDeclarationName()
3525 Next && Next->isPointerOrReference() && Next->Next && in calculateFormattingInformation()
[all …]
H A DUnwrappedLineParser.cpp413 if (Next->is(tok::comment) && Next->NewlinesBefore == 0) in parseLevel()
424 FormatToken *Next; in parseLevel() local
427 assert(Next); in parseLevel()
430 if (Next->isNot(tok::colon)) { in parseLevel()
1301 assert(Next); in isC78ParameterDecl()
1316 if (Next->isNot(tok::star) && !Next->Tok.getIdentifierInfo()) in isC78ParameterDecl()
1378 FormatToken *Next = FormatTok; in readTokenWithJavaScriptASI() local
1403 Next->is(TT_TemplateString) && Next->TokenText.starts_with("}"); in readTokenWithJavaScriptASI()
2347 if (Next->is(tok::greater)) in tryToParseLambdaIntroducer()
2529 Prev && Prev->is(tok::l_paren) && Next && Next->is(tok::r_paren); in parseParens()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp612 BasicBlock *Next = BB->getNextNode(); in _run() local
616 BB = Next; in _run()
/freebsd/contrib/libcbor/
H A DCHANGELOG.md4 Next section
H A DDoxyfile1480 # enables the Previous and Next buttons.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp12610 ScheduleData *Next = BundleMember->NextInBundle; in cancelScheduling() local
12616 BundleMember = Next; in cancelScheduling()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cpp121 while (proc_maps.Next(&segment)) { in GetThreadStackTopAndBottom()
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp63660 (arg1)->Next(); in _wrap_SBTraceCursor_Next()
/freebsd/contrib/xz/doxygen/
H A DDoxyfile1479 # enables the Previous and Next buttons.
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp714 StringRef::iterator Next; in parseName() local
720 Next = I; in parseName()
722 if (Next != End) in parseName()
723 ++Next; in parseName()
728 Next = I; in parseName()
731 return std::make_pair(StringRef(Start, I - Start), Next); in parseName()
H A DDAGISelMatcher.cpp26 if (Next) in print()
27 return Next->print(OS, indent); in print()

12345678910>>...22