Home
last modified time | relevance | path

Searched defs:Pointer (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/rust/rust/compiler/rustc_middle/src/mir/interpret/
Dpointer.rs177 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/
Dpointer_family.rs8 type Pointer<T>: Deref<Target = T>; typedef
15 type Pointer<T> = Arc<T>; typedef
24 type Pointer<T> = Rc<T>; typedef
Dissue-87750.rs4 type Pointer<T>; typedef
11 type Pointer<T> = Rc<T>; typedef
/third_party/rust/rust/compiler/rustc_codegen_cranelift/src/
Dpointer.rs12 pub(crate) struct Pointer { struct
13 base: PointerBase, argument
24 impl Pointer { impl
Dvalue_and_place.rs10 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/
DShaderCore.hpp99 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/
Dhqueue.h27 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/
Dtagged_ptr.rs55 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/
DPDBSymbolExe.cpp22 auto Pointer = findOneChild<PDBSymbolTypePointer>(); in getPointerByteSize() local
/third_party/rust/rust/tests/ui/type-alias-impl-trait/
Dissue-77179.rs5 type Pointer<T> = impl std::ops::Deref<Target = T>; typedef
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_type.h155 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/
Dtemplateref_opaque.hpp11 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/
DPointerSumType.h100 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/
Dpointer_type.cc25 Pointer::Pointer(const Type* subtype, in Pointer() function in tint::sem::Pointer
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dinlined_vector.h128 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/
Dpointer.cc24 Pointer::Pointer(ProgramID pid, in Pointer() function in tint::ast::Pointer
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld.h106 LLVMValueRef Pointer, LLVMValueRef *Indices, in LLVMBuildGEP2()
114 LLVMValueRef Pointer, LLVMValueRef *Indices, in LLVMBuildInBoundsGEP2()
/third_party/protobuf/third_party/abseil-cpp/absl/container/internal/
Dinlined_vector.h54 using Pointer = typename AllocatorTraits<A>::pointer; variable
/third_party/rust/rust/compiler/rustc_data_structures/src/tagged_ptr/copy/
Dtests.rs48 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/
Dfunction-item-references.rs27 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/
Dtests.rs69 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/
Dtag_gc.rs37 impl VisitTags for Pointer<Provenance> { implementation
44 impl VisitTags for Pointer<Option<Provenance>> { implementation
/third_party/skia/third_party/externals/tint/src/resolver/
Dis_host_shareable_test.cc90 TEST_F(ResolverIsHostShareable, Pointer) { in TEST_F() argument
/third_party/zlib/contrib/delphi/
DZLib.pas223 procedure _free(Block: Pointer); cdecl;
260 procedure zlibFreeMem(AppData, Block: Pointer); cdecl;
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Doptimization_test.cc71 TEST(PredictTest, Pointer) { in TEST() argument

1234