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

  /external/svox/pico/lib/
picoctrl.c 500 void *raw_mem; member in struct:picoctrl_engine
597 this->raw_mem = picoos_allocate(mm, PICOCTRL_DEFAULT_ENGINE_SIZE);
598 if (NULL == this->raw_mem) {
604 engMM = picoos_newMemoryManager(this->raw_mem, PICOCTRL_DEFAULT_ENGINE_SIZE,
644 if(NULL != this->raw_mem) {
645 picoos_deallocate(mm,&(this->raw_mem));
673 if(NULL != (*this)->raw_mem) {
674 picoos_deallocate(mm,&((*this)->raw_mem));
picorsrc.c 68 picoos_uint8 * raw_mem; /* pointer to allocated memory. NULL if preallocated. */ member in struct:picorsrc_resource
106 this->raw_mem = NULL;
118 /* we have to explicitly free 'raw_mem' here because in testing
121 if ((*this)->raw_mem != NULL) {
122 picoos_deallocProtMem(mm, (void *) &(*this)->raw_mem);
601 res->raw_mem = picoos_allocProtMem(this->common->mm, maxlen);
603 status = (NULL == res->raw_mem) ? PICO_EXC_OUT_OF_MEM : PICO_OK;
606 rem = (picoos_uint32) res->raw_mem % PICOOS_ALIGN_SIZE;
608 res->start = res->raw_mem + (PICOOS_ALIGN_SIZE - rem);
610 res->start = res->raw_mem;
    [all...]
picoos.c 273 /** allocates 'alloc_size' bytes at start of raw memory block ('raw_mem',raw_mem_size)
279 void * picoos_raw_malloc(byte_ptr_t raw_mem,
284 if (raw_mem == NULL) {
298 *rest_mem = raw_mem + alloc_size;
299 return (void *) raw_mem;
    [all...]
picoos.h 145 void * picoos_raw_malloc(byte_ptr_t raw_mem,

Completed in 100 milliseconds