Home
last modified time | relevance | path

Searched full:enumerator (Results 1 – 25 of 251) sorted by relevance

1234567891011

/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm958625-meraki-kingpin.dtsi30 function-enumerator = <0>;
38 function-enumerator = <1>;
46 function-enumerator = <2>;
54 function-enumerator = <3>;
62 function-enumerator = <4>;
70 function-enumerator = <5>;
78 function-enumerator = <6>;
86 function-enumerator = <7>;
94 function-enumerator = <8>;
102 function-enumerator = <9>;
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dst,led1202.yaml72 function-enumerator = <1>;
79 function-enumerator = <2>;
86 function-enumerator = <3>;
93 function-enumerator = <4>;
100 function-enumerator = <5>;
107 function-enumerator = <6>;
114 function-enumerator = <7>;
121 function-enumerator = <8>;
128 function-enumerator = <9>;
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs.abi2322 <enumerator name='ZFS_TYPE_INVALID' value='0'/>
2323 <enumerator name='ZFS_TYPE_FILESYSTEM' value='1'/>
2324 <enumerator name='ZFS_TYPE_SNAPSHOT' value='2'/>
2325 <enumerator name='ZFS_TYPE_VOLUME' value='4'/>
2326 <enumerator name='ZFS_TYPE_POOL' value='8'/>
2327 <enumerator name='ZFS_TYPE_BOOKMARK' value='16'/>
2328 <enumerator name='ZFS_TYPE_VDEV' value='32'/>
2333 <enumerator name='DMU_OST_NONE' value='0'/>
2334 <enumerator name='DMU_OST_META' value='1'/>
2335 <enumerator name='DMU_OST_ZFS' value='2'/>
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mp-aristainetos3-proton2s.dts77 function-enumerator = <20>;
84 function-enumerator = <20>;
91 function-enumerator = <21>;
98 function-enumerator = <21>;
105 function-enumerator = <21>;
112 function-enumerator = <22>;
119 function-enumerator = <22>;
126 function-enumerator = <22>;
H A Dimx8mm-verdin-yavia.dtsi19 function-enumerator = <1>;
26 function-enumerator = <1>;
33 function-enumerator = <1>;
40 function-enumerator = <2>;
47 function-enumerator = <2>;
54 function-enumerator = <2>;
H A Dimx8mp-verdin-yavia.dtsi47 function-enumerator = <1>;
54 function-enumerator = <1>;
61 function-enumerator = <1>;
68 function-enumerator = <2>;
75 function-enumerator = <2>;
82 function-enumerator = <2>;
H A Dimx8mp-aristainetos3-helios.dts24 function-enumerator = <20>;
32 function-enumerator = <20>;
40 function-enumerator = <20>;
48 function-enumerator = <20>;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterFlags.cpp42 for (const auto &enumerator : m_enum_type->GetEnumerators()) { in Field() local
43 UNUSED_IF_ASSERT_DISABLED(enumerator); in Field()
44 assert(enumerator.m_value <= max_value && in Field()
45 "Enumerator value exceeds maximum value for this field"); in Field()
251 // The first enumerator of a line doesn't need to be separated. in DumpEnumerators()
257 // Don't put "," after the last enumerator. in DumpEnumerators()
262 // If printing the next enumerator would take us over the width, start in DumpEnumerators()
263 // a new line. However, if we're printing the first enumerator of this in DumpEnumerators()
279 // name of the enumerator. in DumpEnumerators()
352 for (const auto &enumerator : enumerators) { in ToXML() local
[all …]
/freebsd/sys/contrib/openzfs/lib/libzfs_core/
H A Dlibzfs_core.abi2379 <enumerator name='LZC_DATSET_TYPE_ZFS' value='2'/>
2380 <enumerator name='LZC_DATSET_TYPE_ZVOL' value='3'/>
2384 <enumerator name='LZC_SEND_FLAG_EMBED_DATA' value='1'/>
2385 <enumerator name='LZC_SEND_FLAG_LARGE_BLOCK' value='2'/>
2386 <enumerator name='LZC_SEND_FLAG_COMPRESS' value='4'/>
2387 <enumerator name='LZC_SEND_FLAG_RAW' value='8'/>
2388 <enumerator name='LZC_SEND_FLAG_SAVED' value='16'/>
2401 <enumerator name='DMU_OT_NONE' value='0'/>
2402 <enumerator name='DMU_OT_OBJECT_DIRECTORY' value='1'/>
2403 <enumerator name='DMU_OT_OBJECT_ARRAY' value='2'/>
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumInjectedSources.cpp1 //==- DIAEnumSourceFiles.cpp - DIA Source File Enumerator impl ---*- C++ -*-==//
18 : Enumerator(DiaEnumerator) {} in DIAEnumInjectedSources()
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
28 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
43 void DIAEnumInjectedSources::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumLineNumbers.cpp1 //==- DIAEnumLineNumbers.cpp - DIA Line Number Enumerator impl ---*- C++ -*-==//
18 : Enumerator(DiaEnumerator) {} in DIAEnumLineNumbers()
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
28 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
43 void DIAEnumLineNumbers::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumTables.cpp1 //===- DIAEnumTables.cpp - DIA Table Enumerator Impl ------------*- C++ -*-===//
16 : Enumerator(DiaEnumerator) {} in DIAEnumTables()
20 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
29 if (S_OK != Enumerator->Item(Var, &Item)) in getChildAtIndex()
38 if (S_OK != Enumerator->Next(1, &Item, &CeltFetched)) in getNext()
44 void DIAEnumTables::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumDebugStreams.cpp1 //==- DIAEnumDebugStreams.cpp - DIA Debug Stream Enumerator impl -*- C++ -*-==//
18 : Enumerator(DiaEnumerator) {} in DIAEnumDebugStreams()
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
31 if (S_OK != Enumerator->Item(VarIndex, &Item)) in getChildAtIndex()
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
46 void DIAEnumDebugStreams::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumSourceFiles.cpp1 //==- DIAEnumSourceFiles.cpp - DIA Source File Enumerator impl ---*- C++ -*-==//
18 : Session(PDBSession), Enumerator(DiaEnumerator) {} in DIAEnumSourceFiles()
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
28 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
43 void DIAEnumSourceFiles::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumSymbols.cpp1 //==- DIAEnumSymbols.cpp - DIA Symbol Enumerator impl ------------*- C++ -*-==//
19 : Session(PDBSession), Enumerator(DiaEnumerator) {} in DIAEnumSymbols()
23 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
29 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
47 void DIAEnumSymbols::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumFrameData.cpp16 : Enumerator(DiaEnumerator) {} in DIAEnumFrameData()
20 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
26 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
35 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
41 void DIAEnumFrameData::reset() { Enumerator->Reset(); } in reset()
H A DDIAEnumSectionContribs.cpp19 : Session(PDBSession), Enumerator(DiaEnumerator) {} in DIAEnumSectionContribs()
23 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; in getChildCount()
29 if (S_OK != Enumerator->Item(Index, &Item)) in getChildAtIndex()
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) in getNext()
46 void DIAEnumSectionContribs::reset() { Enumerator->Reset(); } in reset()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DConcreteSymbolEnumerator.h26 : Enumerator(std::move(SymbolEnumerator)) {} in ConcreteSymbolEnumerator()
31 return Enumerator->getChildCount(); in getChildCount()
35 std::unique_ptr<PDBSymbol> Child = Enumerator->getChildAtIndex(Index); in getChildAtIndex()
40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
43 void reset() override { Enumerator->reset(); } in reset()
47 std::unique_ptr<IPDBEnumSymbols> Enumerator;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolTypeFunctionSig.cpp32 Enumerator(Sig.findAllChildren<PDBSymbolTypeFunctionArg>()) {} in FunctionArgEnumerator()
36 : Session(PDBSession), Enumerator(std::move(ArgEnumerator)) {} in FunctionArgEnumerator()
39 return Enumerator->getChildCount(); in getChildCount()
43 auto FunctionArgSymbol = Enumerator->getChildAtIndex(Index); in getChildAtIndex()
50 auto FunctionArgSymbol = Enumerator->getNext(); in getNext()
56 void reset() override { Enumerator->reset(); } in reset()
60 std::unique_ptr<ArgEnumeratorType> Enumerator; member in __anonb5d4328e0111::FunctionArgEnumerator
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Dkirkwood-c200-v1.dts71 function-enumerator = <2>;
78 function-enumerator = <1>;
85 function-enumerator = <2>;
92 function-enumerator = <1>;
129 function-enumerator = <1>;
136 function-enumerator = <1>;
145 function-enumerator = <2>;
152 function-enumerator = <2>;
H A Darmada-370-c200-v2.dts110 function-enumerator = <2>;
117 function-enumerator = <2>;
124 function-enumerator = <1>;
131 function-enumerator = <1>;
138 function-enumerator = <2>;
145 function-enumerator = <1>;
152 function-enumerator = <2>;
183 function-enumerator = <1>;
H A Darmada-385-turris-omnia.dts279 function-enumerator = <2>;
286 function-enumerator = <1>;
293 function-enumerator = <3>;
300 function-enumerator = <2>;
307 function-enumerator = <1>;
320 function-enumerator = <4>;
327 function-enumerator = <3>;
334 function-enumerator = <2>;
341 function-enumerator = <1>;
348 function-enumerator = <0>;
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am62-verdin-yavia.dtsi28 function-enumerator = <1>;
35 function-enumerator = <1>;
42 function-enumerator = <1>;
49 function-enumerator = <2>;
56 function-enumerator = <2>;
63 function-enumerator = <2>;
H A Dk3-am62p-verdin-yavia.dtsi32 function-enumerator = <1>;
40 function-enumerator = <1>;
48 function-enumerator = <1>;
56 function-enumerator = <2>;
64 function-enumerator = <2>;
72 function-enumerator = <2>;
/freebsd/sys/contrib/device-tree/src/arm/renesas/
H A Dr9a06g032-rzn1d400-db.dts99 function-enumerator = <0>;
106 function-enumerator = <1>;
113 function-enumerator = <2>;
120 function-enumerator = <3>;
127 function-enumerator = <4>;
134 function-enumerator = <5>;
141 function-enumerator = <6>;
148 function-enumerator = <7>;

1234567891011