Home
last modified time | relevance | path

Searched refs:Active (Results 1 – 25 of 91) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp33 Active.Node = Root; in SuffixTree()
185 if (Active.Len == 0) { in extend()
187 Active.Idx = EndIdx; in extend()
190 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend()
193 unsigned FirstChar = Str[Active.Idx]; in extend()
196 if (Active.Node->Children.count(FirstChar) == 0) { in extend()
198 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend()
203 NeedsLink->setLink(Active.Node); in extend()
209 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend()
215 if (Active.Len >= SubstringLen) { in extend()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp820 auto &Active = CodeSynthesisContexts.back(); in popCodeSynthesisContext() local
821 if (!Active.isInstantiationRecord()) { in popCodeSynthesisContext()
826 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext; in popCodeSynthesisContext()
851 auto &Active = SemaRef.CodeSynthesisContexts.back(); in Clear() local
852 if (Active.Entity) in Clear()
854 {Active.Entity->getCanonicalDecl(), Active.Kind}); in Clear()
909 Active = CodeSynthesisContexts.rbegin(), in PrintInstantiationStack() local
911 Active != ActiveEnd; in PrintInstantiationStack()
912 ++Active, ++InstantiationIdx) { in PrintInstantiationStack()
917 Diags.Report(Active->PointOfInstantiation, in PrintInstantiationStack()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h48 bool Active; variable
56 Active = true;
58 Active = false;
63 State(Other.State), Active(Other.Active) { in SuppressAccessChecks()
64 Other.Active = false; in SuppressAccessChecks()
69 assert(Active && "trying to end an inactive suppression"); in done()
71 Active = false; in done()
75 assert(!Active && "redelaying without having ended first"); in redelay()
82 if (Active) done(); in ~SuppressAccessChecks()
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun8i-s3-pinecube.dts70 hsync-active = <1>; /* Active high */
71 vsync-active = <0>; /* Active low */
72 data-active = <1>; /* Active high */
117 hsync-active = <1>; /* Active high */
118 vsync-active = <0>; /* Active low */
119 data-active = <1>; /* Active high */
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dtvp7002.txt19 - sync-on-green-active: Active state of Sync-on-green signal property of the
21 0 = Normal Operation (Active Low, Default)
24 - field-even-active: Active-high Field ID output polarity control of the bus.
27 0 = Normal Operation (Active Low, Default)
H A Daptina,mt9v111.txt20 - enable-gpios: output enable signal, pin name "OE#". Active low.
22 Active high.
23 - reset-gpios: chip reset signal, pin name "RESET#". Active low.
H A Dov9650.txt11 Active is high.
13 Active is high.
H A Dmt9m001.txt14 Active low.
16 Active high.
H A Dov2659.txt17 Active high with internal pull down resistor.
19 Active low with internal pull up resistor.
H A Dov7740.txt19 if any. Active low with pull-ip resistor.
21 if any. Active high with pull-down resistor.
H A Dov7670.txt18 Active is low.
20 Active is high.
/freebsd/contrib/dialog/samples/
H A Dsourcemage.rc45 # Active button color
51 # Active button key color
57 # Active button label color
120 # Active form text color
H A Ddebian.rc46 # Active button color
52 # Active button key color
58 # Active button label color
121 # Active form text color
H A Dslackware.rc45 # Active button color
51 # Active button key color
57 # Active button label color
120 # Active form text color
H A Dsuse.rc45 # Active button color
51 # Active button key color
57 # Active button label color
120 # Active form text color
H A Dwhiptail.rc45 # Active button color
51 # Active button key color
57 # Active button label color
120 # Active form text color
/freebsd/contrib/netbsd-tests/lib/librumphijack/
H A Dnetstat.expout1 Active Internet connections (including servers)
4 Active Internet6 connections (including servers)
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-amarula-relic.dts50 hsync-active = <1>; /* Active high */
51 vsync-active = <0>; /* Active low */
52 data-active = <1>; /* Active high */
90 hsync-active = <1>; /* Active high */
91 vsync-active = <0>; /* Active low */
92 data-active = <1>; /* Active high */
H A Dsun50i-a64-pinetab.dts77 hsync-active = <1>; /* Active high */
78 vsync-active = <0>; /* Active low */
79 data-active = <1>; /* Active high */
140 hsync-active = <1>; /* Active high */
141 vsync-active = <0>; /* Active low */
142 data-active = <1>; /* Active high */
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Dcirrus,clps711x-mctrl-gpio.txt8 0 = Active high,
9 1 = Active low.
H A Dgpio-74xx-mmio.txt21 0 = Active High,
22 1 = Active Low.
H A Drockchip,rk3328-grf-gpio.txt16 0 = Active high,
17 1 = Active low.
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dpxa-camera.txt37 hsync-active = <0>; /* Active low */
38 vsync-active = <0>; /* Active low */
/freebsd/usr.sbin/bsdinstall/scripts/
H A Dauto233 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
246 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
264 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
277 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.h299 bool hasInfo() const { return !Active.empty(); } in hasInfo()
302 const LoopInfo &getInfo() const { return *Active.back(); } in getInfo()
308 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active; variable

1234