| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVEVPTBlockPass.cpp | 116 assert(NextPred != ARMVCC::Else && in StepOverPredicatedInstrs() 189 ARMVCC::VPTCodes CurrentPredicate = ARMVCC::Else; in CreateVPTBlock() 236 (CurrentPredicate == ARMVCC::Then ? ARMVCC::Else : ARMVCC::Then); in CreateVPTBlock() 261 assert(Pred != ARMVCC::Else && "VPT block pass does not expect Else preds"); in InsertVPTBlocks()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/serial/ |
| H A D | amlogic,meson-uart.yaml | 16 "Everything-Else" power domain. 42 - description: Everything-Else power domain UART controller 49 - description: Everything-Else power domain UART controller on G12A SoCs
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
| H A D | ARMBaseInfo.h | 92 Else enumerator 134 case ARMVCC::Else: return "e"; in ARMVPTPredToString() 142 .Case("e", ARMVCC::Else) in ARMVectorCondCodeFromString()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 1788 const auto *Else = S->getElse(); in coverIfConsteval() local 1802 if (Else) { in coverIfConsteval() 1809 markSkipped(S->getIfLoc(), Else ? getStart(Else) : getEnd(Then)); in coverIfConsteval() 1811 if (Else) in coverIfConsteval() 1812 propagateCounts(ParentCount, Else); in coverIfConsteval() 1848 const auto *Else = S->getElse(); in coverIfConstexpr() local 1855 if (Else) in coverIfConstexpr() 1860 markSkipped(startOfSkipped, Else ? getStart(Else) : getEnd(Then)); in coverIfConstexpr() 1862 if (Else) in coverIfConstexpr() 1900 if (const Stmt *Else = S->getElse()) { in VisitIfStmt() local [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/regulator/ |
| H A D | richtek,rtq2134-regulator.yaml | 42 Else, use dvs0 voltage by default. 47 If specified, use shutdown as UV action. Else, hiccup by default.
|
| H A D | richtek,rt5739.yaml | 35 Else, use the 'VSEL0' register group. This depends on external hardware
|
| H A D | richtek,rt4801-regulator.yaml | 33 Else if both are specified, DSVP/DSVN could be controlled individually.
|
| /freebsd-14.2/sys/dev/usb/ |
| H A D | usb_if.m | 46 # Else: Use builtin request handler 61 # Else: Failure
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/power/ |
| H A D | amlogic,meson-ee-pwrc.yaml | 8 title: Amlogic Meson Everything-Else Power Domains 14 The Everything-Else Power Domains node should be the child of a syscon
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 166 Stmt::Likelihood Stmt::getLikelihood(const Stmt *Then, const Stmt *Else) { in getLikelihood() argument 168 Likelihood LHE = ::getLikelihood(Else).first; in getLikelihood() 184 Stmt::determineLikelihoodConflict(const Stmt *Then, const Stmt *Else) { in determineLikelihoodConflict() argument 186 std::pair<Likelihood, const Attr *> LHE = ::getLikelihood(Else); in determineLikelihoodConflict() 925 SourceLocation RPL, Stmt *Then, SourceLocation EL, Stmt *Else) in IfStmt() argument 927 bool HasElse = Else != nullptr; in IfStmt() 939 setElse(Else); in IfStmt() 960 Stmt *Then, SourceLocation EL, Stmt *Else) { in Create() argument 961 bool HasElse = Else != nullptr; in Create() 969 IfStmt(Ctx, IL, Kind, Init, Var, Cond, LPL, RPL, Then, EL, Else); in Create()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | PPCallbacks.h | 423 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function 695 void Else(SourceLocation Loc, SourceLocation IfLoc) override { in Else() function 696 First->Else(Loc, IfLoc); in Else() 697 Second->Else(Loc, IfLoc); in Else()
|
| H A D | PPConditionalDirectiveRecord.h | 104 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIAnnotateControlFlow.cpp | 53 Function *Else; member in __anonadaa4d380111::SIAnnotateControlFlow 139 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else, in initialize() 226 Value *ElseCall = IRB.CreateCall(Else, {popSaved()}); in insertElse()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/phy/ |
| H A D | amlogic,meson-axg-mipi-pcie-analog.yaml | 13 The Everything-Else Power Domains node should be the child of a syscon
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/iio/temperature/ |
| H A D | maxim,max31865.yaml | 25 enables 3-wire RTD connection. Else 2-wire or 4-wire RTD connection.
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | TGLexer.cpp | 41 { tgtok::Else, "else" }, 760 } else if (Kind == tgtok::Else) { in lexPreprocessor() 802 IfdefOrElseEntry.Kind != tgtok::Else) { in lexPreprocessor() 891 if (Kind != tgtok::Else && Kind != tgtok::Endif) { in prepSkipRegion()
|
| H A D | TGLexer.h | 72 Else, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IdenticalExprChecker.cpp | 137 const Stmt *Else = Stmt2; in VisitIfStmt() local 138 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) { in VisitIfStmt() 148 Else = I2->getElse(); in VisitIfStmt()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | atmel-tcb.txt | 20 channels are needed. Else, only one channel will be used.
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_flags.inc | 39 "If set, prints the heap profile in text format. Else use the raw binary serialization format.")
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PPConditionalDirectiveRecord.cpp | 126 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, in Else() function in PPConditionalDirectiveRecord
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 227 Else, enumerator 314 case Else: in nestingString() 601 if (popAndPushWithSameSignature(Name, If, Else)) in ParseInstruction() 610 if (pop(Name, If, Else)) in ParseInstruction()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | ByteCodeStmtGen.cpp | 385 if (const Stmt *Else = IS->getElse()) { in visitIfStmt() local 395 if (!visitStmt(Else)) in visitIfStmt()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/input/ |
| H A D | brcm,bcm-keypad.txt | 53 as the output. Else defaults to column.
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/net/ |
| H A D | mediatek-bluetooth.txt | 62 Else, the pin controller on the platform only can support pinmux control and
|