Searched +full:ovl +full:- +full:2 +full:l (Results 1 – 13 of 13) sorted by relevance
/freebsd/sys/contrib/device-tree/Bindings/display/mediatek/ |
H A D | mediatek,ovl-2l.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/display/mediatek/mediatek,ovl-2l.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Mediatek display overlay 2 layer 10 - Chun-Kuang Hu <chunkuang.hu@kernel.org> 11 - Philipp Zabel <p.zabel@pengutronix.de> 14 Mediatek display overlay 2 layer, namely OVL-2L, provides 2 more layer 15 for OVL. 16 OVL-2L device node must be siblings to the central MMSYS_CONFIG node. [all …]
|
H A D | mediatek,disp.txt | 29 - compatible: "mediatek,<chip>-disp-<function>", one of 30 "mediatek,<chip>-disp-ovl" - overlay (4 layers, blending, csc) 31 "mediatek,<chip>-disp-ovl-2l" - overlay (2 layers, blending, csc) 32 "mediatek,<chip>-disp-rdma" - read DMA / line buffer 33 "mediatek,<chip>-disp-wdma" - write DMA 34 "mediatek,<chip>-disp-ccorr" - color correction 35 "mediatek,<chip>-disp-color" - color processor 36 "mediatek,<chip>-disp-dither" - dither 37 "mediatek,<chip>-disp-aal" - adaptive ambient light controller 38 "mediatek,<chip>-disp-gamma" - gamma correction [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
H A D | mt8192.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 7 /dts-v1/; 8 #include <dt-bindings/clock/mt8192-clk.h> 9 #include <dt-bindings/gce/mt8192-gce.h> 10 #include <dt-bindings/interrupt-controller/arm-gic.h> 11 #include <dt-bindings/interrupt-controller/irq.h> 12 #include <dt-bindings/memory/mt8192-larb-port.h> 13 #include <dt-bindings/pinctrl/mt8192-pinfunc.h> 14 #include <dt-bindings/phy/phy.h> 15 #include <dt-bindings/power/mt8192-power.h> [all …]
|
H A D | mt8183.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 8 #include <dt-bindings/clock/mt8183-clk.h> 9 #include <dt-bindings/gce/mt8183-gce.h> 10 #include <dt-bindings/interrupt-controller/arm-gic.h> 11 #include <dt-bindings/interrupt-controller/irq.h> 12 #include <dt-bindings/memory/mt8183-larb-port.h> 13 #include <dt-bindings/power/mt8183-power.h> 14 #include <dt-bindings/reset/mt8183-resets.h> 15 #include <dt-bindings/phy/phy.h> 16 #include <dt-bindings/thermal/thermal.h> [all …]
|
H A D | mt8186.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 * Author: Allen-KH Cheng <allen-kh.cheng@mediatek.com> 6 /dts-v1/; 7 #include <dt-bindings/clock/mt8186-clk.h> 8 #include <dt-bindings/gce/mt8186-gce.h> 9 #include <dt-bindings/interrupt-controller/arm-gic.h> 10 #include <dt-bindings/interrupt-controller/irq.h> 11 #include <dt-bindings/memory/mt8186-memory-port.h> 12 #include <dt-bindings/pinctrl/mt8186-pinfunc.h> 13 #include <dt-bindings/power/mt8186-power.h> [all …]
|
H A D | mt8195.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 7 /dts-v1/; 8 #include <dt-bindings/clock/mt8195-clk.h> 9 #include <dt-bindings/gce/mt8195-gce.h> 10 #include <dt-bindings/interrupt-controller/arm-gic.h> 11 #include <dt-bindings/interrupt-controller/irq.h> 12 #include <dt-bindings/memory/mt8195-memory-port.h> 13 #include <dt-bindings/phy/phy.h> 14 #include <dt-bindings/pinctrl/mt8195-pinfunc.h> 15 #include <dt-bindings/power/mt8195-power.h> [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 1 //===--- SemaOverload.cpp - C++ Overloading -------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 60 return llvm::any_of(FD->parameters(), [](const ParmVarDecl *P) { in functionHasPassObjectSizeParams() 61 return P->hasAttr<PassObjectSizeAttr>(); in functionHasPassObjectSizeParams() 81 DeclRefExpr(S.Context, Fn, false, Fn->getType(), VK_LValue, Loc, LocInfo); in CreateFunctionRefExpr() 83 DRE->setHadMultipleCandidates(true); in CreateFunctionRefExpr() 86 if (auto *FPT = DRE->getType()->getAs<FunctionProtoType>()) { in CreateFunctionRefExpr() 87 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in CreateFunctionRefExpr() [all …]
|
H A D | SemaInit.cpp | 1 //===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 45 //===----------------------------------------------------------------------===// 47 //===----------------------------------------------------------------------===// 81 Init = Init->IgnoreParens(); in IsStringInit() 84 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType()) in IsStringInit() 93 Context.getCanonicalType(AT->getElementType()).getUnqualifiedType(); in IsStringInit() 97 return BT && BT->isCharType() && BT->getKind() != BuiltinType::SChar; in IsStringInit() [all …]
|
H A D | SemaExpr.cpp | 1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 73 // See if this is an auto-typed variable whose initializer we are parsing. in CanUseDecl() 79 if (FD->isDeleted()) in CanUseDecl() 84 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && in CanUseDecl() 96 if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable && in CanUseDecl() 97 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) in CanUseDecl() 108 if (const auto *A = D->getAttr<UnusedAttr>()) { in DiagnoseUnusedOfDecl() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | DumpOutputStyle.cpp | 1 //===- DumpOutputStyle.cpp ------------------------------------ *- C++ --*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 #include "llvm-pdbutil.h" 66 : File(File), P(2, false, outs(), opts::Filters) { in DumpOutputStyle() 89 RefTracker->mark(); in dump() 336 P.formatLine("{0,40}: {1,7} entries ({2,12:N} bytes)", "Total", in printModuleDetailStats() 338 P.formatLine("{0}", fmt_repeat('-', 74)); in printModuleDetailStats() 342 P.formatLine("{0,40}: {1,7} entries ({2,12:N} bytes)", KindName, in printModuleDetailStats() 365 "Stream {0} ({1} bytes): [{2}]", in dumpStreamSummary() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExprCXX.h | 1 //===- ExprCXX.h - Classes for representing expressions ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 64 //===--------------------------------------------------------------------===// 66 //===--------------------------------------------------------------------===// 77 /// any of the arguments are type-dependent. In this case, the 164 return T->getStmtClass() == CXXOperatorCallExprClass; in classof() 170 /// or "objptr->func()") or with normal function-call syntax 198 /// For example, in "x.f(5)", this returns the sub-expression "x". [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | msdos | 2 #------------------------------------------------------------------------------ 4 # msdos: file(1) magic for MS-DOS files 11 !:mime text/x-msdos-batch 14 !:mime text/x-msdos-batch 17 !:mime text/x-msdos-batch 20 !:mime text/x-msdos-batch 24 # OS/2 batch files are REXX. the second regex is a bit generic, oh well 27 >100 regex/c =^[\ \t]{0,10}call[\ \t]{1,10}rxfunc OS/2 REXX batch file text 29 >100 regex/c =^[\ \t]{0,10}say\ ['"] OS/2 REXX batch file text 40 # FMX64:FileMaker Pro 64-bit plug-in https://en.wikipedia.org/wiki/FileMaker [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 268 /// placing fix-its. 284 /// A single-element cache based on the file ID. 292 // Check the single-element cache. 296 // It's not in the single-element cache; flush the cache if we have one. 329 /// The callback should also emit signature help as a side-effect, but only 340 /// Handles all type casts, including C-style cast, C++ casts, etc. [all …]
|