/vbox/include/VBox/ |
H A D | cdefs.h | 91 /** @def DISDECL(type) 93 * @param type The return type of the function declaration. 96 # define DISDECL(type) DECLEXPORT(type) VBOXCALL 98 # define DISDECL(type) DECLIMPORT(type) VBOXCALL 107 /** @def DBGDECL(type) 111 * @param type The return type o [all...] |
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/ |
H A D | unpacker.h | 13 #define DLLDATA(type) DECLEXPORT(type)
|
H A D | unpack_calllists.c | 12 GLenum type = READ_DATA( sizeof( int ) + 4, GLenum ); local 15 cr_unpackDispatch.CallLists( n, type, lists );
|
/vbox/include/VBox/vmm/ |
H A D | pdmins.h | 40 # define PDMBOTHCBDECL(type) extern "C" DECLEXPORT(type) 42 # define PDMBOTHCBDECL(type) DECLEXPORT(type) 45 # define PDMBOTHCBDECL(type) static type 51 #define PDMINS_2_DATA(pIns, type) ( (type)(void *)&(pIns)->achInstanceData[0] )
|
/vbox/src/VBox/Frontends/VirtualBox/src/platform/os2/ |
H A D | VBoxHlp.h | 23 # define VBOXHLPDECL(type) DECLEXPORT(type) RTCALL 25 # define VBOXHLPDECL(type) DECLIMPORT(type) RTCALL
|
/vbox/src/libs/xpcom18a4/xpcom/base/ |
H A D | nscore.h | 110 #define NS_HIDDEN_(type) NS_VISIBILITY_HIDDEN type 115 #define NS_HIDDEN_(type) type 150 #define NS_EXPORT_STATIC_MEMBER_(type) type 151 #define NS_IMPORT_STATIC_MEMBER_(type) type 156 #define NS_IMPORT_(type) type __declspe [all...] |
/vbox/src/VBox/VMM/testcase/ |
H A D | tstHelp.h | 31 * @param type Type. 35 #define CHECK_OFF(type, off, m) \ 37 if (off != RT_OFFSETOF(type, m)) \ 40 RT_OFFSETOF(type, m), #type "." #m, off - RT_OFFSETOF(type, m), (int)off); \ 44 /*printf("%#08x %s\n", RT_OFFSETOF(type, m), #m);*/ \ 48 * Checks the size of type. 49 * @param type Type. 52 #define CHECK_SIZE(type, siz [all...] |
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/ |
H A D | xmlpool.h | 60 #define DRI_CONF_OPT_BEGIN(name,type,def) \ 61 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\">\n" 64 #define DRI_CONF_OPT_BEGIN_V(name,type,def,valid) \ 65 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\" valid=\""valid"\">\n"
|
/vbox/include/iprt/ |
H A D | vector.h | 31 * vector of a particular type one must first explicitly instantiate such a 52 * One particular use of vectors is to assemble an array of a particular type 63 * particular type twice, e.g. once in a header and once in a code file. 86 #define RTVEC_DECL_STRUCT(name, type) \ 94 type *mpElements; \ 107 #define RTVEC_DECLFN_SIZE(name, type) \ 116 #define RTVEC_DECLFN_RESERVE(name, type, pfnRealloc) \ 123 pvNew = pfnRealloc(pVec->mpElements, cNewCapacity * sizeof(type)); \ 127 pVec->mpElements = (type *)pvNew; \ 134 #define RTVEC_DECLFN_BEGIN(name, type) \ [all...] |
/vbox/src/recompiler/tests/ |
H A D | hello-arm.c | 12 #define __syscall_return(type, res) \ 14 return (type) (res); \ 17 #define _syscall0(type,name) \ 18 type name(void) { \ 24 __syscall_return(type,__res); \ 27 #define _syscall1(type,name,type1,arg1) \ 28 type name(type1 arg1) { \ 37 __syscall_return(type,__res); \ 40 #define _syscall2(type,name,type1,arg1,type2,arg2) \ 41 type nam [all...] |
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | eventconvert.h | 35 _X_INTERNAL int GetCoreType(enum EventType type); 36 _X_INTERNAL int GetXIType(enum EventType type); 37 _X_INTERNAL int GetXI2Type(enum EventType type);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | eventconvert.h | 35 _X_INTERNAL int GetCoreType(enum EventType type); 36 _X_INTERNAL int GetXIType(enum EventType type); 37 _X_INTERNAL int GetXI2Type(enum EventType type);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | pixmap.h | 81 #define OnScreenDrawable(type) \ 82 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 84 #define WindowDrawable(type) \ 85 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
H A D | propertyst.h | 59 ATOM type; /* ignored by server */ member in struct:_Property
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | pixmap.h | 60 /* corresponding type masks for dixLookupDrawable() */ 90 #define OnScreenDrawable(type) \ 91 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 93 #define WindowDrawable(type) \ 94 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
H A D | propertyst.h | 59 ATOM type; /* ignored by server */ member in struct:_Property
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | pixmap.h | 60 /* corresponding type masks for dixLookupDrawable() */ 90 #define OnScreenDrawable(type) \ 91 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 93 #define WindowDrawable(type) \ 94 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
H A D | pixmap.h | 60 /* corresponding type masks for dixLookupDrawable() */ 90 #define OnScreenDrawable(type) \ 91 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 93 #define WindowDrawable(type) \ 94 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/ |
H A D | eventconvert.h | 35 _X_INTERNAL int GetCoreType(enum EventType type); 36 _X_INTERNAL int GetXIType(enum EventType type); 37 _X_INTERNAL int GetXI2Type(enum EventType type);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/ |
H A D | eventconvert.h | 35 _X_INTERNAL int GetCoreType(enum EventType type); 36 _X_INTERNAL int GetXIType(enum EventType type); 37 _X_INTERNAL int GetXI2Type(enum EventType type);
|
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/include/ |
H A D | pixmap.h | 80 #define OnScreenDrawable(type) \ 81 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 83 #define WindowDrawable(type) \ 84 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | pixmap.h | 82 #define OnScreenDrawable(type) \ 83 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 85 #define WindowDrawable(type) \ 86 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | pixmap.h | 82 #define OnScreenDrawable(type) \ 83 ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER)) 85 #define WindowDrawable(type) \ 86 ((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | downloader.h | 16 int type, ... );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | stddef.h | 20 #define container_of(ptr, type, member) ({ \ 21 const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 22 (type *)( (char *)__mptr - offsetof(type,member) );})
|