Searched defs:ref (Results 1 - 25 of 102) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DATokPtrImpl.h45 void ANTLRTokenPtr::ref() const function in class:ANTLRTokenPtr
48 ptr_->ref();
76 lhs.ref(); // protect against "xp = xp"; ie same underlying object
84 addr->ref();
H A DAToken.h82 virtual void ref() {;} function in class:ANTLRAbstractToken
163 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
/vbox/src/VBox/Runtime/r3/darwin/
H A DRTPathUserDocuments-darwin.cpp86 FSRef ref; local
87 OSErr err = FSFindFolder(kOnAppropriateDisk, kDocumentsFolderType, false /* createFolder */, &ref);
90 err = FSRefMakePath(&ref, (UInt8*)pszPath, cchPath);
/vbox/src/libs/liblzf-3.4/
H A Dlzf_d.c99 u8 *ref = op - ((ctrl & 0x1f) << 8) - 1; local
120 ref -= *ip++;
128 if (ref < (u8 *)out_data)
136 lzf_movsb (op, ref, len);
138 *op++ = *ref++;
139 *op++ = *ref++;
142 *op++ = *ref++;
H A Dlzf_c.c118 const u8 *ref; local
158 ref = *hslot; *hslot = ip;
162 && ref < ip /* the next test will actually take care of this, but this is faster */
164 && (off = ip - ref - 1) < MAX_OFF
166 && ref > (u8 *)in_data
168 && ref[0] == ip[0]
169 && ref[1] == ip[1]
170 && ref[2] == ip[2]
172 && *(u16 *)ref == *(u16 *)ip
173 && ref[
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Dpixelshader.c56 ULONG ref = InterlockedIncrement(&This->ref); local
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 if (ref == 1)
67 return ref;
72 ULONG ref = InterlockedDecrement(&This->ref); local
74 TRACE("%p decreasing refcount to %u.\n", iface, ref);
76 if (ref == 0) {
81 return ref;
[all...]
H A Dswapchain.c56 ULONG ref = InterlockedIncrement(&This->ref); local
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 return ref;
65 ULONG ref = InterlockedDecrement(&This->ref); local
67 TRACE("%p decreasing refcount to %u.\n", iface, ref);
69 if (ref == 0) {
77 return ref;
129 swapchain->ref
[all...]
H A Dvertexshader.c56 ULONG ref = InterlockedIncrement(&This->ref); local
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 if (ref == 1 && This->wineD3DVertexShader)
67 return ref;
79 ULONG ref = InterlockedDecrement(&This->ref); local
81 TRACE("%p decreasing refcount to %u.\n", iface, ref);
83 if (ref == 0) {
95 return ref;
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Dstateblock.c57 ULONG ref = InterlockedIncrement(&This->ref); local
59 TRACE("%p increasing refcount to %u.\n", iface, ref);
61 return ref;
66 ULONG ref = InterlockedDecrement(&This->ref); local
68 TRACE("%p decreasing refcount to %u.\n", iface, ref);
70 if (ref == 0) {
78 return ref;
141 stateblock->ref
[all...]
H A Dquery.c57 ULONG ref = InterlockedIncrement(&This->ref); local
59 TRACE("%p increasing refcount to %u.\n", iface, ref);
61 return ref;
66 ULONG ref = InterlockedDecrement(&This->ref); local
68 TRACE("%p decreasing refcount to %u.\n", iface, ref);
70 if (ref == 0) {
78 return ref;
167 query->ref
[all...]
H A Dpixelshader.c56 ULONG ref = InterlockedIncrement(&This->ref); local
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 if (ref == 1)
68 return ref;
73 ULONG ref = InterlockedDecrement(&This->ref); local
75 TRACE("%p decreasing refcount to %u.\n", iface, ref);
77 if (ref == 0) {
87 return ref;
[all...]
H A Dvertexshader.c56 ULONG ref = InterlockedIncrement(&This->ref); local
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 if (ref == 1)
68 return ref;
73 ULONG ref = InterlockedDecrement(&This->ref); local
75 TRACE("%p decreasing refcount to %u.\n", iface, ref);
77 if (ref == 0) {
87 return ref;
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dpbuf.h93 u16_t ref; member in struct:pbuf
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DCIShared.h48 void ref();
52 void ref() { cnt++; } function in class:CIShared::Data
63 CIShared( bool null = true ) : d( null ? Null.d->ref(), Null.d : new Data() ) {}
64 CIShared( const CIShared &that ) : d( that.d ) { d->ref(); }
66 that.d->ref();
381 printf( "~Data(): ref count is %d, but must be zero!\n", cnt );
384 template< class D > void CIShared<D>::Data::ref() { function in class:CIShared::Data
387 "Data::ref() ref count was %d, "
397 "Data::ref() re
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dvertexdeclaration.c69 TRACE("(%p) : AddRef increasing from %d\n", This, This->ref);
70 return InterlockedIncrement(&This->ref);
75 ULONG ref; local
76 TRACE("(%p) : Releasing from %d\n", This, This->ref);
77 ref = InterlockedDecrement(&This->ref);
78 if (!ref)
84 return ref;
215 declaration->ref = 1;
H A Dpalette.c64 ULONG ref = InterlockedIncrement(&This->ref); local
66 TRACE("(%p)->() incrementing from %u.\n", This, ref - 1);
68 return ref;
73 ULONG ref = InterlockedDecrement(&This->ref); local
75 TRACE("(%p)->() decrementing from %u.\n", This, ref + 1);
77 if (!ref) {
83 return ref;
216 palette->ref
[all...]
H A Dclipper.c62 ULONG ref = InterlockedIncrement(&This->ref); local
64 TRACE("(%p)->() incrementing from %u.\n", This, ref - 1);
66 return ref;
72 ULONG ref = InterlockedDecrement(&This->ref); local
74 TRACE("(%p)->() decrementing from %u.\n", This, ref + 1);
76 if (ref == 0)
81 else 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 Dsurface_gdi.c78 ULONG ref = InterlockedDecrement(&This->resource.ref); local
79 TRACE("(%p) : Releasing from %d\n", This, ref + 1);
81 if (!ref)
89 return ref;
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dpbuf.h116 u16_t ref; member in struct:pbuf
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_stencil.h66 GLint ref; member in struct:__anon16237
77 GLint ref; member in struct:__anon16238
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Dswapchain.c61 ULONG ref = InterlockedIncrement(&swapchain->refcount); local
63 TRACE("%p increasing refcount to %u.\n", iface, ref);
65 if (ref == 1)
74 return ref;
80 ULONG ref = InterlockedDecrement(&swapchain->refcount); local
82 TRACE("%p decreasing refcount to %u.\n", iface, ref);
84 if (!ref)
95 return ref;
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxDev-haiku.c78 static status_t VBoxGuestHaikuSelect(void *cookie, uint8 event, uint32 ref, selectsync *sync);
291 * @param ref ???
296 static status_t VBoxGuestHaikuSelect(void *cookie, uint8 event, uint32 ref, selectsync *sync) argument
320 sState.selectRef = (uint32_t)ref;
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dfcp.h23 uint8_t ref; member in struct:fcp_cmnd
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_buffer.c85 void STATE_APIENTRY crStateAlphaFunc (GLenum func, GLclampf ref) argument
116 if (ref < 0.0f) ref = 0.0f;
117 if (ref > 1.0f) ref = 1.0f;
120 b->alphaTestRef = ref;

Completed in 82 milliseconds

12345