Home
last modified time | relevance | path

Searched refs:Hd (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/
Dtypelist.h67 template<typename Hd, typename Typelist> in _GLIBCXX_VISIBILITY()
70 typedef Hd head; in _GLIBCXX_VISIBILITY()
148 template<typename Fn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
149 struct apply_<Fn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
154 f.operator()(Hd()); in _GLIBCXX_VISIBILITY()
170 template<typename Gn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
171 struct apply_generator1_<Gn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
176 g.template operator()<Hd>(); in _GLIBCXX_VISIBILITY()
214 template<typename Hd, typename Tl, typename Typelist_Chain> in _GLIBCXX_VISIBILITY()
215 struct append_<chain<Hd, Tl>, Typelist_Chain> in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
Dtypelist.h66 template<typename Hd, typename Typelist> in _GLIBCXX_VISIBILITY()
69 typedef Hd head; in _GLIBCXX_VISIBILITY()
136 template<typename Fn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
137 struct apply_<Fn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
142 f.operator()(Hd()); in _GLIBCXX_VISIBILITY()
158 template<typename Gn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
159 struct apply_generator1_<Gn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
164 g.template operator()<Hd>(); in _GLIBCXX_VISIBILITY()
202 template<typename Hd, typename Tl, typename Typelist_Chain> in _GLIBCXX_VISIBILITY()
203 struct append_<chain<Hd, Tl>, Typelist_Chain> in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/lib/libefivar/
HDefivar-dp-format.c1783 HARDDRIVE_DEVICE_PATH *Hd; in DevPathToTextHardDrive() local
1785 Hd = DevPath; in DevPathToTextHardDrive()
1786 switch (Hd->SignatureType) { in DevPathToTextHardDrive()
1791 Hd->PartitionNumber, in DevPathToTextHardDrive()
1794 le32dec(&(Hd->Signature[0])) in DevPathToTextHardDrive()
1802 Hd->PartitionNumber, in DevPathToTextHardDrive()
1804 G(&(Hd->Signature[0])) in DevPathToTextHardDrive()
1812 Hd->PartitionNumber, in DevPathToTextHardDrive()
1813 Hd->SignatureType in DevPathToTextHardDrive()
1818 UefiDevicePathLibCatPrint (Str, "0x%lx,0x%lx)", Hd->PartitionStart, Hd->PartitionSize); in DevPathToTextHardDrive()
HDefivar-dp-parse.c2914 HARDDRIVE_DEVICE_PATH *Hd; in DevPathFromTextHD() local
2921 Hd = (HARDDRIVE_DEVICE_PATH *) CreateDeviceNode ( in DevPathFromTextHD()
2927 Hd->PartitionNumber = (UINT32) Strtoi (PartitionStr); in DevPathFromTextHD()
2929 ZeroMem (Hd->Signature, 16); in DevPathFromTextHD()
2930 Hd->MBRType = (UINT8) 0; in DevPathFromTextHD()
2933 Hd->SignatureType = SIGNATURE_TYPE_MBR; in DevPathFromTextHD()
2934 Hd->MBRType = 0x01; in DevPathFromTextHD()
2937 CopyMem (Hd->Signature, &Signature32, sizeof (UINT32)); in DevPathFromTextHD()
2939 Hd->SignatureType = SIGNATURE_TYPE_GUID; in DevPathFromTextHD()
2940 Hd->MBRType = 0x02; in DevPathFromTextHD()
[all …]