/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | rpcsal.h | 36 #define __RPC__deref_in_ecount(size) 37 #define __RPC__deref_in_ecount_opt(size) 38 #define __RPC__deref_in_ecount_opt_string(size) 39 #define __RPC__deref_in_ecount_full(size) 40 #define __RPC__deref_in_ecount_full_opt(size) 41 #define __RPC__deref_in_ecount_full_string(size) 42 #define __RPC__deref_in_ecount_full_opt_string(size) 43 #define __RPC__deref_in_ecount_part(size, length) 44 #define __RPC__deref_in_ecount_part_opt(size, length) 45 #define __RPC__deref_in_xcount(size) [all...] |
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | usbvar.h | 30 unsigned int size; member in struct:report_desc
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | usbvar.h | 28 unsigned int size; member in struct:report_desc
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | usbvar.h | 28 unsigned int size; member in struct:report_desc
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | usbvar.h | 31 unsigned int size; member in struct:report_desc
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | usbvar.h | 31 unsigned int size; member in struct:report_desc
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | alloca.h | 16 * @v size Size to allocate 23 #define alloca(size) __builtin_alloca ( size )
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/safety/ |
H A D | tst.copyin2.d | 30 * Test that there is no value of 'size' which can be passed to copyin 32 * that we test both size = 0 and size = 0xfff...fff 39 size_t size; 42 size_t size; 48 printf("size = 0x%lx\n", (ulong_t)size); 54 tracemem(copyin(curthread->t_procp->p_user.u_envp, size), 10); 58 /pid == $pid && size > (1 << MAX_BITS)/ 66 size [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
H A D | Alloc.h | 11 void *MyAlloc(size_t size); 18 void *MidAlloc(size_t size); 20 void *BigAlloc(size_t size); 25 #define MidAlloc(size) MyAlloc(size) 27 #define BigAlloc(size) MyAlloc(size)
|
H A D | Alloc.c | 23 void *MyAlloc(size_t size) argument 25 if (size == 0) 29 void *p = malloc(size); 30 fprintf(stderr, "\nAlloc %10d bytes, count = %10d, addr = %8X", size, g_allocCount++, (unsigned)p); 34 return malloc(size); 49 void *MidAlloc(size_t size) argument 51 if (size == 0) 54 fprintf(stderr, "\nAlloc_Mid %10d bytes; count = %10d", size, g_allocCountMid++); 56 return VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE); 82 SIZE_T size local 95 BigAlloc(size_t size) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/ |
H A D | BaseMemAllocation.c | 23 void *malloc (size_t size) argument 25 return AllocatePool ((UINTN)size); 29 void *realloc (void *ptr, size_t size) argument 32 // BUG: hardcode OldSize == size! We have no any knowledge about 33 // memory size of original pointer ptr. 35 return ReallocatePool ((UINTN)size, (UINTN)size, ptr);
|
/vbox/src/VBox/Additions/haiku/SharedFolders/ |
H A D | kernel_cpp.h | 48 operator new(size_t size) throw (std::bad_alloc) argument 53 return malloc(size); 58 operator new[](size_t size) throw (std::bad_alloc) argument 60 return malloc(size); 65 operator new(size_t size, const std::nothrow_t &) throw () argument 67 return malloc(size); 72 operator new[](size_t size, const std::nothrow_t &) throw () argument 74 return malloc(size); 79 operator new(size_t size, const mynothrow_t &) throw () argument 81 return malloc(size); 86 operator new[](size_t size, const mynothrow_t &) argument [all...] |
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_feedback.c | 10 void PACK_APIENTRY crPackFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ) argument 12 (void) size; 20 void PACK_APIENTRY crPackFeedbackBufferSWAP( GLsizei size, GLenum type, GLfloat *buffer ) argument 22 (void) size; 30 void PACK_APIENTRY crPackSelectBuffer( GLsizei size, GLuint *buffer ) argument 32 (void) size; 39 void PACK_APIENTRY crPackSelectBufferSWAP( GLsizei size, GLuint *buffer ) argument 41 (void) size;
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2rng.c | 62 extern PRSize _PR_MD_GetRandomNoise(void *buf, PRSize size ) 71 if (size <= 0) 77 nBytes = sizeof(low) > size ? size : sizeof(low); 80 size -= nBytes; 82 if (size <= 0) 85 nBytes = sizeof(high) > size ? size : sizeof(high); 88 size -= nBytes; 90 if (size < [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w32rng.c | 59 extern PRSize _PR_MD_GetRandomNoise( void *buf, PRSize size ) 66 if (size <= 0) 72 nBytes = sizeof(dwLow) > size ? size : sizeof(dwLow); 75 size -= nBytes; 77 if (size <= 0) 80 nBytes = sizeof(dwHigh) > size ? size : sizeof(dwHigh); 83 size -= nBytes; 85 if (size < [all...] |
H A D | w16mem.c | 50 ** Return the segment's access rights and size. 52 PRStatus _MD_AllocSegment(PRSegment *seg, PRUint32 size, void *vaddr) argument 55 PR_ASSERT(size != 0); 62 seg->vaddr = (char *)malloc(size); 68 seg->size = size;
|
/vbox/src/VBox/Additions/x11/x11include/4.3/include/ |
H A D | Xalloca.h | 38 * void *ALLOCATE_LOCAL(int size) 39 * Returns a pointer to size bytes of memory, or NULL if the allocation 43 * the memory comes from the stack, which may have limited size. 78 # define ALLOCATE_LOCAL(size) alloca((int)(size)) 81 # define ALLOCATE_LOCAL(size) _Alloca((int)(size)) 84 # define ALLOCATE_LOCAL(size) alloca(size) 93 # define ALLOCATE_LOCAL(size) alloc [all...] |
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/ |
H A D | mac_memory.cpp | 62 void* operator new(size_t size) argument 65 if (CWAllocateMemory(gPluginContext, size, kTemporaryAllocation, &ptr) == cwNoErr) 76 void* operator new[] (size_t size) argument 79 if (CWAllocateMemory(gPluginContext, size, kTemporaryAllocation, &ptr) == cwNoErr) 95 void* malloc(size_t size) argument 98 OSType* ptr = (OSType*) new char[sizeof(OSType) + size]; 103 return new char[size]; 120 void* calloc(size_t nmemb, size_t size) argument 122 size *= nmemb; 123 void* ptr = malloc(size); 130 realloc(void * ptr, size_t size) argument [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | mem.h | 65 #define mem_trim(mem, size) (mem) 85 #define mem_trim(mem, size) (mem) 89 void *mem_trim(void *mem, mem_size_t size); 91 void *mem_malloc(mem_size_t size); 92 void *mem_calloc(mem_size_t count, mem_size_t size); 96 /** Calculate memory size for an aligned buffer - returns the next highest 101 #define LWIP_MEM_ALIGN_SIZE(size) (((size) + MEM_ALIGNMENT - 1) & ~(MEM_ALIGNMENT-1)) 104 /** Calculate safe memory size for an aligned buffer when using an unaligned 109 #define LWIP_MEM_ALIGN_BUFFER(size) (((siz [all...] |
/vbox/src/libs/xpcom18a4/xpcom/glue/ |
H A D | nsMemory.h | 66 static NS_COM void* Alloc(size_t size); 67 static NS_COM void* Realloc(void* ptr, size_t size); 70 static NS_COM void* Clone(const void* ptr, size_t size); 75 * Macro to free all elements of an XPCOM array of a given size using 84 * need to be freed) as |size|. 90 * @param size Number of elements in the array. If not a constant, this 92 * will not work if size >= 2^31. 103 #define NS_FREE_XPCOM_POINTER_ARRAY(size, array, freeFunc) \ 105 PRInt32 iter_ = PRInt32(size); \ 118 * @param size Numbe [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libctf/common/ |
H A D | ctf_subr.c | 42 ctf_data_alloc(size_t size) argument 45 return (mmap(NULL, size, PROT_READ | PROT_WRITE, 48 void *pv = RTMemPageAlloc(size); 54 ctf_data_free(void *buf, size_t size) argument 57 (void) munmap(buf, size); 59 RTMemProtect(buf, size, RTMEM_PROT_WRITE | RTMEM_PROT_READ); 60 RTMemPageFree(buf, size); 65 ctf_data_protect(void *buf, size_t size) argument 68 (void) mprotect(buf, size, PROT_READ); 70 int rc = RTMemProtect(buf, size, RTMEM_PROT_REA 76 ctf_alloc(size_t size) argument 87 ctf_free(void *buf, size_t size) argument [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | mem.h | 51 #define mem_realloc(x, size) realloc(x,size) 55 void *mem_malloc(mem_size_t size); 57 void *mem_realloc(void *mem, mem_size_t size); 61 #define MEM_ALIGN_SIZE(size) (((size) + MEM_ALIGNMENT - 1) & ~(MEM_ALIGNMENT-1))
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | dbgen.pl | 3 $size = shift; 5 if ($size eq "") 7 die "usage: dbgen.pl [size]\n"; 24 for ($i=0; $i<$size; $i++)
|
H A D | dbgenattr.pl | 3 $size = shift; 5 if ($size eq "") 7 die "usage: dbgen.pl [size]\n"; 24 for ($i=0; $i<$size; $i++)
|
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/ |
H A D | fsw_efi_base.h | 87 #define fsw_alloc(size, ptrptr) (((*(ptrptr) = AllocatePool(size)) == NULL) ? FSW_OUT_OF_MEMORY : FSW_SUCCESS) 92 #define fsw_memzero(dest,size) ZeroMem(dest,size) 93 #define fsw_memcpy(dest,src,size) CopyMem(dest,src,size) 94 #define fsw_memeq(p1,p2,size) (CompareMem(p1,p2,size) == 0)
|