Home | History | Annotate | Download | only in src

Lines Matching full:body_storage

191     os->body_storage=16*1024;
194 os->body_data=_ogg_malloc(os->body_storage*sizeof(*os->body_data));
240 if(os->body_storage<=os->body_fill+needed){
242 ret=_ogg_realloc(os->body_data,(os->body_storage+needed+1024)*
248 os->body_storage+=(needed+1024);