/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_jit.h | 205 #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/ |
D | draw_llvm.h | 191 #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/ |
D | u_memory.h | 50 #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
|
D | os_memory_stdc.h | 43 #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
|
D | os_memory_debug.h | 87 #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 )
|
D | os_memory_aligned.h | 63 #define os_free_aligned(_ptr) free(_ptr) argument
|
/third_party/lzma/CPP/Windows/ |
D | MemoryGlobal.h | 39 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/ |
D | system.h | 47 #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/ |
D | misc.h | 71 #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/ |
D | vk_alloc.h | 211 #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/ |
D | SUMMARY.md | 31 - [UniquePtr\<T\> — std::unique\_ptr\<T\>](binding/uniqueptr.md) 32 - [SharedPtr\<T\> — std::shared\_ptr\<T\>](binding/sharedptr.md)
|
D | context.md | 51 returns std::unique\_ptr\<T\> through bindgen. Why? Because unique\_ptr, despite
|
D | index.md | 29 types like strings, vectors, Box, unique\_ptr, etc to expose an idiomatic API on
|
D | extern-c++.md | 293 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/ |
D | uniqueptr.md | 2 # std::unique\_ptr\<T\> 4 The Rust binding of std::unique\_ptr\<T\> is called **[`UniquePtr<T>`]**. See
|
D | sharedptr.md | 2 # std::shared\_ptr\<T\> 4 The Rust binding of std::shared\_ptr\<T\> is called **[`SharedPtr<T>`]**. See
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstregistrybinary.c | 86 #define align(_ptr) _ptr += (( alignment(_ptr) == 0) ? 0 : ALIGNMENT-alignment(_ptr)) argument
|
D | gstregistrychunks.c | 113 #define align(_ptr) _ptr += (( alignment(_ptr) == 0) ? 0 : ALIGNMENT-alignment(_ptr)) argument
|
/third_party/rust/crates/memoffset/src/ |
D | lib.rs | 83 pub fn size_of_pointee<T>(_ptr: *const T) -> usize { in size_of_pointee()
|
/third_party/node/deps/simdutf/ |
D | simdutf.h | 2712 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/ |
D | bio_ok.c | 418 static void longswap(void *_ptr, size_t len) in longswap() argument 424 unsigned char *p = _ptr, c; in longswap()
|
/third_party/openssl/crypto/evp/ |
D | bio_ok.c | 418 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/ |
D | tinydir.h | 176 #define _TINYDIR_FREE(_ptr) free(_ptr) argument
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | bio.rs | 148 _ptr: *mut c_void, in ctrl()
|
/third_party/libunwind/doc/ |
D | libunwind-dynamic.tex | 133 \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
|