Home
last modified time | relevance | path

Searched refs:Underlying (Results 1 – 25 of 44) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Dfallible_iterator.h68 template <typename Underlying> class fallible_iterator {
84 static fallible_iterator itr(Underlying I, Error &Err) { in itr()
94 static fallible_iterator end(Underlying I) { in end()
99 auto operator*() -> decltype(*std::declval<Underlying>()) { return *I; }
102 auto operator*() const -> decltype(*std::declval<const Underlying>()) {
108 template <typename T = Underlying>
115 template <typename T = Underlying>
197 fallible_iterator(Underlying I, Error *Err) in fallible_iterator()
216 Underlying I;
222 template <typename Underlying>
[all …]
DBitmaskEnum.h90 template <typename E> typename std::underlying_type<E>::type Underlying(E Val) {
100 return static_cast<E>(~Underlying(Val) & Mask<E>());
106 return static_cast<E>(Underlying(LHS) | Underlying(RHS));
112 return static_cast<E>(Underlying(LHS) & Underlying(RHS));
118 return static_cast<E>(Underlying(LHS) ^ Underlying(RHS));
DEnumeratedArray.h28 Underlying[IX] = V; in EnumeratedArray()
34 return Underlying[IX];
43 ValueType Underlying[Size];
/external/rust/crates/protobuf-json-mapping/src/
Dwell_known_wrapper.rs16 type Underlying; typedef
18 fn get_ref(&self) -> &Self::Underlying; in get_ref() argument
19 fn get_mut(&mut self) -> &mut Self::Underlying; in get_mut() argument
23 type Underlying = f64; typedef
35 type Underlying = f32; typedef
47 type Underlying = i64; typedef
59 type Underlying = u64; typedef
71 type Underlying = i32; typedef
83 type Underlying = u32; typedef
95 type Underlying = bool; typedef
[all …]
/external/llvm/include/llvm/ADT/
DBitmaskEnum.h91 template <typename E> typename std::underlying_type<E>::type Underlying(E Val) {
101 return static_cast<E>(~Underlying(Val) & Mask<E>());
107 return static_cast<E>(Underlying(LHS) | Underlying(RHS));
113 return static_cast<E>(Underlying(LHS) & Underlying(RHS));
119 return static_cast<E>(Underlying(LHS) ^ Underlying(RHS));
/external/tensorflow/tensorflow/core/platform/
Dretrying_file_system.h33 template <typename Underlying>
36 RetryingFileSystem(std::unique_ptr<Underlying> base_file_system, in RetryingFileSystem()
162 Underlying* underlying() const { return base_file_system_.get(); } in underlying()
165 std::unique_ptr<Underlying> base_file_system_;
240 template <typename Underlying>
241 Status RetryingFileSystem<Underlying>::NewRandomAccessFile( in NewRandomAccessFile()
256 template <typename Underlying>
257 Status RetryingFileSystem<Underlying>::NewWritableFile( in NewWritableFile()
271 template <typename Underlying>
272 Status RetryingFileSystem<Underlying>::NewAppendableFile( in NewAppendableFile()
[all …]
/external/rust/crates/ring/src/
Dbssl.rs45 type Underlying = c::int; in size_and_alignment() typedef
46 assert_eq!(mem::size_of::<bssl::Result>(), mem::size_of::<Underlying>()); in size_and_alignment()
49 mem::align_of::<Underlying>() in size_and_alignment()
/external/cronet/base/allocator/partition_allocator/starscan/
Draceful_worklist.h33 using Underlying = std::vector<Node, MetadataAllocator<Node>>; variable
73 Underlying data_;
88 std::vector<typename Underlying::iterator, in Visit()
89 MetadataAllocator<typename Underlying::iterator>> in Visit()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProfReader.cpp621 InstrProfReaderIndexBase &Underlying; member in __anonfdd04aed0211::InstrProfReaderNullRemapper
624 InstrProfReaderNullRemapper(InstrProfReaderIndexBase &Underlying) in InstrProfReaderNullRemapper() argument
625 : Underlying(Underlying) {} in InstrProfReaderNullRemapper()
629 return Underlying.getRecords(FuncName, Data); in getRecords()
641 InstrProfReaderIndex<HashTableImpl> &Underlying) in InstrProfReaderItaniumRemapper() argument
642 : RemapBuffer(std::move(RemapBuffer)), Underlying(Underlying) { in InstrProfReaderItaniumRemapper()
674 for (StringRef Name : Underlying.HashTable->keys()) { in populateRemappings()
699 Error E = Underlying.getRecords(Reconstituted, Data); in getRecords()
715 return Underlying.getRecords(FuncName, Data); in getRecords()
733 InstrProfReaderIndex<HashTableImpl> &Underlying; member in llvm::InstrProfReaderItaniumRemapper
/external/vulkan-validation-layers/layers/
Dhash_util.h50 using Underlying = typename std::underlying_type<Value>::type; variable
51 return std::hash<Underlying>()(static_cast<const Underlying &>(value));
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeEnum.cpp184 codeview::TypeIndex Underlying = Record->getUnderlyingType(); in getBuiltinType() local
187 if (!Underlying.isSimple() || in getBuiltinType()
188 Underlying.getSimpleMode() != SimpleTypeMode::Direct) { in getBuiltinType()
192 switch (Underlying.getSimpleKind()) { in getBuiltinType()
/external/libvpx/third_party/googletest/src/include/gtest/internal/custom/
DREADME.md33 ### Underlying library support features
/external/libaom/third_party/googletest/src/googletest/include/gtest/internal/custom/
DREADME.md33 ### Underlying library support features
/external/googletest/googletest/include/gtest/internal/custom/
DREADME.md45 ### Underlying library support features
/external/mesa3d/src/gtest/include/gtest/internal/custom/
DREADME.md45 ### Underlying library support features
/external/cronet/third_party/boringssl/src/third_party/googletest/include/gtest/internal/custom/
DREADME.md45 ### Underlying library support features
/external/cronet/third_party/googletest/src/googletest/include/gtest/internal/custom/
DREADME.md47 ### Underlying library support features
/external/ltp/testcases/kernel/security/filecaps/
DREADME37 The Underlying kernel needs to be built with the following options for filecaps testing:
/external/cronet/base/containers/
Dbuffer_iterator_unittest.nc24 …, char>::value || std::is_same<unsigned short, unsigned char>::value': Underlying buffer type must…
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp1183 const Value* Underlying = GetUnderlyingObject(DepLoc.Ptr, DL); in eliminateDeadStores() local
1184 bool IsStoreDeadOnUnwind = isa<AllocaInst>(Underlying); in eliminateDeadStores()
1190 IsStoreDeadOnUnwind = isAllocLikeFn(Underlying, TLI) && in eliminateDeadStores()
1191 !PointerMayBeCaptured(Underlying, false, true); in eliminateDeadStores()
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs549 #region Underlying reading primitives
DCodedOutputStream.cs489 #region Underlying writing primitives
/external/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs549 #region Underlying reading primitives
DCodedOutputStream.cs489 #region Underlying writing primitives
/external/clang/lib/AST/
DASTDiagnostic.cpp141 QualType Underlying; in Desugar() local
150 Underlying = CTy->desugar(); \ in Desugar()
163 if (isa<VectorType>(Underlying)) in Desugar()
167 if (const TagType *UTT = Underlying->getAs<TagType>()) in Desugar()
174 QT = Underlying; in Desugar()

12