| /third_party/rust/rust/compiler/rustc_middle/src/mir/interpret/ |
| D | pointer.rs | 177 pub struct Pointer<Prov = AllocId> { struct 182 static_assert_size!(Pointer, 16); argument 189 impl<Prov: Provenance> fmt::Debug for Pointer<Prov> { implementation 195 impl<Prov: Provenance> fmt::Debug for Pointer<Option<Prov>> { implementation 204 impl<Prov: Provenance> fmt::Display for Pointer<Option<Prov>> { implementation 215 impl From<AllocId> for Pointer { implementation 222 impl<Prov> From<Pointer<Prov>> for Pointer<Option<Prov>> { implementation 230 impl<Prov> Pointer<Option<Prov>> { impl 253 impl<Prov> Pointer<Option<Prov>> { impl 267 impl<'tcx, Prov> Pointer<Prov> { implementation
|
| /third_party/rust/rust/tests/ui/generic-associated-types/ |
| D | pointer_family.rs | 8 type Pointer<T>: Deref<Target = T>; typedef 15 type Pointer<T> = Arc<T>; typedef 24 type Pointer<T> = Rc<T>; typedef
|
| D | issue-87750.rs | 4 type Pointer<T>; typedef 11 type Pointer<T> = Rc<T>; typedef
|
| /third_party/rust/rust/compiler/rustc_codegen_cranelift/src/ |
| D | pointer.rs | 12 pub(crate) struct Pointer { struct 13 base: PointerBase, argument 24 impl Pointer { impl
|
| D | value_and_place.rs | 10 base: Pointer, in codegen_field() 14 ) -> (Pointer, TyAndLayout<'tcx>) { in codegen_field() 70 pub(crate) fn by_ref(ptr: Pointer, layout: TyAndLayout<'tcx>) -> CValue<'tcx> { in by_ref() 75 ptr: Pointer, in by_ref_unsized() 99 pub(crate) fn force_stack(self, fx: &mut FunctionCx<'_, '_, 'tcx>) -> (Pointer, Option<Value>) { in force_stack() 155 pub(crate) fn try_to_ptr(self) -> Option<(Pointer, Option<Value>)> { in try_to_ptr() 407 pub(crate) fn for_ptr(ptr: Pointer, layout: TyAndLayout<'tcx>) -> CPlace<'tcx> { in for_ptr() 412 ptr: Pointer, in for_ptr_with_extra() 469 pub(crate) fn to_ptr(self) -> Pointer { in to_ptr() 480 pub(crate) fn to_ptr_unsized(self) -> (Pointer, Value) { in to_ptr_unsized() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
| D | ShaderCore.hpp | 99 struct Pointer struct 151 rr::Pointer<rr::Byte> base; 154 rr::Int dynamicLimit; // If hasDynamicLimit is false, dynamicLimit is zero. 155 unsigned int staticLimit; 158 SIMD::Int dynamicOffsets; // If hasDynamicOffsets is false, all dynamicOffsets are zero. 159 std::array<int32_t, SIMD::Width> staticOffsets; 161 bool hasDynamicLimit; // True if dynamicLimit is non-zero. 162 bool hasDynamicOffsets; // True if any dynamicOffsets are non-zero.
|
| /third_party/mindspore/mindspore-src/source/mindspore/core/mindrt/src/thread/ |
| D | hqueue.h | 27 struct Pointer { struct 30 …bool operator==(const Pointer &that) const { return (index == that.index && version == that.versio… argument
|
| /third_party/rust/rust/compiler/rustc_data_structures/src/ |
| D | tagged_ptr.rs | 55 pub unsafe trait Pointer: Deref { interface 217 unsafe impl<'a, T: 'a + ?Sized + Aligned> Pointer for &'a T { impl 233 unsafe impl<'a, T: 'a + ?Sized + Aligned> Pointer for &'a mut T { impl
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
| D | PDBSymbolExe.cpp | 22 auto Pointer = findOneChild<PDBSymbolTypePointer>(); in getPointerByteSize() local
|
| /third_party/rust/rust/tests/ui/type-alias-impl-trait/ |
| D | issue-77179.rs | 5 type Pointer<T> = impl std::ops::Deref<Target = T>; typedef
|
| /third_party/skia/third_party/externals/tint/src/reader/spirv/ |
| D | parser_type.h | 155 struct Pointer : public Castable<Pointer, Type> { struct 175 Type const* const type; 177 ast::StorageClass const storage_class;
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
| D | templateref_opaque.hpp | 11 typedef typename detail::PointerType<T> Pointer; typedef in UniquePtr
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | PointerSumType.h | 100 void set(typename HelperT::template Lookup<N>::PointerT Pointer) { in set() 110 create(typename HelperT::template Lookup<N>::PointerT Pointer) { in create()
|
| /third_party/skia/third_party/externals/tint/src/sem/ |
| D | pointer_type.cc | 25 Pointer::Pointer(const Type* subtype, in Pointer() function in tint::sem::Pointer
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
| D | inlined_vector.h | 128 using Pointer = typename AllocatorTraits::pointer; member 139 using Pointer = typename AllocatorTraits::pointer; variable 162 using Pointer = typename AllocatorTraits::pointer; variable 182 using Pointer = typename AllocatorTraits::pointer; variable 197 using Pointer = typename AllocatorTraits::pointer; variable 237 using Pointer = typename AllocatorTraits::pointer; variable
|
| /third_party/skia/third_party/externals/tint/src/ast/ |
| D | pointer.cc | 24 Pointer::Pointer(ProgramID pid, in Pointer() function in tint::ast::Pointer
|
| /third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
| D | lp_bld.h | 106 LLVMValueRef Pointer, LLVMValueRef *Indices, in LLVMBuildGEP2() 114 LLVMValueRef Pointer, LLVMValueRef *Indices, in LLVMBuildInBoundsGEP2()
|
| /third_party/protobuf/third_party/abseil-cpp/absl/container/internal/ |
| D | inlined_vector.h | 54 using Pointer = typename AllocatorTraits<A>::pointer; variable
|
| /third_party/rust/rust/compiler/rustc_data_structures/src/tagged_ptr/copy/ |
| D | tests.rs | 48 fn tag_ptr<P: Pointer, T: Tag>(ptr: P, tag: T) -> CopyTaggedPtr<P, T, true> { in tag_ptr()
|
| /third_party/rust/rust/tests/ui/lint/ |
| D | function-item-references.rs | 27 fn bound_by_ptr_trait_tuple<F: Pointer, G: Pointer>(_t: (F, G)) { } in bound_by_ptr_trait_tuple() 35 fn _format_assoc_item<T: HasItem>(data: T, f: &mut Formatter) -> std::fmt::Result in _format_assoc_item()
|
| /third_party/rust/rust/compiler/rustc_data_structures/src/tagged_ptr/drop/ |
| D | tests.rs | 69 fn tag_ptr<P: Pointer, T: Tag>(ptr: P, tag: T) -> TaggedPtr<P, T, true> { in tag_ptr()
|
| /third_party/rust/rust/src/tools/miri/src/ |
| D | tag_gc.rs | 37 impl VisitTags for Pointer<Provenance> { implementation 44 impl VisitTags for Pointer<Option<Provenance>> { implementation
|
| /third_party/skia/third_party/externals/tint/src/resolver/ |
| D | is_host_shareable_test.cc | 90 TEST_F(ResolverIsHostShareable, Pointer) { in TEST_F() argument
|
| /third_party/zlib/contrib/delphi/ |
| D | ZLib.pas | 223 procedure _free(Block: Pointer); cdecl; 260 procedure zlibFreeMem(AppData, Block: Pointer); cdecl;
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
| D | optimization_test.cc | 71 TEST(PredictTest, Pointer) { in TEST() argument
|