Home
last modified time | relevance | path

Searched refs:_ptr (Results 1 – 25 of 32) 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) 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/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/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/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/memoffset/src/
Dlib.rs83 pub fn size_of_pointee<T>(_ptr: *const T) -> usize { in size_of_pointee()
/third_party/node/deps/simdutf/
Dsimdutf.h3373 atomic_ptr(T *_ptr) : ptr{_ptr} {} in atomic_ptr() argument
3383 atomic_ptr& operator=(T *_ptr) { ptr = _ptr; return *this; }
3393 atomic_ptr& operator=(T *_ptr) { ptr = _ptr; return *this; }
/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/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/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/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
/third_party/rust/crates/cxx/
DREADME.md307 in Rust backed by a real C++ unique\_ptr, we have a way of using a Rust trait
/third_party/json/
DChangeLog.md137 - std::shared\_ptr\<T\> == nlohmann::json compiles, which seem undesirable [\#3026](https://github.…
918 - why root\_schema be implemented as unique\_ptr in json-validator.cpp,could I use it as shared\_p…
2238 - 2.1.1+ breaks compilation of shared\_ptr\<json\> == 0 [\#610](https://github.com/nlohmann/json/is…
2819 - Question about get\_ptr\(\) [\#127](https://github.com/nlohmann/json/issues/127)
2911 - unique\_ptr for ownership [\#7](https://github.com/nlohmann/json/issues/7)
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md568 …s://github.com/nodejs/node/commit/2f17c52674)] - **src**: use std::unique\_ptr for STACK\_OF(X509)…
1617 * \[[`60423f5845`](https://github.com/nodejs/node/commit/60423f5845)] - **src**: use unique\_ptr fo…
1619 * \[[`1b76cfe3c2`](https://github.com/nodejs/node/commit/1b76cfe3c2)] - **src**: use unique\_ptr fo…
1620 …s://github.com/nodejs/node/commit/af63df80b4)] - **src**: use std::unique\_ptr in base-object-inl.…
1630 * \[[`a05c49c48d`](https://github.com/nodejs/node/commit/a05c49c48d)] - **src**: use unique\_ptr fo…
1634 * \[[`8522e2420d`](https://github.com/nodejs/node/commit/8522e2420d)] - **src**: use unique\_ptr in…
1923 …ode/commit/60a6caea76)] - **src**: turn inspector raw pointer into unique\_ptr (Franziska Hinkelma…

12