Searched refs:Alloc (Results 1 - 25 of 82) sorted by relevance

1234

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/
H A DGNUmakefile22 $(SDK_C)/Alloc.o \
H A DMakefile23 $(SDK_C)\Alloc.obj \
/vbox/src/libs/xpcom18a4/xpcom/glue/
H A DnsMemory.cpp92 nsMemory::Alloc(PRSize size) function in class:nsMemory
97 return gMemory->Alloc(size);
133 void* newPtr = gMemory->Alloc(size);
H A DnsMemory.h66 static NS_COM void* Alloc(size_t size);
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/
H A DVBoxUhgsmiBase.cpp24 *pvLock = (void*)(pBuffer->Alloc.pvData + offLock);
38 DeallocInfo.hAlloc = pBuffer->Alloc.hAlloc;
85 AllocInfo.Alloc.cbData = cbBuf;
86 AllocInfo.Alloc.hSynch = (uint64_t)hSynch;
87 AllocInfo.Alloc.fUhgsmiType = fUhgsmiType;
98 pBuffer->Alloc = AllocInfo.Alloc;
99 Assert(pBuffer->Alloc.pvData);
105 pBuffer->BasePrivate.Base.cbBuffer = AllocInfo.Alloc.cbData;
179 pSubmInfo->hAlloc = pBuf->Alloc
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsAutoBuffer.h99 newBuffer = (T*)nsMemory::Alloc(inElemCapacity * sizeof(T));
H A DnsFixedSizeAllocator.h62 void *place = aAllocator.Alloc(sizeof(Foo));
191 void* Alloc(size_t aSize);
H A DnsCppSharedAllocator.h72 return NS_REINTERPRET_CAST(pointer, nsMemory::Alloc(NS_STATIC_CAST(PRUint32, n*sizeof(T))));
/vbox/src/VBox/Main/glue/xpcom/
H A Dhelpers.cpp61 newBuffer = (unsigned int*)nsMemory::Alloc(len + sizeof(OLECHAR));
91 newBuffer = (unsigned int*)nsMemory::Alloc(bufferSize + sizeof(OLECHAR));
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs137 GCHandle hData = GCHandle.Alloc(data, GCHandleType.Pinned);
188 GCHandle hData = GCHandle.Alloc(data, GCHandleType.Pinned);
H A DCodecBase.cs54 _hInput = GCHandle.Alloc(_inBuffer, GCHandleType.Pinned);
55 _hOutput = GCHandle.Alloc(_outBuffer, GCHandleType.Pinned);
H A DGZipStream.cs162 GCHandle h = GCHandle.Alloc(buffer, GCHandleType.Pinned);
207 GCHandle h = GCHandle.Alloc(buffer, GCHandleType.Pinned);
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsConsoleService.cpp65 nsMemory::Alloc(mBufferSize * sizeof(nsIConsoleMessage *));
214 nsMemory::Alloc(sizeof (nsIConsoleMessage *));
224 (nsIConsoleMessage **)nsMemory::Alloc((sizeof (nsIConsoleMessage *))
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsSubstring.cpp153 * Alloc returns a pointer to a new string header with set capacity.
155 static nsStringHeader* Alloc(size_t size) function in class:nsStringHeader
157 STRING_STAT_INCREMENT(Alloc);
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Ddevnull.c102 conn->Alloc = crDevnullAlloc;
/vbox/src/VBox/Runtime/testcase/
H A DtstMemAutoPtr.cpp145 RTCMemAutoPtr<char> Alloc(10);
146 CHECK_EXPR(Alloc.get() != NULL);
147 char *pch = Alloc.release();
149 CHECK_EXPR(Alloc.get() == NULL);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsScriptableInputStream.cpp76 buffer = (char*)nsMemory::Alloc(count+1); // make room for '\0'
H A DnsSegmentedBuffer.cpp72 mSegmentArray = (char**)nsMemory::Alloc(bytes);
103 char* seg = (char*)mSegAllocator->Alloc(mSegmentSize);
H A DnsLinebreakConverter.cpp135 resultString = (T *)nsMemory::Alloc(sizeof(T) * ioLen);
148 resultString = (T *)nsMemory::Alloc(sizeof(T) * ioLen);
181 resultString = (T *)nsMemory::Alloc(sizeof(T) * newBufLen);
279 T* resultString = (T *)nsMemory::Alloc(sizeof(T) * finalLen);
H A DnsEscape.cpp96 char* result = (char *)nsMemory::Alloc(len + extra + 1);
209 char *rv = (char *) nsMemory::Alloc(strlen(string) * 6 + 1);
275 PRUnichar *resultBuffer = (PRUnichar *)nsMemory::Alloc(aSourceBufferLen *
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DTypes.h224 void *(*Alloc)(void *p, size_t size); member in struct:__anon10474
228 #define IAlloc_Alloc(p, size) (p)->Alloc((p), size)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DTypes.h201 void *(*Alloc)(void *p, size_t size); member in struct:__anon10253
205 #define IAlloc_Alloc(p, size) (p)->Alloc((p), size)
/vbox/src/VBox/Main/glue/
H A Dstring.cpp83 *pstr = (char*)nsMemory::Alloc(cb);
92 *pstr = (char*)nsMemory::Alloc(cb);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DLzmaDecompress.c194 AllocFuncs.Functions.Alloc = SzAlloc;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dmidles.h65 MIDL_ES_ALLOC Alloc; member in struct:_MIDL_ES_MESSAGE

Completed in 127 milliseconds

1234