Searched defs:totSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp385 size_t *totSize)
390 if (pos + size > *totSize) {
391 while (pos + size > *totSize) {
392 *totSize += ((*totSize + 7) / 8) * 4;
394 *param = (char *)realloc(*param, *totSize);
396 ALOGE("%s realloc error for size %zu", __func__, *totSize);
408 size_t *totSize)
414 pos = growParamSize(param, sizeof(short), curSize, totSize);
422 pos = growParamSize(param, sizeof(int), curSize, totSize);
382 growParamSize(char **param, size_t size, size_t *curSize, size_t *totSize) argument
405 readParamValue(cnode *node, char **param, size_t *curSize, size_t *totSize) argument
477 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int); local
[all...]

Completed in 429 milliseconds