Home
last modified time | relevance | path

Searched refs:_ptr (Results 1 – 25 of 38) sorted by relevance

12

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_jit.h205 #define lp_jit_context_constants(_gallivm, _ptr) \ argument
206 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_CONSTANTS, "constants")
208 #define lp_jit_context_num_constants(_gallivm, _ptr) \ argument
209 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_NUM_CONSTANTS, "num_constants")
211 #define lp_jit_context_textures(_gallivm, _ptr) \ argument
212 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_TEXTURES, "textures")
214 #define lp_jit_context_samplers(_gallivm, _ptr) \ argument
215 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_SAMPLERS, "samplers")
217 #define lp_jit_context_images(_gallivm, _ptr) \ argument
218 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_IMAGES, "images")
[all …]
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm.h191 #define draw_jit_context_vs_constants(_variant, _ptr) \ argument
192 …lp_build_struct_get_ptr2(_variant->gallivm, _variant->context_type, _ptr, DRAW_JIT_CTX_CONSTANTS, …
194 #define draw_jit_context_num_vs_constants(_variant, _ptr) \ argument
195 …lp_build_struct_get_ptr2(_variant->gallivm, _variant->context_type, _ptr, DRAW_JIT_CTX_NUM_CONSTAN…
197 #define draw_jit_context_planes(_gallivm, _type, _ptr) \ argument
198 lp_build_struct_get2(_gallivm, _type, _ptr, DRAW_JIT_CTX_PLANES, "planes")
200 #define draw_jit_context_viewports(_variant, _ptr) \ argument
201 …lp_build_struct_get2(_variant->gallivm, _variant->context_type, _ptr, DRAW_JIT_CTX_VIEWPORT, "view…
203 #define draw_jit_context_textures(_gallivm, _ptr) \ argument
204 lp_build_struct_get_ptr(_gallivm, _ptr, DRAW_JIT_CTX_TEXTURES, "textures")
[all …]
/third_party/mesa3d/src/util/
Du_memory.h50 #define FREE(_ptr ) os_free(_ptr) argument
52 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size) argument
62 #define align_free(_ptr) os_free_aligned(_ptr) argument
63 #define align_realloc(_ptr, _oldsize, _newsize, _alignment) os_realloc_aligned(_ptr, _oldsize, _new… argument
Dos_memory_stdc.h43 #define os_free(_ptr) free(_ptr) argument
53 #define os_free_aligned(_ptr) _aligned_free(_ptr) argument
54 #define os_realloc_aligned(_ptr, _oldsize, _newsize, _alignment) _aligned_realloc(_ptr, _newsize, _… argument
Dos_memory_debug.h87 #define os_free( _ptr ) \ argument
88 debug_free( __FILE__, __LINE__, __FUNCTION__, _ptr )
89 #define os_realloc( _ptr, _old_size, _new_size ) \ argument
90 debug_realloc( __FILE__, __LINE__, __FUNCTION__, _ptr, _old_size, _new_size )
Dos_memory_aligned.h63 #define os_free_aligned(_ptr) free(_ptr) argument
/third_party/lzma/CPP/Windows/
DMemoryGlobal.h39 LPVOID _ptr; variable
41 LPVOID GetPointer() const { return _ptr; } in GetPointer()
44 _ptr = GlobalLock(hGlobal); in CGlobalLock()
48 if (_ptr != NULL) in ~CGlobalLock()
/third_party/popt/src/
Dsystem.h47 #define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) ? : vmefail()) argument
52 #define xrealloc(_ptr, _size) realloc((_ptr), (_size)) argument
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dmisc.h71 #define PARENT(_ptr, _type, _member) ({ \ argument
72 __typeof__ (&((_type *) 0)->_member) _p = (_ptr); \
78 #define CONST_PARENT(_ptr, _type, _member) ({ \ argument
79 __typeof__ (&((const _type *) 0)->_member) _p = (_ptr); \
171 #define PARENT(_ptr, _type, _member) \ argument
172 ((0 == offsetof (_type, _member)) ? (_type *)(_ptr) \
173 : (_type *) PARENT_HELPER ((char *)(_ptr), offsetof (_type, _member)))
174 #define CONST_PARENT(_ptr, _type, _member) \ argument
175 ((0 == offsetof (const _type, _member)) ? (const _type *)(_ptr) \
176 : (const _type *) CONST_PARENT_HELPER ((const char *)(_ptr), \
/third_party/mesa3d/src/vulkan/util/
Dvk_alloc.h211 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \ argument
213 _type **_tmp = (_ptr); \
215 vk_multialloc_add_size_align((_ma), (void **)(_ptr), \
219 #define vk_multialloc_add(_ma, _ptr, _type, _count) \ argument
220 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr)));
/third_party/rust/crates/cxx/book/src/
DSUMMARY.md31 - [UniquePtr\<T\> &mdash; std::unique\_ptr\<T\>](binding/uniqueptr.md)
32 - [SharedPtr\<T\> &mdash; std::shared\_ptr\<T\>](binding/sharedptr.md)
Dcontext.md51 returns std::unique\_ptr\<T\> through bindgen. Why? Because unique\_ptr, despite
Dindex.md29 types like strings, vectors, Box, unique\_ptr, etc to expose an idiomatic API on
Dextern-c++.md293 CXX's support for C++'s std::unique\_ptr and std::vector is built on a set of
/third_party/rust/crates/cxx/book/src/binding/
Duniqueptr.md2 # std::unique\_ptr\<T\>
4 The Rust binding of std::unique\_ptr\<T\> is called **[`UniquePtr<T>`]**. See
Dsharedptr.md2 # std::shared\_ptr\<T\>
4 The Rust binding of std::shared\_ptr\<T\> is called **[`SharedPtr<T>`]**. See
/third_party/gstreamer/gstreamer/gst/
Dgstregistrybinary.c86 #define align(_ptr) _ptr += (( alignment(_ptr) == 0) ? 0 : ALIGNMENT-alignment(_ptr)) argument
Dgstregistrychunks.c113 #define align(_ptr) _ptr += (( alignment(_ptr) == 0) ? 0 : ALIGNMENT-alignment(_ptr)) argument
/third_party/rust/crates/memoffset/src/
Dlib.rs83 pub fn size_of_pointee<T>(_ptr: *const T) -> usize { in size_of_pointee()
/third_party/node/deps/simdutf/
Dsimdutf.h2712 atomic_ptr(T *_ptr) : ptr{_ptr} {} in atomic_ptr() argument
2722 atomic_ptr& operator=(T *_ptr) { ptr = _ptr; return *this; }
2732 atomic_ptr& operator=(T *_ptr) { ptr = _ptr; return *this; }
/third_party/node/deps/openssl/openssl/crypto/evp/
Dbio_ok.c418 static void longswap(void *_ptr, size_t len) in longswap() argument
424 unsigned char *p = _ptr, c; in longswap()
/third_party/openssl/crypto/evp/
Dbio_ok.c418 static void longswap(void *_ptr, size_t len) in longswap() argument
424 unsigned char *p = _ptr, c; in longswap()
/third_party/lwip/src/apps/http/makefsdata/
Dtinydir.h176 #define _TINYDIR_FREE(_ptr) free(_ptr) argument
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dbio.rs148 _ptr: *mut c_void, in ctrl()
/third_party/libunwind/doc/
Dlibunwind-dynamic.tex133 \item[\Type{unw\_word\_t} \Var{name\_ptr}] The address of a
169 \item[\Type{unw\_word\_t} \Var{name\_ptr}] The address of a

12