OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:raw_mem
(Results
1 - 2
of
2
) 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
...]
Completed in 61 milliseconds