/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_jit.h | 202 #define lp_jit_context_constants(_gallivm, _ptr) \ argument 203 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_CONSTANTS, "constants") 205 #define lp_jit_context_num_constants(_gallivm, _ptr) \ argument 206 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_NUM_CONSTANTS, "num_constants") 208 #define lp_jit_context_textures(_gallivm, _ptr) \ argument 209 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_TEXTURES, "textures") 211 #define lp_jit_context_samplers(_gallivm, _ptr) \ argument 212 lp_build_struct_get_ptr(_gallivm, _ptr, LP_JIT_CTX_SAMPLERS, "samplers") 214 #define lp_jit_context_images(_gallivm, _ptr) \ argument 215 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(_gallivm, _ptr) \ argument 192 lp_build_struct_get_ptr(_gallivm, _ptr, DRAW_JIT_CTX_CONSTANTS, "vs_constants") 194 #define draw_jit_context_num_vs_constants(_gallivm, _ptr) \ argument 195 lp_build_struct_get_ptr(_gallivm, _ptr, DRAW_JIT_CTX_NUM_CONSTANTS, "num_vs_constants") 197 #define draw_jit_context_planes(_gallivm, _ptr) \ argument 198 lp_build_struct_get(_gallivm, _ptr, DRAW_JIT_CTX_PLANES, "planes") 200 #define draw_jit_context_viewports(_gallivm, _ptr) \ argument 201 lp_build_struct_get(_gallivm, _ptr, DRAW_JIT_CTX_VIEWPORT, "viewports") 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/flutter/skia/modules/canvaskit/ |
D | helper.js | 207 this._ptr = null; 222 if (this._ptr) { 240 if (this._ptr) { 242 var floatPtr = (this._ptr / BYTES_PER_ELEMENT) + idx; 261 if (this._ptr) { 262 return this._ptr; 264 this._ptr = copy1dArray(this._floats, CanvasKit.HEAPF32); 265 return this._ptr; 275 if (this._ptr) { 276 CanvasKit._free(this._ptr); [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/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/libnl/include/netlink-private/ |
D | utils.h | 149 __typeof__ (*_to_free) _ptr; \ 155 _ptr = alloca (_bytes); \ 157 _ptr = malloc (_bytes); \ 158 *_to_free = _ptr; \ 161 _ptr; \
|
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/include/ |
D | shard_error.h | 53 #define RETURN_UNEXPECTED_IF_NULL(_ptr) \ argument 55 if ((_ptr) == nullptr) { \ 56 std::string err_msg = "The pointer[" + std::string(#_ptr) + "] is null."; \
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_alloc.h | 210 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \ argument 212 _type **_tmp = (_ptr); \ 214 vk_multialloc_add_size_align((_ma), (void **)(_ptr), \ 218 #define vk_multialloc_add(_ma, _ptr, _type, _count) \ argument 219 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr)));
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/ |
D | status.h | 63 #define RETURN_UNEXPECTED_IF_NULL(_ptr) \ argument 65 if ((_ptr) == nullptr) { \ 66 std::string err_msg = "The pointer[" + std::string(#_ptr) + "] is null."; \
|
/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/glib/glib/ |
D | gmacros.h | 1136 …static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (TypeName *_ptr) … 1137 …{ if (_ptr) (cleanup) ((ParentName *) _ptr); } … 1138 …static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_FUNC_NAME(TypeName) (TypeName **_ptr) … 1139 …{ _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (*_ptr); } … 1156 …static G_GNUC_UNUSED inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { (func) (_ptr); … 1160 …D inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { if (*_ptr != none) (func) (*_ptr);…
|
D | gmem.h | 124 glib_typeof (*(pp)) _ptr = *_pp; \ 126 if (_ptr) \ 127 (destroy) (_ptr); \
|
/third_party/boost/libs/intrusive/test/ |
D | bounded_pointer.hpp | 410 bounded_pointer_holder() : _ptr(allocator_type().allocate(1)) in bounded_pointer_holder() 411 { new (_ptr.raw()) value_type(); } in bounded_pointer_holder() 415 _ptr->~value_type(); in ~bounded_pointer_holder() 416 allocator_type().deallocate(_ptr, 1); in ~bounded_pointer_holder() 420 { return _ptr; } in get_node() 423 { return _ptr; } in get_node() 426 const pointer _ptr; member in bounded_pointer_holder
|
/third_party/flutter/skia/third_party/externals/sdl/src/power/linux/ |
D | SDL_syspower.c | 75 make_proc_acpi_key_val(char **_ptr, char **_key, char **_val) in make_proc_acpi_key_val() argument 77 char *ptr = *_ptr; in make_proc_acpi_key_val() 117 *_ptr = ptr; /* store for next time. */ in make_proc_acpi_key_val() 286 next_string(char **_ptr, char **_str) in next_string() argument 288 char *ptr = *_ptr; in next_string() 307 *_ptr = ptr; in next_string()
|
/third_party/boost/boost/graph/ |
D | edge_list.hpp | 61 edge_descriptor(EdgeIter p, edge_id id) : _ptr(p), _id(id) {} in edge_descriptor() 63 EdgeIter _ptr; member 116 return (*e._ptr).first; in source() 123 return (*e._ptr).second; in target()
|
/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/e2fsprogs/lib/et/ |
D | vfprintf.c | 38 iop->_ptr = iop->_base = localbuf;
|
/third_party/boost/libs/type_traits/test/ |
D | is_convertible_test.cpp | 68 operator bug9910& () { return *_ptr; } in operator bug9910&() 69 bug9910* _ptr; member
|
/third_party/boost/libs/gil/doc/ |
D | naming.rst | 36 2D locator) ``_ptr`` (pixel iterator), ``_ref`` (pixel reference),
|
/third_party/boost/libs/gil/doc/html/_sources/ |
D | naming.rst.txt | 36 2D locator) ``_ptr`` (pixel iterator), ``_ref`` (pixel reference),
|
/third_party/openssl/crypto/evp/ |
D | bio_ok.c | 426 static void longswap(void *_ptr, size_t len) in longswap() argument 437 unsigned char *p = _ptr, c; in longswap()
|