Home
last modified time | relevance | path

Searched refs:_obj (Results 1 – 25 of 35) sorted by relevance

12

/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
Dtr_dump.h148 #define trace_dump_array(_type, _obj, _size) \ argument
150 if (_obj) { \
155 trace_dump_##_type((_obj)[idx]); \
164 #define trace_dump_struct_array(_type, _obj, _size) \ argument
166 if (_obj) { \
171 trace_dump_##_type(&(_obj)[idx]); \
180 #define trace_dump_member(_type, _obj, _member) \ argument
183 trace_dump_##_type((_obj)->_member); \
194 #define trace_dump_member_array(_type, _obj, _member) \ argument
197 … trace_dump_array(_type, (_obj)->_member, sizeof((_obj)->_member)/sizeof((_obj)->_member[0])); \
/third_party/mesa3d/src/vulkan/runtime/
Dvk_object.h132 __driver_type ## _to_handle(struct __driver_type *_obj) \
134 vk_object_base_assert_valid(&_obj->__base, __VK_TYPE); \
135 if (_obj != NULL) \
136 _obj->__base.client_visible = true; \
137 return (__VkType) _obj; \
172 __driver_type ## _to_handle(struct __driver_type *_obj) \
174 vk_object_base_assert_valid(&_obj->__base, __VK_TYPE); \
175 if (_obj != NULL) \
176 _obj->__base.client_visible = true; \
177 return (__VkType)(uintptr_t) _obj; \
Dvk_log.c295 __vk_errorv(const void *_obj, VkResult error, in __vk_errorv() argument
299 struct vk_object_base *object = (struct vk_object_base *)_obj; in __vk_errorv()
347 __vk_errorf(const void *_obj, VkResult error, in __vk_errorf() argument
354 VkResult result = __vk_errorv(_obj, error, file, line, format, va); in __vk_errorf()
Dvk_log.h86 __vk_errorv(const void *_obj, VkResult error,
91 __vk_errorf(const void *_obj, VkResult error,
/third_party/python/Lib/multiprocessing/
Dsharedctypes.py183 self._obj = obj
200 return synchronized, (self._obj, self._lock)
203 return self._obj
209 return '<%s wrapper for %s>' % (type(self).__name__, self._obj)
219 return len(self._obj)
223 return self._obj[i]
227 self._obj[i] = value
231 return self._obj[start:stop]
235 self._obj[start:stop] = values
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/cache/
Dpolicy.js17 const _obj = { variable
25 _obj.headers[key] = value
28 return _obj
33 const _obj = { variable
39 _obj.headers[key] = value
42 return _obj
/third_party/skia/third_party/externals/icu/source/common/
Dservslkf.cpp39 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
50 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
59 delete _obj; in ~SimpleLocaleKeyFactory()
60 _obj = NULL; in ~SimpleLocaleKeyFactory()
72 return service->cloneInstance(_obj); in create()
Dserv.cpp422 UVector* _obj; member
423 UVectorDeleter() : _obj(NULL) {} in UVectorDeleter()
424 ~UVectorDeleter() { delete _obj; } in ~UVectorDeleter()
527 if (cacheDescriptorList._obj == NULL) { in getKey()
528 cacheDescriptorList._obj = new UVector(uprv_deleteUObject, NULL, 5, status); in getKey()
539 cacheDescriptorList._obj->addElement(idToCache, status); in getKey()
553 if (cacheDescriptorList._obj != NULL) { in getKey()
554 for (int32_t i = cacheDescriptorList._obj->size(); --i >= 0;) { in getKey()
555 … UnicodeString* desc = (UnicodeString*)cacheDescriptorList._obj->elementAt(i); in getKey()
563 cacheDescriptorList._obj->removeElementAt(i); in getKey()
/third_party/node/deps/icu-small/source/common/
Dservslkf.cpp39 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
50 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
59 delete _obj; in ~SimpleLocaleKeyFactory()
60 _obj = nullptr; in ~SimpleLocaleKeyFactory()
72 return service->cloneInstance(_obj); in create()
/third_party/icu/icu4c/source/common/
Dservslkf.cpp39 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
50 , _obj(objToAdopt) in SimpleLocaleKeyFactory()
59 delete _obj; in ~SimpleLocaleKeyFactory()
60 _obj = NULL; in ~SimpleLocaleKeyFactory()
72 return service->cloneInstance(_obj); in create()
/third_party/node/test/fixtures/source-map/
Dbabel-esm.mjs1 var _obj$a;
9 … ((obj === null || obj === void 0 ? void 0 : (_obj$a = obj.a) === null || _obj$a === void 0 ? void…
/third_party/ffmpeg/compat/atomics/gcc/
Dstdatomic.h103 __typeof__(object) _obj = (object); \
106 _old = atomic_load(_obj); \
107 while (!__sync_bool_compare_and_swap(_obj, _old, (desired))); \
/third_party/libwebsockets/lib/core-net/
Dlws-dsh.c360 lws_dsh_obj_t *_obj; in lws_dsh_get_head() local
365 _obj = (lws_dsh_obj_t *)lws_dll2_get_head(&dsh->oha[kind + 1].owner); in lws_dsh_get_head()
367 if (!_obj) { in lws_dsh_get_head()
374 *obj = (void *)(&_obj[1]); in lws_dsh_get_head()
375 *size = _obj->size; in lws_dsh_get_head()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_dump_state.c183 #define util_dump_array(_stream, _type, _obj, _size) \ argument
189 util_dump_##_type(_stream, (_obj)[idx]); \
195 #define util_dump_struct_array(_stream, _type, _obj, _size) \ argument
201 util_dump_##_type(_stream, &(_obj)[idx]); \
207 #define util_dump_member(_stream, _type, _obj, _member) \ argument
210 util_dump_##_type(_stream, (_obj)->_member); \
221 #define util_dump_member_array(_stream, _type, _obj, _member) \ argument
224 …util_dump_array(_stream, _type, (_obj)->_member, sizeof((_obj)->_member)/sizeof((_obj)->_member[0]…
/third_party/mesa3d/src/vulkan/wsi/
Dwsi_common.h260 __VkIcdType ## _to_handle(__VkIcdType *_obj) \
262 return (__VkType)(uintptr_t) _obj; \
/third_party/pulseaudio/src/pulsecore/
Dobject.h42 #define pa_object_free ((void (*) (pa_object* _obj)) pa_xfree)
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_modifiers.cpp60 const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural) in Parameters() argument
61 : obj(_obj), signum(_signum), plural(_plural) {} in Parameters()
Dnumber_types.h209 Parameters(const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural);
/third_party/python/Lib/ctypes/test/
Dtest_parameters.py58 self.assertIs(c_char_p.from_param(s)._obj, s)
61 self.assertEqual(c_char_p.from_param(b"123")._obj, b"123")
/third_party/icu/icu4c/source/i18n/
Dnumber_modifiers.cpp60 const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural) in Parameters() argument
61 : obj(_obj), signum(_signum), plural(_plural) {} in Parameters()
Dnumber_types.h217 Parameters(const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural);
/third_party/alsa-utils/topology/
Dpre-process-object.c1582 snd_config_t *n, *n2, *_obj_type, *_obj_class, *_obj; in tplg_pre_process_objects() local
1690 ret = snd_config_copy(&_obj, temp_n2); in tplg_pre_process_objects()
1694 ret = snd_config_add(_obj_class, _obj); in tplg_pre_process_objects()
1696 snd_config_delete(_obj); in tplg_pre_process_objects()
/third_party/node/deps/icu-small/source/i18n/
Dnumber_types.h217 Parameters(const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural);
Dnumber_modifiers.cpp60 const ModifierStore* _obj, Signum _signum, StandardPlural::Form _plural) in Parameters() argument
61 : obj(_obj), signum(_signum), plural(_plural) {} in Parameters()
/third_party/vk-gl-cts/external/vulkan-docs/src/
Dregistry.txt2279 … #define VK_DEFINE_PTR_HANDLE(_obj) struct _obj##_T { char _placeholder; }; typedef _obj##_T* _obj;
2280 …#define VK_DEFINE_PTR_SUBCLASS_HANDLE(_obj, _base) struct _obj##_T : public _base##_T {}; typedef
2282 #define VK_DEFINE_BASE_HANDLE(_obj) VK_DEFINE_PTR_HANDLE(_obj)
2283 #define VK_DEFINE_DISP_SUBCLASS_HANDLE(_obj, _base) VK_DEFINE_PTR_SUBCLASS_HANDLE(_obj, _base)
2284 … #define VK_DEFINE_NONDISP_SUBCLASS_HANDLE(_obj, _base) VK_DEFINE_PTR_SUBCLASS_HANDLE(_obj, _base)
2286 #define VK_DEFINE_BASE_HANDLE(_obj) typedef VkUintPtrLeast64 _obj;
2287 #define VK_DEFINE_DISP_SUBCLASS_HANDLE(_obj, _base) typedef uintptr_t _obj;
2288 #define VK_DEFINE_NONDISP_SUBCLASS_HANDLE(_obj, _base) typedef VkUintPtrLeast64 _obj;

12