/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/ |
H A D | ATokPtrImpl.h | 45 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 D | AToken.h | 82 virtual void ref() {;} function in class:ANTLRAbstractToken 163 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
|
/vbox/src/VBox/Runtime/r3/darwin/ |
H A D | RTPathUserDocuments-darwin.cpp | 86 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 D | lzf_d.c | 99 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 D | lzf_c.c | 118 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 D | pixelshader.c | 56 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 D | swapchain.c | 56 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 D | vertexshader.c | 56 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 D | stateblock.c | 57 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 D | query.c | 57 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 D | pixelshader.c | 56 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 D | vertexshader.c | 56 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 D | pbuf.h | 93 u16_t ref; member in struct:pbuf
|
/vbox/src/VBox/Frontends/VirtualBox/src/globals/ |
H A D | CIShared.h | 48 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 D | vertexdeclaration.c | 69 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 D | palette.c | 64 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 D | clipper.c | 62 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 D | query.c | 283 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 D | surface_gdi.c | 78 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 D | pbuf.h | 116 u16_t ref; member in struct:pbuf
|
/vbox/src/VBox/GuestHost/OpenGL/include/state/ |
H A D | cr_stencil.h | 66 GLint ref; member in struct:__anon16237 77 GLint ref; member in struct:__anon16238
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/ |
H A D | swapchain.c | 61 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 D | VBoxDev-haiku.c | 78 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 D | fcp.h | 23 uint8_t ref; member in struct:fcp_cmnd
|
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/ |
H A D | state_buffer.c | 85 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;
|