Home
last modified time | relevance | path

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

12

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_jit.h202 #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/
Ddraw_llvm.h191 #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/
Dhelper.js207 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/
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/popt/src/
Dsystem.h47 #define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) ? : vmefail()) argument
52 #define xrealloc(_ptr, _size) realloc((_ptr), (_size)) argument
/third_party/libnl/include/netlink-private/
Dutils.h149 __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/
Dshard_error.h53 #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/
Dvk_alloc.h210 #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/
Dstatus.h63 #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/
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/glib/glib/
Dgmacros.h1136 …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);…
Dgmem.h124 glib_typeof (*(pp)) _ptr = *_pp; \
126 if (_ptr) \
127 (destroy) (_ptr); \
/third_party/boost/libs/intrusive/test/
Dbounded_pointer.hpp410 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/
DSDL_syspower.c75 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/
Dedge_list.hpp61 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/
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/e2fsprogs/lib/et/
Dvfprintf.c38 iop->_ptr = iop->_base = localbuf;
/third_party/boost/libs/type_traits/test/
Dis_convertible_test.cpp68 operator bug9910& () { return *_ptr; } in operator bug9910&()
69 bug9910* _ptr; member
/third_party/boost/libs/gil/doc/
Dnaming.rst36 2D locator) ``_ptr`` (pixel iterator), ``_ref`` (pixel reference),
/third_party/boost/libs/gil/doc/html/_sources/
Dnaming.rst.txt36 2D locator) ``_ptr`` (pixel iterator), ``_ref`` (pixel reference),
/third_party/openssl/crypto/evp/
Dbio_ok.c426 static void longswap(void *_ptr, size_t len) in longswap() argument
437 unsigned char *p = _ptr, c; in longswap()

12