Home
last modified time | relevance | path

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

12345678910

/freebsd/sys/contrib/openzfs/lib/libzfs_core/
H A Dlibzfs_core.abi1373 <enumerator name='LZC_DATSET_TYPE_ZFS' value='2'/>
1374 <enumerator name='LZC_DATSET_TYPE_ZVOL' value='3'/>
1378 <enumerator name='LZC_SEND_FLAG_EMBED_DATA' value='1'/>
1379 <enumerator name='LZC_SEND_FLAG_LARGE_BLOCK' value='2'/>
1380 <enumerator name='LZC_SEND_FLAG_COMPRESS' value='4'/>
1381 <enumerator name='LZC_SEND_FLAG_RAW' value='8'/>
1382 <enumerator name='LZC_SEND_FLAG_SAVED' value='16'/>
1395 <enumerator name='DMU_OT_NONE' value='0'/>
1396 <enumerator name='DMU_OT_OBJECT_DIRECTORY' value='1'/>
1397 <enumerator name='DMU_OT_OBJECT_ARRAY' value='2'/>
[all …]
/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/openzfs/lib/libzfs/
H A Dlibzfs.abi1927 <enumerator name='ZFS_TYPE_INVALID' value='0'/>
1928 <enumerator name='ZFS_TYPE_FILESYSTEM' value='1'/>
1929 <enumerator name='ZFS_TYPE_SNAPSHOT' value='2'/>
1930 <enumerator name='ZFS_TYPE_VOLUME' value='4'/>
1931 <enumerator name='ZFS_TYPE_POOL' value='8'/>
1932 <enumerator name='ZFS_TYPE_BOOKMARK' value='16'/>
1933 <enumerator name='ZFS_TYPE_VDEV' value='32'/>
1938 <enumerator name='DMU_OST_NONE' value='0'/>
1939 <enumerator name='DMU_OST_META' value='1'/>
1940 <enumerator name='DMU_OST_ZFS' value='2'/>
[all …]
/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/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/arm64/freescale/
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>;
/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.dts278 function-enumerator = <2>;
285 function-enumerator = <1>;
292 function-enumerator = <3>;
299 function-enumerator = <2>;
306 function-enumerator = <1>;
319 function-enumerator = <4>;
326 function-enumerator = <3>;
333 function-enumerator = <2>;
340 function-enumerator = <1>;
347 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-am62-verdin-mallow.dtsi26 function-enumerator = <1>;
34 function-enumerator = <1>;
42 function-enumerator = <2>;
50 function-enumerator = <2>;
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp89 for (const auto &enumerator : enumerators) { in SetEnumerations() local
90 ConstString const_enumerator_name(enumerator.string_value); in SetEnumerations()
91 EnumeratorInfo enumerator_info = {enumerator.value, enumerator.usage}; in SetEnumerations()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFPEnv.h46 /// Returns a valid RoundingMode enumerator when given a string
51 /// For any RoundingMode enumerator, returns a string valid as input in
55 /// Returns a valid ExceptionBehavior enumerator when given a string
59 /// For any ExceptionBehavior enumerator, returns a string valid as
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6ull-jozacp.dts28 function-enumerator = <0>;
36 function-enumerator = <1>;
44 function-enumerator = <2>;
58 function-enumerator = <3>;
66 function-enumerator = <4>;
74 function-enumerator = <5>;
H A Dimx6qdl-solidsense.dtsi53 function-enumerator = <0>;
60 function-enumerator = <0>;
68 function-enumerator = <1>;
75 function-enumerator = <1>;

12345678910