/freebsd/sys/contrib/openzfs/lib/libzfs_core/ |
H A D | libzfs_core.abi | 1373 <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 D | bcm958625-meraki-kingpin.dtsi | 30 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 D | libzfs.abi | 1927 <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 D | RegisterFlags.cpp | 42 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 D | DIAEnumInjectedSources.cpp | 1 //==- 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 D | DIAEnumLineNumbers.cpp | 1 //==- 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 D | DIAEnumTables.cpp | 1 //===- 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 D | DIAEnumDebugStreams.cpp | 1 //==- 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 D | DIAEnumSourceFiles.cpp | 1 //==- 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 D | DIAEnumSymbols.cpp | 1 //==- 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 D | DIAEnumFrameData.cpp | 16 : 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 D | DIAEnumSectionContribs.cpp | 19 : 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 D | ConcreteSymbolEnumerator.h | 26 : 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 D | PDBSymbolTypeFunctionSig.cpp | 32 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 D | imx8mm-verdin-yavia.dtsi | 19 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 D | imx8mp-verdin-yavia.dtsi | 47 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 D | kirkwood-c200-v1.dts | 71 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 D | armada-370-c200-v2.dts | 110 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 D | armada-385-turris-omnia.dts | 278 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 D | k3-am62-verdin-yavia.dtsi | 28 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 D | k3-am62-verdin-mallow.dtsi | 26 function-enumerator = <1>; 34 function-enumerator = <1>; 42 function-enumerator = <2>; 50 function-enumerator = <2>;
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValueEnumeration.cpp | 89 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 D | FPEnv.h | 46 /// 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 D | imx6ull-jozacp.dts | 28 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 D | imx6qdl-solidsense.dtsi | 53 function-enumerator = <0>; 60 function-enumerator = <0>; 68 function-enumerator = <1>; 75 function-enumerator = <1>;
|