Searched refs:ref (Results 51 - 75 of 210) sorted by relevance

123456789

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Dtexture.c73 ULONG ref = InterlockedIncrement(&texture->refcount); local
75 TRACE("%p increasing refcount to %u.\n", iface, ref);
77 if (ref == 1)
85 return ref;
91 ULONG ref = InterlockedDecrement(&texture->refcount); local
93 TRACE("%p decreasing refcount to %u.\n", iface, ref);
95 if (!ref)
106 return ref;
484 ULONG ref = InterlockedIncrement(&texture->refcount); local
486 TRACE("%p increasing refcount to %u.\n", iface, ref);
502 ULONG ref = InterlockedDecrement(&texture->refcount); local
923 ULONG ref = InterlockedIncrement(&texture->refcount); local
941 ULONG ref = InterlockedDecrement(&texture->refcount); local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dimnact.idl155 [in,ref] LPSTR pszAccount,
199 [in,ref] LPSTR pszAccountId,
241 [in,size_is(*pcb),ref] BYTE *pb,
250 [in,ref] LPSTR psz,
H A Dbits.idl122 [out,ref] BG_ERROR_CONTEXT *pContext,
123 [out,ref] HRESULT *pCode
132 [out,ref] LPWSTR *pErrorDescription
137 [out,ref] LPWSTR *pContextDescription
141 [out,ref] LPWSTR *pProtocol
H A Dwinsxs.idl66 [in] LPCFUSION_INSTALL_REFERENCE ref,
86 [in] LPCFUSION_INSTALL_REFERENCE ref);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dvolume.c131 TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
132 return InterlockedIncrement(&This->resource.ref);
137 ULONG ref; local
138 TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
139 ref = InterlockedDecrement(&This->resource.ref);
140 if (ref == 0) {
145 return ref;
H A Dvolumetexture.c130 TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
131 return InterlockedIncrement(&This->resource.ref);
136 ULONG ref; local
137 TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
138 ref = InterlockedDecrement(&This->resource.ref);
139 if (!ref)
145 return ref;
H A Dquery.c283 TRACE("(%p) : AddRef increasing from %d\n", This, This->ref);
284 return InterlockedIncrement(&This->ref);
289 ULONG ref; local
290 TRACE("(%p) : Releasing from %d\n", This, This->ref);
291 ref = InterlockedDecrement(&This->ref);
292 if (ref == 0) {
312 return ref;
666 query->ref = 1;
H A Dcubetexture.c174 TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
175 return InterlockedIncrement(&This->resource.ref);
180 ULONG ref; local
181 TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
182 ref = InterlockedDecrement(&This->resource.ref);
183 if (!ref)
189 return ref;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dimnact.idl155 [in,ref] LPSTR pszAccount,
199 [in,ref] LPSTR pszAccountId,
241 [in,size_is(*pcb),ref] BYTE *pb,
250 [in,ref] LPSTR psz,
H A Dbits.idl122 [out,ref] BG_ERROR_CONTEXT *pContext,
123 [out,ref] HRESULT *pCode
132 [out,ref] LPWSTR *pErrorDescription
137 [out,ref] LPWSTR *pContextDescription
141 [out,ref] LPWSTR *pProtocol
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dpbuf.h93 u16_t ref; member in struct:pbuf
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsExceptionService.cpp78 nsExceptionManager *mNextThread; // not ref-counted.
79 nsExceptionService *mService; // not ref-counted
89 nsrefcnt ref = Release(); local
90 NS_ASSERTION(ref == 0, "the object is still referenced by other threads while it shouldn't");
91 if (ref != 0)
93 return ref;
/vbox/src/recompiler/tests/
H A DMakefile46 ./test-i386 > test-i386.ref
51 @if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
108 rm -f *~ *.o test-i386.out test-i386.ref \
109 test-x86_64.log test-x86_64.ref qruncom $(TESTS)
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_ttm.c58 vbox_ttm_mem_global_init(struct drm_global_reference *ref) argument
60 return ttm_mem_global_init(ref->object);
64 vbox_ttm_mem_global_release(struct drm_global_reference *ref) argument
66 ttm_mem_global_release(ref->object);
92 global_ref = &vbox->ttm.bo_global_ref.ref;
116 drm_global_item_unref(&vbox->ttm.bo_global_ref.ref);
291 vbox->ttm.bo_global_ref.ref.object,
/vbox/src/libs/xpcom18a4/xpcom/MoreFiles/
H A DFSCopyObject.c157 FSRef ref; /* FSRef to the source file/folder*/ member in struct:FSCopyObjectGlobals
265 static OSErr FSGetVRefNum( const FSRef *ref,
282 FSRef *ref);
626 theGlobals.ref = *source;
644 *newDir = theGlobals.ref;
652 &theGlobals.ref, filterParams->fileSpecPtr,
677 theGlobals->result = FSGetCatalogInfo( &theGlobals->ref, filterPtr->whichInfo,
720 theGlobals->result = CopyItemsForks(&theGlobals->ref, &newDirRef, theGlobals->copyParams);
721 if( theGlobals->result == noErr ) // Open FSIterator for flat access to theGlobals->ref
722 theGlobals->result = FSOpenIterator(&theGlobals->ref, kFSIterateFla
1576 FSGetVRefNum(const FSRef *ref, FSVolumeRefNum *vRefNum) argument
1689 FSMakeFSRef( FSVolumeRefNum volRefNum, SInt32 dirID, ConstStr255Param name, FSRef *ref) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddirectx.c74 ULONG ref = InterlockedIncrement(&This->ref); local
76 TRACE("%p increasing refcount to %u.\n", iface, ref);
78 return ref;
83 ULONG ref = InterlockedDecrement(&This->ref); local
85 TRACE("%p decreasing refcount to %u.\n", iface, ref);
87 if (ref == 0) {
95 return ref;
H A Dd3d9_main.c51 object->ref = 1;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_create.c609 ctf_add_reftype(ctf_file_t *fp, uint_t flag, ctf_id_t ref, uint_t kind) argument
614 if (ref == CTF_ERR || ref < 0 || ref > CTF_MAX_TYPE)
621 dtd->dtd_data.ctt_type = (ushort_t)ref;
641 ctf_add_pointer(ctf_file_t *fp, uint_t flag, ctf_id_t ref) argument
643 return (ctf_add_reftype(fp, flag, ref, CTF_K_POINTER));
827 ctf_add_typedef(ctf_file_t *fp, uint_t flag, const char *name, ctf_id_t ref) argument
832 if (ref == CTF_ERR || ref <
845 ctf_add_volatile(ctf_file_t *fp, uint_t flag, ctf_id_t ref) argument
851 ctf_add_const(ctf_file_t *fp, uint_t flag, ctf_id_t ref) argument
857 ctf_add_restrict(ctf_file_t *fp, uint_t flag, ctf_id_t ref) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dpbuf.c263 p->ref = 1;
294 q->ref = 1;
340 p->ref = 1;
569 /* Since decrementing ref cannot be guaranteed to be a single machine operation
570 * we must protect it. Also, the later test of ref must be protected.
577 LWIP_ASSERT("pbuf_free: p->ref > 0", p->ref > 0);
579 p->ref--;
581 if (p->ref == 0) {
601 /* p->ref >
[all...]
/vbox/src/VBox/Additions/haiku/VBoxTray/
H A DVBoxGuestDeskbarView.cpp219 BPath p(&info.ref);
220 return deskbar.AddItem(&info.ref);
/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsIEventQueue.idl64 [ref] native PRBoolRef(PRBool);
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dstateblock.c94 stateblock->ref = 1;
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dfcp.h23 uint8_t ref; member in struct:fcp_cmnd
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Dd3d8_main.c58 object->ref = 1;
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A DschemasInternals.h230 * this is set when the "type" and "ref" references
253 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaAttribute
366 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaAttributeGroup
607 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaType
697 * this is set when "type", "ref", "substitutionGroup"
770 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaElement

Completed in 1734 milliseconds

123456789