OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pMemory
(Results
1 - 4
of
4
) sorted by null
/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
...]
/external/icu4c/common/
ubidiimp.h
351
ubidi_getMemory(BidiMemoryForAllocation *
pMemory
, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded);
ubidi.c
191
* If *
pMemory
!=NULL, then assume *pSize>0.
199
void **
pMemory
= (void **)bidiMem;
201
if(*
pMemory
==NULL) {
203
if(mayAllocate && (*
pMemory
=uprv_malloc(sizeNeeded))!=NULL) {
224
if((memory=uprv_realloc(*
pMemory
, sizeNeeded))!=NULL) {
225
*
pMemory
=memory;
[
all
...]
Completed in 113 milliseconds