HomeSort by relevance Sort by last modified time
    Searched refs:pMemory (Results 1 - 17 of 17) sorted by null

  /ndk/tests/device/test-stlport_shared-exception/jni/
delete3_1.cpp 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw()
28 return operator delete(pMemory);
  /ndk/tests/device/test-stlport_static-exception/jni/
delete3_1.cpp 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw()
28 return operator delete(pMemory);
  /external/srec/portable/src/
pmemblock.c 22 #include "pmemory.h"
53 void* pMemory;
245 memoryPool[i].poolInfo[j].pMemory = NULL;
261 if (memoryPool[i].poolInfo[j].pMemory != NULL)
266 PORT_ASSERT_GOOD_WRITE_POINTER(memoryPool[i].poolInfo[j].pMemory);
267 free(memoryPool[i].poolInfo[j].pMemory);
270 memoryPool[i].poolInfo[j].pMemory = NULL;
286 void* pMemory = NULL;
307 pMemory = malloc(poolSize * (1 << whichPool) + PARTITION_CONTROL_BLOCK_SIZE);
308 PORT_ASSERT_GOOD_WRITE_POINTER(pMemory);
    [all...]
pmemory_ext.c 22 #include "pmemory.h"
256 void *pMemory = NULL;
267 pMemory = MEM_MGR_Allocate(sizeInBytes);
270 if (NULL != pMemory)
276 unsigned int * requestedSizePtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_REQ_SIZE);
277 unsigned int * guardStartPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_START);
278 unsigned int * guardEndPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_END(sizeInBytes));
283 pMemory = (void *) GUARD_PTR_FIELD(pMemory, GUARD_OFF_PTR);
284 ADD_TO_ALLOC_LIST(pMemory);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcndr.h 520 RPCRTAPI void RPC_ENTRY NdrSimpleTypeMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,unsigned char FormatChar);
521 RPCRTAPI unsigned char *RPC_ENTRY NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
522 RPCRTAPI unsigned char *RPC_ENTRY NdrCsArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
523 RPCRTAPI unsigned char *RPC_ENTRY NdrCsTagMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
524 RPCRTAPI unsigned char *RPC_ENTRY NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
525 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
526 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
527 RPCRTAPI unsigned char *RPC_ENTRY NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
528 RPCRTAPI unsigned char *RPC_ENTRY NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
529 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat)
    [all...]
raseapif.h 145 DWORD WINAPI RasEapFreeMemory(BYTE *pMemory);
wtsapi32.h 189 VOID WINAPI WTSFreeMemory(PVOID pMemory);
wlanapi.h 282 PVOID pMemory
  /external/pdfium/core/src/fxcrt/
fx_basic_memmgr_mini.cpp 77 FX_LPVOID pMemory = malloc(size);
78 if (!pMemory) {
81 CFixedMgr_Proxy* pProxy = (CFixedMgr_Proxy*)pMemory;
85 free(pMemory);
89 g_pDefFoxitMgr->m_pExternalMemory = pMemory;
92 FXMEM_FoxitMgr* FXMEM_CreateFixedMgr(void* pMemory, size_t size, FXMEM_SystemMgr2* pSystemMgr)
94 if (pMemory == NULL || size < FX_FIXEDMEM_PAGESIZE) {
98 CFixedMgr_Proxy* pProxy = (CFixedMgr_Proxy*)pMemory;
102 CFXMEM_FixedMgr* pHeader = (CFXMEM_FixedMgr*)pMemory;
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 296 /// @param pMemory [in] The start address of the given data
300 static Fragment* CreateRegion(void* pMemory, size_t pLength);
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_win.cc 80 typedef VOID (WINAPI* WlanFreeMemoryFunction)(PVOID pMemory);
  /external/chromium_org/third_party/icu/source/common/
ubidiimp.h 439 ubidi_getMemory(BidiMemoryForAllocation *pMemory, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded);
ubidi.c 193 * If *pMemory!=NULL, then assume *pSize>0.
201 void **pMemory = (void **)bidiMem;
203 if(*pMemory==NULL) {
205 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
226 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
227 *pMemory=memory;
    [all...]
  /external/icu/icu4c/source/common/
ubidiimp.h 430 ubidi_getMemory(BidiMemoryForAllocation *pMemory, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded);
ubidi.c 193 * If *pMemory!=NULL, then assume *pSize>0.
201 void **pMemory = (void **)bidiMem;
203 if(*pMemory==NULL) {
205 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
226 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
227 *pMemory=memory;
    [all...]
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 354 Fragment* IRBuilder::CreateRegion(void* pMemory, size_t pLength)
359 llvm::StringRef region(reinterpret_cast<const char*>(pMemory), pLength);
  /external/chromium_org/components/wifi/
wifi_service_win.cc 83 _In_ PVOID pMemory);
    [all...]

Completed in 3250 milliseconds